Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

The knative/pkg import path changed to "knative.dev/pkg" #59

Merged
merged 1 commit into from
Aug 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
155 changes: 85 additions & 70 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 18 additions & 17 deletions Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ required = [
"k8s.io/code-generator/cmd/client-gen",
"k8s.io/code-generator/cmd/lister-gen",
"k8s.io/code-generator/cmd/informer-gen",
"github.com/knative/pkg/codegen/cmd/injection-gen",
"knative.dev/pkg/codegen/cmd/injection-gen",
"github.com/tektoncd/plumbing/scripts",
"github.com/knative/test-infra/tools/dep-collector",
]

[[constraint]]
name = "github.com/tektoncd/pipeline"
# HEAD as of 2019-07-15
revision = "0ee3b1491aa5b38d48b4547eeb4c87d11852b3a3"
# Pipeline trun to knative.dev
revision = "42bc3fbd5fc3ed35bfad1f371ef585da92b5fdc6"

[[override]]
name = "k8s.io/klog"
Expand Down Expand Up @@ -47,13 +47,12 @@ required = [

[[override]]
name = "github.com/golang/protobuf"
# Lock the version of protobuf to keep things building.
revision = "aa810b61a9c79d51363740d207bb46cf8e620ed5"
version = "1.3.2"

[[constraint]]
name = "github.com/knative/caching"
# HEAD as of 2019-03-21
revision = "3fc06fd3c9880a9ebb5c401f4b20cf6666cc7bc0"
name = "knative.dev/caching"
# HEAD as of 2019-07-23
revision = "2032732871ff807958e045858b462d372eec9587"

[[constraint]]
name = "github.com/tektoncd/plumbing"
Expand All @@ -66,19 +65,21 @@ required = [
revision = "69af8af1d3fec861ada88efc72409b3467b0588d"

[[override]]
name = "github.com/knative/pkg"
# HEAD as of 2019-06-14 💖
revision = "68737b1b4e03d9a888e89ee2a44714a56eefd539"
name = "knative.dev/pkg"
# HEAD as of 2019-07-23 💖
revision = "e4bc08cc8deda3eac40a8d53984d09c9d0e1ad48"

[[override]]
name = "go.uber.org/zap"
revision = "67bc79d13d155c02fd008f721863ff8cc5f30659"

[[override]]
name = "contrib.go.opencensus.io/exporter/prometheus"
version = "0.1.0"

[[override]]
name = "contrib.go.opencensus.io/exporter/stackdriver"
# HEAD as of 2019-02-11
# Needed because this includes a fix to support Stackdriver built-in metrics
revision = "c06c82c832edca4eaf7b0241bd655560a1be0346"
version = "0.12.2"

[[override]]
name = "google.golang.org/genproto"
Expand All @@ -88,7 +89,7 @@ required = [
[[override]]
name = "github.com/census-instrumentation/opencensus-proto"
# Lock the version of proto package to v2 to keep things building.
version = "v0.1.0"
version = "0.2.0"

[prune]
go-tests = true
Expand All @@ -101,7 +102,7 @@ required = [
non-go = false

[[prune.project]]
name = "github.com/knative/caching"
name = "knative.dev/caching"
unused-packages = false
non-go = false

Expand All @@ -110,6 +111,6 @@ required = [
non-go = false

[[prune.project]]
name = "github.com/knative/pkg"
name = "knative.dev/pkg"
unused-packages = false
non-go = false
2 changes: 1 addition & 1 deletion cmd/controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ limitations under the License.
package main

import (
"github.com/knative/pkg/injection/sharedmain"
"knative.dev/pkg/injection/sharedmain"

"github.com/tektoncd/triggers/pkg/reconciler/v1alpha1/eventlistener"
)
Expand Down
Loading