Skip to content

Commit 6515796

Browse files
committed
code-gen 0.44.0 update
1 parent 9d79bc4 commit 6515796

File tree

15 files changed

+167
-184
lines changed

15 files changed

+167
-184
lines changed
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
ack_generate_info:
2-
build_date: "2025-03-14T20:31:38Z"
3-
build_hash: 0ab258c51775fd52af32e649da00d57373b20869
4-
go_version: go1.24.0
5-
version: v0.43.2-6-g0ab258c
2+
build_date: "2025-04-08T20:12:02Z"
3+
build_hash: 0909e7f0adb8ffe4120a8c20d5d58b991f2539e9
4+
go_version: go1.24.1
5+
version: v0.44.0-3-g0909e7f
66
api_directory_checksum: ada51eb492c387f770228d8880ba5402e14417d2
77
api_version: v1alpha1
88
aws_sdk_go_version: v1.32.6
99
generator_config_info:
10-
file_checksum: 9257585e2b84c5cd7801c36cec539240d1f98bd0
10+
file_checksum: af3c521029374b2be321d5da57871d5a182f4d0a
1111
original_file_name: generator.yaml
1212
last_modification:
1313
reason: API generation

apis/v1alpha1/generator.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ resources:
207207
is_secret: true
208208
compare:
209209
is_ignored: true
210-
set:
211-
- ignore: all
210+
212211
Events:
213212
is_read_only: true
214213
from:
@@ -223,10 +222,6 @@ resources:
223222
code: "rm.setAnnotationsFields(desired, ko)"
224223
sdk_update_pre_build_request:
225224
template_path: hooks/user/sdk_update_pre_build_request.go.tpl
226-
sdk_update_post_build_request:
227-
template_path: hooks/user/sdk_update_post_build_request.go.tpl
228-
sdk_create_post_build_request:
229-
template_path: hooks/user/sdk_create_post_build_request.go.tpl
230225
renames:
231226
operations:
232227
CreateUser:

cmd/controller/main.go

Lines changed: 11 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

generator.yaml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,7 @@ resources:
207207
is_secret: true
208208
compare:
209209
is_ignored: true
210-
set:
211-
- ignore: all
210+
212211
Events:
213212
is_read_only: true
214213
from:
@@ -223,10 +222,6 @@ resources:
223222
code: "rm.setAnnotationsFields(desired, ko)"
224223
sdk_update_pre_build_request:
225224
template_path: hooks/user/sdk_update_pre_build_request.go.tpl
226-
sdk_update_post_build_request:
227-
template_path: hooks/user/sdk_update_post_build_request.go.tpl
228-
sdk_create_post_build_request:
229-
template_path: hooks/user/sdk_create_post_build_request.go.tpl
230225
renames:
231226
operations:
232227
CreateUser:

go.mod

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
module github.com/aws-controllers-k8s/memorydb-controller
22

3-
go 1.22.0
3+
go 1.23.0
44

5-
toolchain go1.22.5
5+
toolchain go1.24.1
66

77
require (
88
github.com/aws-controllers-k8s/ec2-controller v1.0.0
99
github.com/aws-controllers-k8s/kms-controller v1.0.0
10-
github.com/aws-controllers-k8s/runtime v0.43.0
10+
github.com/aws-controllers-k8s/runtime v0.44.0
1111
github.com/aws-controllers-k8s/sns-controller v0.0.5
1212
github.com/aws/aws-sdk-go v1.49.0
1313
github.com/aws/aws-sdk-go-v2 v1.36.2
@@ -17,10 +17,10 @@ require (
1717
github.com/pkg/errors v0.9.1
1818
github.com/samber/lo v1.37.0
1919
github.com/spf13/pflag v1.0.5
20-
k8s.io/api v0.31.0
21-
k8s.io/apimachinery v0.31.0
22-
k8s.io/client-go v0.31.0
23-
sigs.k8s.io/controller-runtime v0.19.0
20+
k8s.io/api v0.32.1
21+
k8s.io/apimachinery v0.32.1
22+
k8s.io/client-go v0.32.1
23+
sigs.k8s.io/controller-runtime v0.20.4
2424
)
2525

2626
require (
@@ -40,21 +40,20 @@ require (
4040
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4141
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
4242
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
43-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
43+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
4444
github.com/fsnotify/fsnotify v1.7.0 // indirect
4545
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
4646
github.com/go-logr/zapr v1.3.0 // indirect
47-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
47+
github.com/go-openapi/jsonpointer v0.21.0 // indirect
4848
github.com/go-openapi/jsonreference v0.20.2 // indirect
49-
github.com/go-openapi/swag v0.22.4 // indirect
49+
github.com/go-openapi/swag v0.23.0 // indirect
5050
github.com/gogo/protobuf v1.3.2 // indirect
51-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
5251
github.com/golang/protobuf v1.5.4 // indirect
52+
github.com/google/btree v1.1.3 // indirect
5353
github.com/google/gnostic-models v0.6.8 // indirect
5454
github.com/google/go-cmp v0.6.0 // indirect
5555
github.com/google/gofuzz v1.2.0 // indirect
5656
github.com/google/uuid v1.6.0 // indirect
57-
github.com/imdario/mergo v0.3.12 // indirect
5857
github.com/itchyny/gojq v0.12.6 // indirect
5958
github.com/itchyny/timefmt-go v0.1.3 // indirect
6059
github.com/jaypipes/envutil v1.0.0 // indirect
@@ -70,24 +69,25 @@ require (
7069
github.com/prometheus/procfs v0.15.1 // indirect
7170
github.com/x448/float16 v0.8.4 // indirect
7271
go.uber.org/multierr v1.11.0 // indirect
73-
go.uber.org/zap v1.26.0 // indirect
74-
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
75-
golang.org/x/net v0.33.0 // indirect
76-
golang.org/x/oauth2 v0.21.0 // indirect
77-
golang.org/x/sys v0.28.0 // indirect
78-
golang.org/x/term v0.27.0 // indirect
79-
golang.org/x/text v0.21.0 // indirect
80-
golang.org/x/time v0.3.0 // indirect
72+
go.uber.org/zap v1.27.0 // indirect
73+
golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56 // indirect
74+
golang.org/x/net v0.37.0 // indirect
75+
golang.org/x/oauth2 v0.23.0 // indirect
76+
golang.org/x/sync v0.12.0 // indirect
77+
golang.org/x/sys v0.31.0 // indirect
78+
golang.org/x/term v0.30.0 // indirect
79+
golang.org/x/text v0.23.0 // indirect
80+
golang.org/x/time v0.7.0 // indirect
8181
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
82-
google.golang.org/protobuf v1.34.2 // indirect
82+
google.golang.org/protobuf v1.35.1 // indirect
83+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
8384
gopkg.in/inf.v0 v0.9.1 // indirect
84-
gopkg.in/yaml.v2 v2.4.0 // indirect
8585
gopkg.in/yaml.v3 v3.0.1 // indirect
86-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
86+
k8s.io/apiextensions-apiserver v0.32.1 // indirect
8787
k8s.io/klog/v2 v2.130.1 // indirect
88-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
89-
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 // indirect
90-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
91-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
88+
k8s.io/kube-openapi v0.0.0-20241105132330-32ad38e42d3f // indirect
89+
k8s.io/utils v0.0.0-20241104100929-3ea5e8cea738 // indirect
90+
sigs.k8s.io/json v0.0.0-20241010143419-9aa6b5e7a4b3 // indirect
91+
sigs.k8s.io/structured-merge-diff/v4 v4.4.2 // indirect
9292
sigs.k8s.io/yaml v1.4.0 // indirect
9393
)

0 commit comments

Comments
 (0)