Skip to content

Commit

Permalink
Bump knative.dev/serving from 0.38.0 to 0.39.0 (#542)
Browse files Browse the repository at this point in the history
* Bump knative.dev/serving from 0.38.0 to 0.39.0

Bumps [knative.dev/serving](https://github.com/knative/serving) from 0.38.0 to 0.39.0.
- [Release notes](https://github.com/knative/serving/releases)
- [Commits](knative/serving@v0.38.0...v0.39.0)

---
updated-dependencies:
- dependency-name: knative.dev/serving
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* ran update codegen

* updaeted servingversion to avoid domaing mapping errors on generated  code

* updated knative client lib

* updating kind and go version when testing + updating ko action in release and test pipelines

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gabriel Freites <gabohd@gmail.com>
  • Loading branch information
dependabot[bot] and gabo1208 committed Dec 12, 2023
1 parent 1c7b474 commit 536930e
Show file tree
Hide file tree
Showing 1,452 changed files with 58,928 additions and 35,433 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/kind-e2e.yaml
Expand Up @@ -22,13 +22,13 @@ jobs:
timeout-minutes: 30

steps:
- name: Set up Go 1.19.x
- name: Set up Go 1.21.x
uses: actions/setup-go@v3
with:
go-version: 1.19.x
go-version: 1.21.x

- name: Setup ko
uses: imjasonh/setup-ko@v0.6
uses: ko-build/setup-ko@v0.6

- name: Check out code onto GOPATH
uses: actions/checkout@v3
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Setup KinD Cluster with VMware sources.
working-directory: ./src/github.com/${{ github.repository }}
env:
KIND_VERSION: v0.16.0
KIND_VERSION: v0.19.0
run: |
set -x
Expand Down Expand Up @@ -110,20 +110,20 @@ jobs:
timeout-minutes: 10

steps:
- name: Set up Go 1.19.x
- name: Set up Go 1.21.x
uses: actions/setup-go@v3
with:
go-version: 1.19.x
go-version: 1.21.x

- name: Setup ko
uses: imjasonh/setup-ko@v0.6
uses: ko-build/setup-ko@v0.6

- name: Check out code
uses: actions/checkout@v3

- name: Setup KinD Cluster
env:
KIND_VERSION: v0.16.0
KIND_VERSION: v0.19.0
run: |
set -x
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Expand Up @@ -43,7 +43,7 @@ jobs:
# will install latest ko version and default login/configure
# KO_DOCKER_REPO to ghcr.io
- name: Setup ko for ghcr.io
uses: imjasonh/setup-ko@v0.6
uses: ko-build/setup-ko@v0.6

- name: Checkout
uses: actions/checkout@v3
Expand Down
108 changes: 53 additions & 55 deletions go.mod
Expand Up @@ -9,53 +9,53 @@ require (
github.com/davecgh/go-spew v1.1.1
github.com/elazarl/go-bindata-assetfs v1.0.0 // indirect
github.com/fatih/structs v1.1.0 // indirect
github.com/google/go-cmp v0.5.9
github.com/google/go-cmp v0.6.0
github.com/hashicorp/golang-lru v1.0.2
github.com/jpillora/backoff v1.0.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/kr/pty v1.1.8 // indirect
github.com/spf13/cobra v1.6.0
github.com/spf13/cobra v1.7.0
github.com/vmware/govmomi v0.24.1-0.20210127152625-854ba4efe87e
github.com/yudai/gotty v1.0.1
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552 // indirect
github.com/yudai/umutex v0.0.0-20150817080136-18216d265c6b // indirect
go.uber.org/zap v1.25.0
golang.org/x/term v0.13.0
k8s.io/api v0.26.5
k8s.io/apimachinery v0.26.5
k8s.io/client-go v0.26.5
k8s.io/code-generator v0.26.5
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280
knative.dev/eventing v0.38.1
knative.dev/hack v0.0.0-20230712131415-ddae80293c43
knative.dev/pkg v0.0.0-20230718152110-aef227e72ead
go.uber.org/zap v1.26.0
golang.org/x/term v0.15.0
k8s.io/api v0.27.6
k8s.io/apimachinery v0.27.6
k8s.io/client-go v0.27.6
k8s.io/code-generator v0.27.6
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f
knative.dev/eventing v0.39.1
knative.dev/hack v0.0.0-20231201014241-7030d5bf584d
knative.dev/pkg v0.0.0-20231211072236-4914c472e81a
)

require (
github.com/benbjohnson/clock v1.3.0
github.com/go-resty/resty/v2 v2.7.0
github.com/hashicorp/hcl v1.0.0
github.com/pkg/errors v0.9.1
github.com/stretchr/testify v1.8.1
golang.org/x/sync v0.3.0
github.com/stretchr/testify v1.8.4
golang.org/x/sync v0.5.0
gotest.tools/v3 v3.3.0
k8s.io/utils v0.0.0-20221108210102-8e77b1f39fe2
knative.dev/client v0.38.0
k8s.io/utils v0.0.0-20230209194617-a36077c30491
knative.dev/client v0.39.0
)

require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
github.com/google/gnostic v0.6.9 // indirect
github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
github.com/opencontainers/go-digest v1.0.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.5 // indirect
github.com/rogpeppe/go-internal v1.10.0 // indirect
github.com/pelletier/go-toml/v2 v2.0.9 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230803162519-f966b187b2e5 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20230807174057-1744710a1577 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect
)

require (
Expand All @@ -72,14 +72,14 @@ require (
github.com/cloudevents/sdk-go/sql/v2 v2.13.0 // indirect
github.com/creack/pty v1.1.11 // indirect
github.com/evanphx/json-patch v5.6.0+incompatible // indirect
github.com/evanphx/json-patch/v5 v5.6.0 // indirect
github.com/evanphx/json-patch/v5 v5.7.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/go-errors/errors v1.4.2 // indirect
github.com/go-kit/log v0.2.1 // indirect
github.com/go-logfmt/logfmt v0.5.1 // indirect
github.com/go-logr/logr v1.2.4 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/jsonreference v0.20.0 // indirect
github.com/go-openapi/jsonpointer v0.19.6 // indirect
github.com/go-openapi/jsonreference v0.20.1 // indirect
github.com/go-openapi/swag v0.22.3 // indirect
github.com/gobuffalo/flect v1.0.2 // indirect
github.com/gogo/protobuf v1.3.2 // indirect
Expand All @@ -89,77 +89,75 @@ require (
github.com/google/go-containerregistry v0.13.0 // indirect
github.com/google/gofuzz v1.2.0 // indirect
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/google/uuid v1.4.0 // indirect
github.com/gorilla/websocket v1.5.1 // indirect
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/imdario/mergo v0.3.13 // indirect
github.com/inconshreveable/mousetrap v1.0.1 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/json-iterator/go v1.1.12 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
github.com/magiconair/properties v1.8.6 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mailru/easyjson v0.7.7 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.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/openzipkin/zipkin-go v0.4.2 // indirect
github.com/pelletier/go-toml v1.9.5 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/prometheus/client_golang v1.16.0 // indirect
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.10.1 // indirect
github.com/prometheus/client_golang v1.17.0 // indirect
github.com/prometheus/client_model v0.4.1-0.20230718164431-9a2bf3000d16 // indirect
github.com/prometheus/common v0.45.0 // indirect
github.com/prometheus/procfs v0.11.1 // indirect
github.com/prometheus/statsd_exporter v0.22.8 // indirect
github.com/rickb777/date v1.20.0 // indirect
github.com/rickb777/plural v1.4.1 // indirect
github.com/robfig/cron/v3 v3.0.1 // indirect
github.com/spf13/afero v1.9.2 // indirect
github.com/spf13/cast v1.5.0 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/cast v1.5.1 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/spf13/viper v1.13.0 // indirect
github.com/subosito/gotenv v1.4.1 // indirect
github.com/spf13/viper v1.16.0 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/xlab/treeprint v1.1.0 // indirect
go.opencensus.io v0.24.0 // indirect
go.starlark.net v0.0.0-20220817180228-f738f5508c12 // indirect
go.uber.org/automaxprocs v1.5.3 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/mod v0.12.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/oauth2 v0.11.0 // indirect
golang.org/x/sys 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.12.0 // indirect
golang.org/x/mod v0.14.0 // indirect
golang.org/x/net v0.19.0 // indirect
golang.org/x/oauth2 v0.15.0 // indirect
golang.org/x/sys v0.15.0 // indirect
golang.org/x/text v0.14.0 // indirect
golang.org/x/time v0.5.0 // indirect
golang.org/x/tools v0.16.0 // indirect
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
google.golang.org/api v0.138.0 // indirect
google.golang.org/api v0.153.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
google.golang.org/grpc v1.57.1 // indirect
google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect
google.golang.org/grpc v1.59.0 // indirect
google.golang.org/protobuf v1.31.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
k8s.io/apiextensions-apiserver v0.26.5 // indirect
k8s.io/cli-runtime v0.25.2 // indirect
k8s.io/apiextensions-apiserver v0.27.6 // indirect
k8s.io/cli-runtime v0.26.5 // indirect
k8s.io/gengo v0.0.0-20221011193443-fad74ee6edd9 // indirect
k8s.io/klog/v2 v2.80.2-0.20221028030830-9ae4992afb54 // indirect
knative.dev/networking v0.0.0-20230718160410-75dcd54d9510 // indirect
knative.dev/serving v0.38.0 // indirect
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect
k8s.io/klog/v2 v2.90.1 // indirect
knative.dev/networking v0.0.0-20231017124814-2a7676e912b7 // indirect
knative.dev/serving v0.39.0 // indirect
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
sigs.k8s.io/kustomize/api v0.12.1 // indirect
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect
sigs.k8s.io/yaml v1.3.0 // indirect
sigs.k8s.io/yaml v1.4.0 // indirect
)

replace github.com/codegangsta/cli => github.com/urfave/cli v1.22.10

0 comments on commit 536930e

Please sign in to comment.