Skip to content

Commit b6bb02b

Browse files
Merge pull request #148 from nats-io/k8s-0.28
Bumping k8s module versions
2 parents c8843b4 + f214b64 commit b6bb02b

File tree

6 files changed

+68
-389
lines changed

6 files changed

+68
-389
lines changed

.github/workflows/release.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ jobs:
99
steps:
1010
- name: Checkout Source
1111
uses: actions/checkout@v4
12+
with:
13+
fetch-depth: 0
1214

1315
- name: Setup Go
1416
uses: actions/setup-go@v4

.github/workflows/test.yaml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
name: Test
2-
on: [push, pull_request]
2+
on:
3+
push:
4+
paths-ignore:
5+
- '**.md'
6+
pull_request:
7+
paths-ignore:
8+
- '**.md'
39

410
jobs:
5-
build:
11+
test:
612
name: Test
713
runs-on: ubuntu-latest
814
steps:

Makefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ default:
2929

3030
pkg/jetstream/generated pkg/jetstream/apis/jetstream/v1beta2/zz_generated.deepcopy.go: fetch-modules $(jetstreamGenIn) pkg/k8scodegen/file-header.txt
3131
rm -rf pkg/jetstream/generated
32-
D="$(codeGeneratorDir)"; : "$${D:=`go list -m -f '{{.Dir}}' k8s.io/code-generator`}"; GOFLAGS='' bash "$$D/generate-groups.sh" all \
32+
# Temporary chmod fix until we migrate to kube_codegen.sh
33+
D="$(codeGeneratorDir)"; : "$${D:=`go list -m -f '{{.Dir}}' k8s.io/code-generator`}"; \
34+
chmod u+x "$$D/generate-internal-groups.sh"; \
35+
GOFLAGS='' bash "$$D/generate-groups.sh" all \
3336
github.com/nats-io/nack/pkg/jetstream/generated \
3437
github.com/nats-io/nack/pkg/jetstream/apis \
3538
"jetstream:v1beta2" \

go.mod

+16-16
Original file line numberDiff line numberDiff line change
@@ -8,30 +8,30 @@ require (
88
github.com/nats-io/nats.go v1.30.0
99
github.com/sirupsen/logrus v1.9.3
1010
github.com/stretchr/testify v1.8.4
11-
k8s.io/api v0.27.3
12-
k8s.io/apimachinery v0.27.3
13-
k8s.io/client-go v0.27.3
14-
k8s.io/code-generator v0.27.3
11+
k8s.io/api v0.28.2
12+
k8s.io/apimachinery v0.28.2
13+
k8s.io/client-go v0.28.2
14+
k8s.io/code-generator v0.28.2
1515
k8s.io/klog/v2 v2.100.1
16-
sigs.k8s.io/structured-merge-diff/v4 v4.2.3
16+
sigs.k8s.io/structured-merge-diff/v4 v4.3.0
1717
)
1818

1919
require (
20-
github.com/antonmedv/expr v1.15.3 // indirect
20+
github.com/antonmedv/expr v1.15.2 // indirect
2121
github.com/davecgh/go-spew v1.1.1 // indirect
2222
github.com/dustin/go-humanize v1.0.1 // indirect
2323
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
2424
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
25-
github.com/go-logr/logr v1.2.3 // indirect
25+
github.com/go-logr/logr v1.2.4 // indirect
2626
github.com/go-openapi/jsonpointer v0.19.6 // indirect
27-
github.com/go-openapi/jsonreference v0.20.1 // indirect
27+
github.com/go-openapi/jsonreference v0.20.2 // indirect
2828
github.com/go-openapi/swag v0.22.3 // indirect
2929
github.com/gogo/protobuf v1.3.2 // indirect
3030
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3131
github.com/golang/protobuf v1.5.3 // indirect
32-
github.com/google/gnostic v0.5.7-v3refs // indirect
32+
github.com/google/gnostic-models v0.6.8 // indirect
3333
github.com/google/go-cmp v0.5.9 // indirect
34-
github.com/google/gofuzz v1.1.0 // indirect
34+
github.com/google/gofuzz v1.2.0 // indirect
3535
github.com/google/uuid v1.3.0 // indirect
3636
github.com/imdario/mergo v0.3.6 // indirect
3737
github.com/josharian/intern v1.0.0 // indirect
@@ -47,22 +47,22 @@ require (
4747
github.com/pmezard/go-difflib v1.0.0 // indirect
4848
github.com/spf13/pflag v1.0.5 // indirect
4949
golang.org/x/crypto v0.13.0 // indirect
50-
golang.org/x/mod v0.9.0 // indirect
50+
golang.org/x/mod v0.10.0 // indirect
5151
golang.org/x/net v0.15.0 // indirect
52-
golang.org/x/oauth2 v0.0.0-20220223155221-ee480838109b // indirect
52+
golang.org/x/oauth2 v0.8.0 // indirect
5353
golang.org/x/sys v0.12.0 // indirect
5454
golang.org/x/term v0.12.0 // indirect
5555
golang.org/x/text v0.13.0 // indirect
5656
golang.org/x/time v0.3.0 // indirect
57-
golang.org/x/tools v0.7.0 // indirect
57+
golang.org/x/tools v0.8.0 // indirect
5858
google.golang.org/appengine v1.6.7 // indirect
59-
google.golang.org/protobuf v1.28.1 // indirect
59+
google.golang.org/protobuf v1.30.0 // indirect
6060
gopkg.in/inf.v0 v0.9.1 // indirect
6161
gopkg.in/yaml.v2 v2.4.0 // indirect
6262
gopkg.in/yaml.v3 v3.0.1 // indirect
6363
k8s.io/gengo v0.0.0-20220902162205-c0856e24416d // indirect
64-
k8s.io/kube-openapi v0.0.0-20230501164219-8b0f38b5fd1f // indirect
65-
k8s.io/utils v0.0.0-20230209194617-a36077c30491 // indirect
64+
k8s.io/kube-openapi v0.0.0-20230717233707-2695361300d9 // indirect
65+
k8s.io/utils v0.0.0-20230406110748-d93618cff8a2 // indirect
6666
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
6767
sigs.k8s.io/yaml v1.3.0 // indirect
6868
)

0 commit comments

Comments
 (0)