-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
SDKv3-02: Update aws-lambda-nodejs
in aws-cdk-lib
#29836
Comments
10 tasks
This was referenced Apr 22, 2024
mergify bot
pushed a commit
that referenced
this issue
May 8, 2024
…me updates related to sdk bundling (#30099) Closes #29836. While sdk v2 was not being used directly in the construct, we had some remnants of its use. Added a warning for users of Node 16 who do not bundle the sdk on what it will take to update to newer node versions. Also updated integ tests to make actual sdk v3 calls as well as clean up false references to v2. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
|
Comments on closed issues and PRs are hard for our team to see. If you need help, please open a new issue that references this one. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Context
The AWS SDK V2 is being deprecated. We need to remove all uses of it from the CDK.
Considerations
Task Description
We do not use sdk v2 directly in the package. However, we have logic around keeping the sdk from being bundled into the handler. That logic is tied to the runtime, and assumes the corresponding sdk version is included in the lambda runtime. We need to warn users that upgrading their lambda runtime can break handler code that uses sdk v2 calls.
The deprecation date for node16 Lambda runtimes is June 12, 2024. Lambda will block function creation on July 16, 2024 and will block function updates on August 15, 2024.
Acceptance Criteria
The text was updated successfully, but these errors were encountered: