Skip to content

Commit d1c426e

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

File tree

8 files changed

+226
-343
lines changed

8 files changed

+226
-343
lines changed

ATTRIBUTION.md

Lines changed: 89 additions & 186 deletions
Large diffs are not rendered by default.

apis/v1alpha1/ack-generate-metadata.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
ack_generate_info:
2-
build_date: "2026-03-05T19:10:47Z"
3-
build_hash: 35caa24343c4aa5e1cbbaf6de4bec50e1bc863fb
4-
go_version: go1.26.0
5-
version: v0.57.0-15-g35caa24
2+
build_date: "2026-03-11T18:47:08Z"
3+
build_hash: 5ac6c79fbc941c426d8b70cba768820fc9296542
4+
go_version: go1.25.7
5+
version: v0.58.0
66
api_directory_checksum: fcb205ac280ed1b0f107a291e5ea43d93c0991e9
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6

config/controller/kustomization.yaml

Lines changed: 1 addition & 1 deletion
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/iam-controller
9-
newTag: 1.6.1
9+
newTag: 1.6.2

go.mod

Lines changed: 37 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,21 @@
11
module github.com/aws-controllers-k8s/iam-controller
22

3-
go 1.24.0
4-
5-
toolchain go1.24.1
3+
go 1.25.0
64

75
require (
8-
github.com/aws-controllers-k8s/runtime v0.57.0
6+
github.com/aws-controllers-k8s/runtime v0.58.0
97
github.com/aws/aws-sdk-go v1.49.0
108
github.com/aws/aws-sdk-go-v2 v1.34.0
119
github.com/aws/aws-sdk-go-v2/service/iam v1.38.8
1210
github.com/aws/smithy-go v1.22.2
13-
github.com/go-logr/logr v1.4.2
11+
github.com/go-logr/logr v1.4.3
1412
github.com/micahhausler/aws-iam-policy v0.4.4
1513
github.com/samber/lo v1.37.0
16-
github.com/spf13/pflag v1.0.5
17-
k8s.io/api v0.32.1
18-
k8s.io/apimachinery v0.32.1
19-
k8s.io/client-go v0.32.1
20-
sigs.k8s.io/controller-runtime v0.20.4
14+
github.com/spf13/pflag v1.0.9
15+
k8s.io/api v0.35.0
16+
k8s.io/apimachinery v0.35.0
17+
k8s.io/client-go v0.35.0
18+
sigs.k8s.io/controller-runtime v0.23.0
2119
)
2220

2321
require (
@@ -36,20 +34,17 @@ require (
3634
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
3735
github.com/cespare/xxhash/v2 v2.3.0 // indirect
3836
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
39-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
37+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
4038
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
41-
github.com/fsnotify/fsnotify v1.7.0 // indirect
42-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
39+
github.com/fsnotify/fsnotify v1.9.0 // indirect
40+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
4341
github.com/go-logr/zapr v1.3.0 // indirect
4442
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4543
github.com/go-openapi/jsonreference v0.20.2 // indirect
4644
github.com/go-openapi/swag v0.23.0 // indirect
47-
github.com/gogo/protobuf v1.3.2 // indirect
48-
github.com/golang/protobuf v1.5.4 // indirect
4945
github.com/google/btree v1.1.3 // indirect
50-
github.com/google/gnostic-models v0.6.8 // indirect
51-
github.com/google/go-cmp v0.6.0 // indirect
52-
github.com/google/gofuzz v1.2.0 // indirect
46+
github.com/google/gnostic-models v0.7.0 // indirect
47+
github.com/google/go-cmp v0.7.0 // indirect
5348
github.com/google/uuid v1.6.0 // indirect
5449
github.com/itchyny/gojq v0.12.6 // indirect
5550
github.com/itchyny/timefmt-go v0.1.3 // indirect
@@ -59,34 +54,38 @@ require (
5954
github.com/json-iterator/go v1.1.12 // indirect
6055
github.com/mailru/easyjson v0.7.7 // indirect
6156
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
62-
github.com/modern-go/reflect2 v1.0.2 // indirect
57+
github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee // indirect
6358
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
6459
github.com/pkg/errors v0.9.1 // indirect
65-
github.com/prometheus/client_golang v1.19.1 // indirect
66-
github.com/prometheus/client_model v0.6.1 // indirect
67-
github.com/prometheus/common v0.55.0 // indirect
68-
github.com/prometheus/procfs v0.15.1 // indirect
60+
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect
61+
github.com/prometheus/client_golang v1.23.2 // indirect
62+
github.com/prometheus/client_model v0.6.2 // indirect
63+
github.com/prometheus/common v0.66.1 // indirect
64+
github.com/prometheus/procfs v0.16.1 // indirect
6965
github.com/x448/float16 v0.8.4 // indirect
7066
go.uber.org/multierr v1.11.0 // indirect
7167
go.uber.org/zap v1.27.0 // indirect
68+
go.yaml.in/yaml/v2 v2.4.3 // indirect
69+
go.yaml.in/yaml/v3 v3.0.4 // indirect
7270
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
73-
golang.org/x/net v0.38.0 // indirect
74-
golang.org/x/oauth2 v0.27.0 // indirect
75-
golang.org/x/sync v0.12.0 // indirect
76-
golang.org/x/sys v0.31.0 // indirect
77-
golang.org/x/term v0.30.0 // indirect
78-
golang.org/x/text v0.23.0 // indirect
79-
golang.org/x/time v0.7.0 // indirect
71+
golang.org/x/net v0.47.0 // indirect
72+
golang.org/x/oauth2 v0.30.0 // indirect
73+
golang.org/x/sync v0.18.0 // indirect
74+
golang.org/x/sys v0.38.0 // indirect
75+
golang.org/x/term v0.37.0 // indirect
76+
golang.org/x/text v0.31.0 // indirect
77+
golang.org/x/time v0.9.0 // indirect
8078
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
81-
google.golang.org/protobuf v1.35.1 // indirect
82-
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
79+
google.golang.org/protobuf v1.36.8 // indirect
80+
gopkg.in/evanphx/json-patch.v4 v4.13.0 // indirect
8381
gopkg.in/inf.v0 v0.9.1 // indirect
8482
gopkg.in/yaml.v3 v3.0.1 // indirect
85-
k8s.io/apiextensions-apiserver v0.32.1 // indirect
83+
k8s.io/apiextensions-apiserver v0.35.0 // indirect
8684
k8s.io/klog/v2 v2.130.1 // indirect
87-
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
88-
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
89-
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
90-
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
91-
sigs.k8s.io/yaml v1.4.0 // indirect
85+
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 // indirect
86+
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 // indirect
87+
sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730 // indirect
88+
sigs.k8s.io/randfill v1.0.0 // indirect
89+
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 // indirect
90+
sigs.k8s.io/yaml v1.6.0 // indirect
9291
)

0 commit comments

Comments
 (0)