@aws-sdk/lib-dynamodb 3.74.0 → 3.78.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 CHANGED
@@ -3,6 +3,33 @@
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.78.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.77.0...v3.78.0) (2022-04-26)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/lib-dynamodb
9
+
10
+
11
+
12
+
13
+
14
+ # [3.76.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.75.0...v3.76.0) (2022-04-22)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **util-dynamodb:** allow marshall function to handle more input types ([#3539](https://github.com/aws/aws-sdk-js-v3/issues/3539)) ([a5fa267](https://github.com/aws/aws-sdk-js-v3/commit/a5fa26783c7d061e2f32b985fdcf371487efaff4))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.75.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.74.0...v3.75.0) (2022-04-21)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/lib-dynamodb
28
+
29
+
30
+
31
+
32
+
6
33
  # [3.74.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.73.0...v3.74.0) (2022-04-20)
7
34
 
8
35
  **Note:** Version bump only for package @aws-sdk/lib-dynamodb
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.unmarshallOutput = exports.marshallInput = void 0;
4
4
  const util_dynamodb_1 = require("@aws-sdk/util-dynamodb");
5
5
  const processObj = (obj, processFunc, children) => {
6
- if (obj) {
6
+ if (obj !== undefined) {
7
7
  if (!children || (Array.isArray(children) && children.length === 0)) {
8
8
  return processFunc(obj);
9
9
  }
@@ -1,7 +1,7 @@
1
1
  import { __assign, __read } from "tslib";
2
2
  import { marshall, unmarshall } from "@aws-sdk/util-dynamodb";
3
3
  var processObj = function (obj, processFunc, children) {
4
- if (obj) {
4
+ if (obj !== undefined) {
5
5
  if (!children || (Array.isArray(children) && children.length === 0)) {
6
6
  return processFunc(obj);
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/lib-dynamodb",
3
- "version": "3.74.0",
3
+ "version": "3.78.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",
@@ -23,7 +23,7 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@aws-sdk/util-dynamodb": "3.74.0",
26
+ "@aws-sdk/util-dynamodb": "3.78.0",
27
27
  "tslib": "^2.3.1"
28
28
  },
29
29
  "peerDependencies": {
@@ -32,9 +32,9 @@
32
32
  "@aws-sdk/types": "^3.0.0"
33
33
  },
34
34
  "devDependencies": {
35
- "@aws-sdk/client-dynamodb": "3.74.0",
36
- "@aws-sdk/smithy-client": "3.72.0",
37
- "@aws-sdk/types": "3.55.0",
35
+ "@aws-sdk/client-dynamodb": "3.78.0",
36
+ "@aws-sdk/smithy-client": "3.78.0",
37
+ "@aws-sdk/types": "3.78.0",
38
38
  "@tsconfig/recommended": "1.0.1",
39
39
  "@types/node": "^14.11.2",
40
40
  "concurrently": "7.0.0",