-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump k8s to 1.28 * bump go-utils * Bump go-utils to official release * Update changelog
- Loading branch information
1 parent
f5848bf
commit 1707727
Showing
5 changed files
with
337 additions
and
1,326 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ on: | |
pull_request: | ||
|
||
env: | ||
KUBE_VERSION: v1.27.3 | ||
KUBE_VERSION: v1.28.0 | ||
|
||
jobs: | ||
test: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
changelog: | ||
- type: BREAKING_CHANGE | ||
description: > | ||
Bump dependencies to support Kubernetes 1.28 | ||
issueLink: https://github.com/solo-io/gloo/issues/8515 | ||
resolvesIssue: false | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: k8s.io | ||
dependencyRepo: api | ||
dependencyTag: v0.28.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: k8s.io | ||
dependencyRepo: apiextensions-apiserver | ||
dependencyTag: v0.28.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: k8s.io | ||
dependencyRepo: apimachinery | ||
dependencyTag: v0.28.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: k8s.io | ||
dependencyRepo: cli-runtime | ||
dependencyTag: v0.28.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: k8s.io | ||
dependencyRepo: client-go | ||
dependencyTag: v0.28.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: sigs.k8s.io | ||
dependencyRepo: controller-runtime | ||
dependencyTag: v0.16.3 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: onsi | ||
dependencyRepo: ginkgo/v2 | ||
dependencyTag: v2.11.0 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: onsi | ||
dependencyRepo: gomega | ||
dependencyTag: v1.27.10 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: go.uber.org | ||
dependencyRepo: zap | ||
dependencyTag: v1.25.0 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: helm.sh | ||
dependencyRepo: helm | ||
dependencyTag: v3.13.2 | ||
- type: DEPENDENCY_BUMP | ||
dependencyOwner: solo-io | ||
dependencyRepo: go-utils | ||
dependencyTag: v0.24.8 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ go 1.20 | |
|
||
require ( | ||
github.com/avast/retry-go v2.2.0+incompatible | ||
github.com/evanphx/json-patch v4.12.0+incompatible | ||
github.com/evanphx/json-patch v5.6.0+incompatible | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/golang/mock v1.6.0 | ||
|
@@ -13,64 +13,64 @@ require ( | |
github.com/google/uuid v1.3.0 | ||
github.com/goph/emperror v0.17.1 | ||
github.com/hashicorp/consul/api v1.1.0 | ||
github.com/onsi/gomega v1.27.7 | ||
github.com/onsi/gomega v1.27.10 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rotisserie/eris v0.1.1 | ||
github.com/solo-io/go-utils v0.24.6 | ||
github.com/solo-io/go-utils v0.24.8 | ||
github.com/spf13/afero v1.6.0 | ||
go.uber.org/zap v1.24.0 | ||
golang.org/x/sync v0.2.0 | ||
go.uber.org/zap v1.25.0 | ||
golang.org/x/sync v0.3.0 | ||
google.golang.org/protobuf v1.30.0 | ||
helm.sh/helm/v3 v3.9.0 | ||
k8s.io/api v0.27.3 | ||
k8s.io/apiextensions-apiserver v0.27.3 | ||
k8s.io/apimachinery v0.27.3 | ||
k8s.io/cli-runtime v0.27.3 | ||
k8s.io/client-go v0.27.3 | ||
sigs.k8s.io/controller-runtime v0.15.0 | ||
helm.sh/helm/v3 v3.13.2 | ||
k8s.io/api v0.28.3 | ||
k8s.io/apiextensions-apiserver v0.28.3 | ||
k8s.io/apimachinery v0.28.3 | ||
k8s.io/cli-runtime v0.28.3 | ||
k8s.io/client-go v0.28.3 | ||
sigs.k8s.io/controller-runtime v0.16.3 | ||
sigs.k8s.io/yaml v1.3.0 | ||
) | ||
|
||
require ( | ||
github.com/AdaLogics/go-fuzz-headers v0.0.0-20230811130428-ced1acdcaa24 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/BurntSushi/toml v1.0.0 // indirect | ||
github.com/BurntSushi/toml v1.3.2 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.2 // indirect | ||
github.com/Masterminds/squirrel v1.5.2 // indirect | ||
github.com/Microsoft/go-winio v0.5.1 // indirect | ||
github.com/Microsoft/hcsshim v0.9.2 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/Masterminds/sprig/v3 v3.2.3 // indirect | ||
github.com/Masterminds/squirrel v1.5.4 // indirect | ||
github.com/Microsoft/hcsshim v0.11.0 // indirect | ||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect | ||
github.com/asaskevich/govalidator v0.0.0-20200428143746-21a406dcc535 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/chai2010/gettext-go v0.0.0-20160711120539-c6fed771bfd5 // indirect | ||
github.com/containerd/containerd v1.6.3 // indirect | ||
github.com/containerd/continuity v0.2.2 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.3 // indirect | ||
github.com/chai2010/gettext-go v1.0.2 // indirect | ||
github.com/containerd/containerd v1.7.6 // indirect | ||
github.com/cyphar/filepath-securejoin v0.2.4 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/cli v20.10.11+incompatible // indirect | ||
github.com/docker/distribution v2.8.1+incompatible // indirect | ||
github.com/docker/docker v20.10.14+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.6.4 // indirect | ||
github.com/docker/cli v24.0.6+incompatible // indirect | ||
github.com/docker/distribution v2.8.2+incompatible // indirect | ||
github.com/docker/docker v24.0.7+incompatible // indirect | ||
github.com/docker/docker-credential-helpers v0.7.0 // indirect | ||
github.com/docker/go-connections v0.4.0 // indirect | ||
github.com/docker/go-metrics v0.0.1 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.9.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.11.0 // indirect | ||
github.com/evanphx/json-patch/v5 v5.6.0 // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fgrosse/zaptest v1.1.0 // indirect | ||
github.com/go-errors/errors v1.4.2 // indirect | ||
github.com/go-gorp/gorp/v3 v3.0.2 // indirect | ||
github.com/go-gorp/gorp/v3 v3.1.0 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.1 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect | ||
github.com/gobwas/glob v0.2.3 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/gnostic v0.5.7-v3refs // indirect | ||
github.com/google/gnostic-models v0.6.8 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/go-querystring v1.0.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
|
@@ -79,98 +79,100 @@ require ( | |
github.com/gorilla/mux v1.8.0 // indirect | ||
github.com/gosuri/uitable v0.0.4 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/serf v0.8.2 // indirect | ||
github.com/huandu/xstrings v1.3.2 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.13 // indirect | ||
github.com/imroc/req v0.3.0 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.1 // indirect | ||
github.com/jmoiron/sqlx v1.3.4 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmoiron/sqlx v1.3.5 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/k0kubun/pp v2.3.0+incompatible // indirect | ||
github.com/klauspost/compress v1.13.6 // indirect | ||
github.com/klauspost/compress v1.16.0 // indirect | ||
github.com/lann/builder v0.0.0-20180802200727-47ae307949d0 // indirect | ||
github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0 // indirect | ||
github.com/lib/pq v1.10.4 // indirect | ||
github.com/lib/pq v1.10.9 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-isatty v0.0.14 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/mattn/go-runewidth v0.0.9 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.4.1 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/moby/locker v1.0.1 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/term v0.0.0-20221205130635-1aeaba878587 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/nxadm/tail v1.4.11 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.3-0.20211202183452-c5a74bcca799 // indirect | ||
github.com/opencontainers/runc v1.1.1 // indirect | ||
github.com/pelletier/go-toml v1.9.3 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc5 // indirect | ||
github.com/pelletier/go-toml v1.9.5 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/prometheus/client_golang v1.15.1 // indirect | ||
github.com/prometheus/client_golang v1.16.0 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.42.0 // indirect | ||
github.com/prometheus/procfs v0.9.0 // indirect | ||
github.com/rubenv/sql-migrate v1.1.1 // indirect | ||
github.com/russross/blackfriday v1.5.2 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
github.com/spf13/cast v1.4.1 // indirect | ||
github.com/spf13/cobra v1.6.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/rubenv/sql-migrate v1.5.2 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/spf13/cast v1.5.0 // indirect | ||
github.com/spf13/cobra v1.7.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect | ||
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
github.com/xlab/treeprint v1.1.0 // indirect | ||
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
golang.org/x/crypto v0.1.0 // indirect | ||
golang.org/x/net v0.10.0 // indirect | ||
golang.org/x/oauth2 v0.5.0 // indirect | ||
golang.org/x/sys v0.8.0 // indirect | ||
golang.org/x/term v0.8.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
github.com/xlab/treeprint v1.2.0 // indirect | ||
go.opentelemetry.io/otel v1.14.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.14.0 // indirect | ||
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/crypto v0.14.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/oauth2 v0.8.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/term v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.9.1 // indirect | ||
golang.org/x/tools v0.9.3 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20221201164419-0e50fba7f41c // indirect | ||
google.golang.org/grpc v1.51.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect | ||
google.golang.org/grpc v1.56.3 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/apiserver v0.27.3 // indirect | ||
k8s.io/component-base v0.27.3 // indirect | ||
k8s.io/klog/v2 v2.90.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect | ||
k8s.io/kubectl v0.24.0 // indirect | ||
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect | ||
oras.land/oras-go v1.1.0 // indirect | ||
k8s.io/apiserver v0.28.3 // indirect | ||
k8s.io/component-base v0.28.3 // indirect | ||
k8s.io/klog/v2 v2.100.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect | ||
k8s.io/kubectl v0.28.2 // indirect | ||
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect | ||
oras.land/oras-go v1.2.4 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/kustomize/api v0.13.2 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.14.1 // indirect | ||
sigs.k8s.io/kustomize/api v0.13.5-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.14.3-0.20230601165947-6ce0bf390ce3 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
) | ||
|
||
require ( | ||
github.com/MakeNowJust/heredoc v0.0.0-20171113091838-e9091a26100e // indirect | ||
github.com/MakeNowJust/heredoc v1.0.0 // indirect | ||
github.com/bugsnag/bugsnag-go v1.5.0 // indirect | ||
github.com/docker/libtrust v0.0.0-20160708172513-aabc10ec26b7 // indirect | ||
github.com/onsi/ginkgo/v2 v2.9.5 | ||
github.com/onsi/ginkgo/v2 v2.11.0 | ||
github.com/yvasiyarov/go-metrics v0.0.0-20150112132944-c25f46c4b940 // indirect | ||
github.com/yvasiyarov/gorelic v0.0.6 // indirect | ||
) | ||
|
@@ -183,5 +185,5 @@ replace ( | |
// using the pseudo version of github.com/form3tech-oss/[email protected] instead of the version directly, | ||
// to avoid error about it being used for two different module paths | ||
github.com/dgrijalva/jwt-go => github.com/form3tech-oss/jwt-go v0.0.0-20210511163231-5b2d2b5f6c34 | ||
github.com/docker/docker => github.com/moby/moby v0.7.3-0.20190826074503-38ab9da00309 | ||
github.com/docker/docker => github.com/moby/moby v24.0.7+incompatible | ||
) |
Oops, something went wrong.