-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
DynamoDB: Bump DDB Local to v3 #12879
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
Conversation
LocalStack Community integration with Pro 2 files ± 0 2 suites ±0 20m 13s ⏱️ - 1h 25m 32s Results for commit c8f4ab1. ± Comparison against base commit 36014d4. This pull request removes 3720 tests.
♻️ This comment has been updated with latest results. |
Test Results (amd64) - Integration, Bootstrap 5 files 5 suites 36m 46s ⏱️ Results for commit c8f4ab1. ♻️ This comment has been updated with latest results. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me!
JAVASSIST_JAR_URL = f"{MAVEN_REPO_URL}/org/javassist/javassist/3.30.2-GA/javassist-3.30.2-GA.jar" | ||
|
||
DDBLOCAL_URL = "https://d1ni2b6xgvw0s0.cloudfront.net/v2.x/dynamodb_local_latest.zip" | ||
DDBLOCAL_URL = "https://d1ni2b6xgvw0s0.cloudfront.net/v3.x/dynamodb_local_latest.zip" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will the /v3.x/
have any impact because our tests picked the newer version up despite being pinned to /v2.x/
AWS following the best practices 😛
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:D I dumped it in case they will realize it points to the wrong version!
Motivation
Last Friday, we had to skip a LocalStack only test (see #12874) that suddenly started to fail.
We realized that the last version of DynamoDB local (see announcement) now migrated to the SDK for Java 2.x.
Therefore, our custom transformation done in here was not applicable anymore.
(see localstack/localstack-artifacts#44 for more context)
Changes
This PR will be updated with the definitive URL once such a PR gets merged.Closes PNX-32