-
Notifications
You must be signed in to change notification settings - Fork 2
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
Update AWS SDK to v3 #48
base: main
Are you sure you want to change the base?
Conversation
New, updated, and removed dependencies detected. Learn more about Socket for GitHub ↗︎
🚮 Removed packages: @types/[email protected], [email protected] |
JW - why? |
@xdumaine I think at the time I wanted to set the engines requirements to >= Node 18, so just used the native functionality rather than an external dependency. |
service: dynamodb | ||
const documentClient = DynamoDBDocumentClient.from(ddb, { | ||
marshallOptions: { | ||
removeUndefinedValues: true |
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.
AFAIK this recreates the behavior of v2
. Of all the things in this PR this is the one I'm most concerned about as far as breaking behavior. However, it seems removeUndefinedValues: true
recreates what was the default behavior in v2:
aws/aws-sdk-js-v3#1816
No description provided.