Skip to content

Update to ACK runtime v0.47.0, code-generator v0.47.1 #176

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions apis/v1alpha1/ack-generate-metadata.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
ack_generate_info:
build_date: "2025-05-13T05:08:46Z"
build_hash: 55bf57b2806c33a7fcd074be403f26ce3f8e58db
build_date: "2025-05-24T00:31:31Z"
build_hash: 66a58d259146834e61b211a9a01609beaa58ef77
go_version: go1.24.2
version: v0.46.2
api_directory_checksum: e0465b8e0cf7076ab51e30604f13a32cdf4957ae
version: v0.47.1
api_directory_checksum: f450e33f8433d18a9b5ac9dbecc6d2652d4f8513
api_version: v1alpha1
aws_sdk_go_version: v1.32.6
generator_config_info:
Expand Down
6 changes: 6 additions & 0 deletions apis/v1alpha1/alias.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions apis/v1alpha1/code_signing_config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions apis/v1alpha1/event_source_mapping.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions apis/v1alpha1/function.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions apis/v1alpha1/function_url_config.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions apis/v1alpha1/layer_version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions apis/v1alpha1/version.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion config/controller/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ kind: Kustomization
images:
- name: controller
newName: public.ecr.aws/aws-controllers-k8s/lambda-controller
newTag: 1.7.1
newTag: 1.7.2
12 changes: 10 additions & 2 deletions config/crd/bases/lambda.services.k8s.aws_aliases.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ spec:

The length constraint applies only to the full ARN. If you specify only the
function name, it is limited to 64 characters in length.

Regex Pattern: `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
type: string
functionRef:
description: "AWSResourceReferenceWrapper provides a wrapper around
Expand All @@ -127,10 +129,16 @@ spec:
type: object
type: object
functionVersion:
description: The function version that the alias invokes.
description: |-
The function version that the alias invokes.

Regex Pattern: `^(\$LATEST|[0-9]+)$`
type: string
name:
description: The name of the alias.
description: |-
The name of the alias.

Regex Pattern: `^(?!^[0-9]+$)([a-zA-Z0-9-_]+)$`
type: string
permissions:
description: Permissions configures a set of Lambda permissions to
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,10 @@ spec:
- region
type: object
codeSigningConfigID:
description: Unique identifer for the Code signing configuration.
description: |-
Unique identifer for the Code signing configuration.

Regex Pattern: `^csc-[a-zA-Z0-9-_\.]{17}$`
type: string
conditions:
description: |-
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,8 @@ spec:
* Amazon MQ – The ARN of the broker.

* Amazon DocumentDB – The ARN of the DocumentDB change stream.

Regex Pattern: `^arn:(aws[a-zA-Z0-9-]*):([a-zA-Z0-9\-])+:([a-z]{2}(-gov)?-[a-z]+-\d{1})?:(\d{12})?:(.*)$`
type: string
eventSourceRef:
description: "AWSResourceReferenceWrapper provides a wrapper around
Expand Down Expand Up @@ -175,6 +177,8 @@ spec:

The length constraint applies only to the full ARN. If you specify only the
function name, it's limited to 64 characters in length.

Regex Pattern: `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
type: string
functionRef:
description: "AWSResourceReferenceWrapper provides a wrapper around
Expand Down Expand Up @@ -400,7 +404,10 @@ spec:
type: object
type: array
functionARN:
description: The ARN of the Lambda function.
description: |-
The ARN of the Lambda function.

Regex Pattern: `^arn:(aws[a-zA-Z-]*)?:lambda:[a-z]{2}(-gov)?-[a-z]+-\d{1}:\d{12}:function:[a-zA-Z0-9-_]+(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
type: string
lastModified:
description: |-
Expand Down
Loading