@aws-sdk/lib-dynamodb 3.28.0 → 3.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -0
- package/README.md +4 -4
- package/package.json +7 -8
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,41 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.32.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.31.0...v3.32.0) (2021-09-17)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [3.31.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.30.0...v3.31.0) (2021-09-11)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **lib-dynamodb:** add util-dynamodb to dependencies ([#2768](https://github.com/aws/aws-sdk-js-v3/issues/2768)) ([b09ba9a](https://github.com/aws/aws-sdk-js-v3/commit/b09ba9ac2069062156659b119a25c0c57077f402))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.30.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.29.0...v3.30.0) (2021-09-07)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.29.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.28.0...v3.29.0) (2021-09-02)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.28.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.27.0...v3.28.0) (2021-08-27)
|
|
7
42
|
|
|
8
43
|
**Note:** Version bump only for package @aws-sdk/lib-dynamodb
|
package/README.md
CHANGED
|
@@ -101,16 +101,16 @@ second parameter during creation of document client as follows:
|
|
|
101
101
|
```js
|
|
102
102
|
const marshallOptions = {
|
|
103
103
|
// Whether to automatically convert empty strings, blobs, and sets to `null`.
|
|
104
|
-
convertEmptyValues: false
|
|
104
|
+
convertEmptyValues: false, // false, by default.
|
|
105
105
|
// Whether to remove undefined values while marshalling.
|
|
106
|
-
removeUndefinedValues: false
|
|
106
|
+
removeUndefinedValues: false, // false, by default.
|
|
107
107
|
// Whether to convert typeof object to map attribute.
|
|
108
|
-
convertClassInstanceToMap: false
|
|
108
|
+
convertClassInstanceToMap: false, // false, by default.
|
|
109
109
|
};
|
|
110
110
|
|
|
111
111
|
const unmarshallOptions = {
|
|
112
112
|
// Whether to return numbers as a string instead of converting them to native JavaScript numbers.
|
|
113
|
-
wrapNumbers: false
|
|
113
|
+
wrapNumbers: false, // false, by default.
|
|
114
114
|
};
|
|
115
115
|
|
|
116
116
|
const translateConfig = { marshallOptions, unmarshallOptions };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/lib-dynamodb",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0",
|
|
4
4
|
"description": "The document client simplifies working with items in Amazon DynamoDB by abstracting away the notion of attribute values.",
|
|
5
5
|
"main": "./dist/cjs/index.js",
|
|
6
6
|
"module": "./dist/es/index.js",
|
|
@@ -21,23 +21,22 @@
|
|
|
21
21
|
},
|
|
22
22
|
"license": "Apache-2.0",
|
|
23
23
|
"dependencies": {
|
|
24
|
+
"@aws-sdk/util-dynamodb": "3.32.0",
|
|
24
25
|
"tslib": "^2.3.0"
|
|
25
26
|
},
|
|
26
27
|
"peerDependencies": {
|
|
27
28
|
"@aws-sdk/client-dynamodb": "^3.0.0",
|
|
28
29
|
"@aws-sdk/smithy-client": "^3.0.0",
|
|
29
|
-
"@aws-sdk/types": "^3.0.0"
|
|
30
|
-
"@aws-sdk/util-dynamodb": "^3.0.0"
|
|
30
|
+
"@aws-sdk/types": "^3.0.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
|
-
"@aws-sdk/client-dynamodb": "3.
|
|
34
|
-
"@aws-sdk/smithy-client": "3.
|
|
35
|
-
"@aws-sdk/types": "3.
|
|
36
|
-
"@aws-sdk/util-dynamodb": "3.28.0",
|
|
33
|
+
"@aws-sdk/client-dynamodb": "3.32.0",
|
|
34
|
+
"@aws-sdk/smithy-client": "3.32.0",
|
|
35
|
+
"@aws-sdk/types": "3.32.0",
|
|
37
36
|
"@types/jest": "^26.0.4",
|
|
38
37
|
"@types/node": "^14.11.2",
|
|
39
38
|
"jest": "^26.4.2",
|
|
40
|
-
"typescript": "~4.3.
|
|
39
|
+
"typescript": "~4.3.5"
|
|
41
40
|
},
|
|
42
41
|
"typesVersions": {
|
|
43
42
|
"<4.0": {
|