-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
DynamoDB API regression between 1.17.0 and 1.18.0 #226
Comments
This does look like a regression. Thanks for pointing this out. In the meantime you can pass |
It was a one-line fix to my dynamodb code to omit the |
Thanks for reporting, @mlogan. The above fix will be part of the next release. Sorry for the headache! |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread. |
With aws-sdk@1.17.0, I can make the following call to delete an attribute from a dynamoDB row:
Note that
AttributeUpdates
contains aValue
property which is set tonull
.After upgrading to aws-sdk@1.18.0, I get the following error when making the above call:
In order to fix my application, I have to change the call to look like this:
Note that
AttributeUpdates
no longer has anyValue
property in it.Was this change intentional? I didn't see anything in the release notes to indicate that it was. I'm perfectly happy to be told that I've been doing it wrong all along, and the old SDK versions were simply letting me get away with it. However, a more informative error message would have saved me some headache.
Thanks!
The text was updated successfully, but these errors were encountered: