diff --git a/Gopkg.lock b/Gopkg.lock index 8fc2d96e2..0fed8b3b2 100644 --- a/Gopkg.lock +++ b/Gopkg.lock @@ -95,6 +95,12 @@ revision = "68b0248f880c5967d1ba7166486cb216af849b15" version = "v0.4.0" +[[projects]] + name = "github.com/fsnotify/fsnotify" + packages = ["."] + revision = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" + version = "v1.4.7" + [[projects]] name = "github.com/ghodss/yaml" packages = ["."] @@ -402,12 +408,6 @@ ] revision = "25101aadb97aa42907eee6a238d6d26a6cb3c756" -[[projects]] - name = "gopkg.in/fsnotify.v1" - packages = ["."] - revision = "c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9" - version = "v1.4.7" - [[projects]] name = "gopkg.in/inf.v0" packages = ["."] @@ -572,6 +572,6 @@ [solve-meta] analyzer-name = "dep" analyzer-version = 1 - inputs-digest = "9065e1f67bda37fcf8a1e870ad445c8a1eb23e2cc44d3a59f09ae7f7e1d69907" + inputs-digest = "0021bedac82f4bbbffa6714c0ac57436dede79a83c80d44d75db045fbba8fdb5" solver-name = "gps-cdcl" solver-version = 1 diff --git a/Gopkg.toml b/Gopkg.toml index 43ef1f248..fe1421931 100644 --- a/Gopkg.toml +++ b/Gopkg.toml @@ -36,10 +36,6 @@ branch = "master" name = "github.com/spf13/pflag" -[[constraint]] - name = "gopkg.in/fsnotify.v1" - version = "1.4.2" - [[constraint]] name = "k8s.io/api" version = "kubernetes-1.8.2" diff --git a/contrib/grafana-watcher/main.go b/contrib/grafana-watcher/main.go index a4a7171a2..a152af251 100644 --- a/contrib/grafana-watcher/main.go +++ b/contrib/grafana-watcher/main.go @@ -24,7 +24,7 @@ import ( "strings" "time" - fsnotify "gopkg.in/fsnotify.v1" + fsnotify "github.com/fsnotify/fsnotify" "github.com/coreos/prometheus-operator/contrib/grafana-watcher/grafana" "github.com/coreos/prometheus-operator/contrib/grafana-watcher/updater" diff --git a/contrib/prometheus-config-reloader/main.go b/contrib/prometheus-config-reloader/main.go index c28e3aa76..721d699a6 100644 --- a/contrib/prometheus-config-reloader/main.go +++ b/contrib/prometheus-config-reloader/main.go @@ -26,7 +26,7 @@ import ( "strings" "time" - fsnotify "gopkg.in/fsnotify.v1" + fsnotify "github.com/fsnotify/fsnotify" "github.com/cenkalti/backoff" "github.com/ericchiang/k8s" diff --git a/vendor/gopkg.in/fsnotify.v1/.editorconfig b/vendor/github.com/fsnotify/fsnotify/.editorconfig similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/.editorconfig rename to vendor/github.com/fsnotify/fsnotify/.editorconfig diff --git a/vendor/gopkg.in/fsnotify.v1/.github/ISSUE_TEMPLATE.md b/vendor/github.com/fsnotify/fsnotify/.github/ISSUE_TEMPLATE.md similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/.github/ISSUE_TEMPLATE.md rename to vendor/github.com/fsnotify/fsnotify/.github/ISSUE_TEMPLATE.md diff --git a/vendor/gopkg.in/fsnotify.v1/.github/PULL_REQUEST_TEMPLATE.md b/vendor/github.com/fsnotify/fsnotify/.github/PULL_REQUEST_TEMPLATE.md similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/.github/PULL_REQUEST_TEMPLATE.md rename to vendor/github.com/fsnotify/fsnotify/.github/PULL_REQUEST_TEMPLATE.md diff --git a/vendor/gopkg.in/fsnotify.v1/.gitignore b/vendor/github.com/fsnotify/fsnotify/.gitignore similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/.gitignore rename to vendor/github.com/fsnotify/fsnotify/.gitignore diff --git a/vendor/gopkg.in/fsnotify.v1/.travis.yml b/vendor/github.com/fsnotify/fsnotify/.travis.yml similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/.travis.yml rename to vendor/github.com/fsnotify/fsnotify/.travis.yml diff --git a/vendor/gopkg.in/fsnotify.v1/AUTHORS b/vendor/github.com/fsnotify/fsnotify/AUTHORS similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/AUTHORS rename to vendor/github.com/fsnotify/fsnotify/AUTHORS diff --git a/vendor/gopkg.in/fsnotify.v1/CHANGELOG.md b/vendor/github.com/fsnotify/fsnotify/CHANGELOG.md similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/CHANGELOG.md rename to vendor/github.com/fsnotify/fsnotify/CHANGELOG.md diff --git a/vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md b/vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/CONTRIBUTING.md rename to vendor/github.com/fsnotify/fsnotify/CONTRIBUTING.md diff --git a/vendor/gopkg.in/fsnotify.v1/LICENSE b/vendor/github.com/fsnotify/fsnotify/LICENSE similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/LICENSE rename to vendor/github.com/fsnotify/fsnotify/LICENSE diff --git a/vendor/gopkg.in/fsnotify.v1/README.md b/vendor/github.com/fsnotify/fsnotify/README.md similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/README.md rename to vendor/github.com/fsnotify/fsnotify/README.md diff --git a/vendor/gopkg.in/fsnotify.v1/example_test.go b/vendor/github.com/fsnotify/fsnotify/example_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/example_test.go rename to vendor/github.com/fsnotify/fsnotify/example_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/fen.go b/vendor/github.com/fsnotify/fsnotify/fen.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/fen.go rename to vendor/github.com/fsnotify/fsnotify/fen.go diff --git a/vendor/gopkg.in/fsnotify.v1/fsnotify.go b/vendor/github.com/fsnotify/fsnotify/fsnotify.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/fsnotify.go rename to vendor/github.com/fsnotify/fsnotify/fsnotify.go diff --git a/vendor/gopkg.in/fsnotify.v1/fsnotify_test.go b/vendor/github.com/fsnotify/fsnotify/fsnotify_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/fsnotify_test.go rename to vendor/github.com/fsnotify/fsnotify/fsnotify_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/inotify.go b/vendor/github.com/fsnotify/fsnotify/inotify.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/inotify.go rename to vendor/github.com/fsnotify/fsnotify/inotify.go diff --git a/vendor/gopkg.in/fsnotify.v1/inotify_poller.go b/vendor/github.com/fsnotify/fsnotify/inotify_poller.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/inotify_poller.go rename to vendor/github.com/fsnotify/fsnotify/inotify_poller.go diff --git a/vendor/gopkg.in/fsnotify.v1/inotify_poller_test.go b/vendor/github.com/fsnotify/fsnotify/inotify_poller_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/inotify_poller_test.go rename to vendor/github.com/fsnotify/fsnotify/inotify_poller_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/inotify_test.go b/vendor/github.com/fsnotify/fsnotify/inotify_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/inotify_test.go rename to vendor/github.com/fsnotify/fsnotify/inotify_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/integration_darwin_test.go b/vendor/github.com/fsnotify/fsnotify/integration_darwin_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/integration_darwin_test.go rename to vendor/github.com/fsnotify/fsnotify/integration_darwin_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/integration_test.go b/vendor/github.com/fsnotify/fsnotify/integration_test.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/integration_test.go rename to vendor/github.com/fsnotify/fsnotify/integration_test.go diff --git a/vendor/gopkg.in/fsnotify.v1/kqueue.go b/vendor/github.com/fsnotify/fsnotify/kqueue.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/kqueue.go rename to vendor/github.com/fsnotify/fsnotify/kqueue.go diff --git a/vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go b/vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/open_mode_bsd.go rename to vendor/github.com/fsnotify/fsnotify/open_mode_bsd.go diff --git a/vendor/gopkg.in/fsnotify.v1/open_mode_darwin.go b/vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/open_mode_darwin.go rename to vendor/github.com/fsnotify/fsnotify/open_mode_darwin.go diff --git a/vendor/gopkg.in/fsnotify.v1/windows.go b/vendor/github.com/fsnotify/fsnotify/windows.go similarity index 100% rename from vendor/gopkg.in/fsnotify.v1/windows.go rename to vendor/github.com/fsnotify/fsnotify/windows.go