Skip to content

Commit abd09fd

Browse files
authored
Update to ACK runtime v0.39.0, code-generator v0.39.1 (#135)
### Update to ACK runtime `v0.39.0`, code-generator `v0.39.1` ---------- * ACK code-generator `v0.39.1` [release notes](https://github.com/aws-controllers-k8s/code-generator/releases/tag/v0.39.1) * ACK runtime `v0.39.0` [release notes](https://github.com/aws-controllers-k8s/runtime/releases/tag/v0.39.0) ---------- NOTE: This PR increments the release version of service controller from `v1.5.0` to `v1.5.1` Once this PR is merged, release `v1.5.1` will be automatically created for `eks-controller` **Please close this PR, if you do not want the new patch release for `eks-controller`** ---------- #### stdout for `make build-controller`: ``` building ack-generate ... ok. ==== building eks-controller ==== Copying common custom resource definitions into eks Building Kubernetes API objects for eks Generating deepcopy code for eks Generating custom resource definitions for eks Building service controller for eks Generating RBAC manifests for eks Running gofmt against generated code for eks Updating additional GitHub repository maintenance files ==== building eks-controller release artifacts ==== Building release artifacts for eks-v1.5.1 Generating common custom resource definitions Generating custom resource definitions for eks Generating RBAC manifests for eks ``` ---------- By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
1 parent da5d629 commit abd09fd

File tree

7 files changed

+115
-110
lines changed

7 files changed

+115
-110
lines changed

apis/v1alpha1/ack-generate-metadata.yaml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
ack_generate_info:
2-
build_date: "2024-10-09T22:32:38Z"
3-
build_hash: 31855c8cffced7abedae7ff7cd006ffea255d2d1
4-
go_version: go1.22.4
5-
version: v0.38.1-3-g31855c8
6-
api_directory_checksum: 4cfe0b6ec81b65719c1f165983b84116135f5e40
2+
build_date: "2024-10-10T03:55:41Z"
3+
build_hash: 36c2d234498c2bc4f60773ab8df632af4067f43b
4+
go_version: go1.23.2
5+
version: v0.39.1
6+
api_directory_checksum: d736919240d3843865e860f7cb685cec30921bd4
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.55.5
99
generator_config_info:

config/controller/kustomization.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ kind: Kustomization
66
images:
77
- name: controller
88
newName: public.ecr.aws/aws-controllers-k8s/eks-controller
9-
newTag: 1.5.0
9+
newTag: 1.5.1

go.mod

+29-29
Original file line numberDiff line numberDiff line change
@@ -8,36 +8,37 @@ require (
88
github.com/aws-controllers-k8s/ec2-controller v1.1.0
99
github.com/aws-controllers-k8s/iam-controller v1.3.1
1010
github.com/aws-controllers-k8s/kms-controller v1.0.9
11-
github.com/aws-controllers-k8s/runtime v0.38.0
11+
github.com/aws-controllers-k8s/runtime v0.39.0
12+
github.com/go-logr/logr v1.4.2
1213
github.com/aws/aws-sdk-go v1.55.5
13-
github.com/go-logr/logr v1.4.1
1414
github.com/spf13/pflag v1.0.5
15-
github.com/stretchr/testify v1.8.4
16-
k8s.io/api v0.30.1
17-
k8s.io/apimachinery v0.30.1
18-
k8s.io/client-go v0.30.1
19-
sigs.k8s.io/controller-runtime v0.18.4
15+
github.com/stretchr/testify v1.9.0
16+
k8s.io/api v0.31.0
17+
k8s.io/apimachinery v0.31.0
18+
k8s.io/client-go v0.31.0
19+
sigs.k8s.io/controller-runtime v0.19.0
2020
)
2121

2222
require (
2323
github.com/beorn7/perks v1.0.1 // indirect
24-
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
25-
github.com/cespare/xxhash/v2 v2.2.0 // indirect
26-
github.com/davecgh/go-spew v1.1.1 // indirect
24+
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
25+
github.com/cespare/xxhash/v2 v2.3.0 // indirect
26+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
2727
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
2828
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
2929
github.com/fsnotify/fsnotify v1.7.0 // indirect
30+
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
3031
github.com/go-logr/zapr v1.3.0 // indirect
3132
github.com/go-openapi/jsonpointer v0.19.6 // indirect
3233
github.com/go-openapi/jsonreference v0.20.2 // indirect
33-
github.com/go-openapi/swag v0.22.3 // indirect
34+
github.com/go-openapi/swag v0.22.4 // indirect
3435
github.com/gogo/protobuf v1.3.2 // indirect
3536
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
3637
github.com/golang/protobuf v1.5.4 // indirect
3738
github.com/google/gnostic-models v0.6.8 // indirect
3839
github.com/google/go-cmp v0.6.0 // indirect
3940
github.com/google/gofuzz v1.2.0 // indirect
40-
github.com/google/uuid v1.3.0 // indirect
41+
github.com/google/uuid v1.6.0 // indirect
4142
github.com/imdario/mergo v0.3.12 // indirect
4243
github.com/itchyny/gojq v0.12.6 // indirect
4344
github.com/itchyny/timefmt-go v0.1.3 // indirect
@@ -46,36 +47,35 @@ require (
4647
github.com/josharian/intern v1.0.0 // indirect
4748
github.com/json-iterator/go v1.1.12 // indirect
4849
github.com/mailru/easyjson v0.7.7 // indirect
49-
github.com/matttproud/golang_protobuf_extensions/v2 v2.0.0 // indirect
5050
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
5151
github.com/modern-go/reflect2 v1.0.2 // indirect
5252
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
5353
github.com/pkg/errors v0.9.1 // indirect
54-
github.com/pmezard/go-difflib v1.0.0 // indirect
55-
github.com/prometheus/client_golang v1.18.0 // indirect
56-
github.com/prometheus/client_model v0.5.0 // indirect
57-
github.com/prometheus/common v0.45.0 // indirect
58-
github.com/prometheus/procfs v0.12.0 // indirect
54+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
55+
github.com/prometheus/client_golang v1.19.1 // indirect
56+
github.com/prometheus/client_model v0.6.1 // indirect
57+
github.com/prometheus/common v0.55.0 // indirect
58+
github.com/prometheus/procfs v0.15.1 // indirect
5959
github.com/samber/lo v1.37.0 // indirect
60+
github.com/x448/float16 v0.8.4 // indirect
6061
go.uber.org/multierr v1.11.0 // indirect
6162
go.uber.org/zap v1.26.0 // indirect
62-
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
63-
golang.org/x/net v0.23.0 // indirect
64-
golang.org/x/oauth2 v0.12.0 // indirect
65-
golang.org/x/sys v0.18.0 // indirect
66-
golang.org/x/term v0.18.0 // indirect
67-
golang.org/x/text v0.14.0 // indirect
63+
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
64+
golang.org/x/net v0.26.0 // indirect
65+
golang.org/x/oauth2 v0.21.0 // indirect
66+
golang.org/x/sys v0.21.0 // indirect
67+
golang.org/x/term v0.21.0 // indirect
68+
golang.org/x/text v0.16.0 // indirect
6869
golang.org/x/time v0.3.0 // indirect
6970
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
70-
google.golang.org/appengine v1.6.7 // indirect
71-
google.golang.org/protobuf v1.33.0 // indirect
71+
google.golang.org/protobuf v1.34.2 // indirect
7272
gopkg.in/inf.v0 v0.9.1 // indirect
7373
gopkg.in/yaml.v2 v2.4.0 // indirect
7474
gopkg.in/yaml.v3 v3.0.1 // indirect
75-
k8s.io/apiextensions-apiserver v0.30.1 // indirect
76-
k8s.io/klog/v2 v2.120.1 // indirect
75+
k8s.io/apiextensions-apiserver v0.31.0 // indirect
76+
k8s.io/klog/v2 v2.130.1 // indirect
7777
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
78-
k8s.io/utils v0.0.0-20230726121419-3b25d923346b // indirect
78+
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
7979
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
8080
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
8181
sigs.k8s.io/yaml v1.4.0 // indirect

0 commit comments

Comments
 (0)