@twin.org/entity-storage-connector-dynamodb 0.0.3-next.14 → 0.0.3-next.16

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/README.md CHANGED
@@ -8,12 +8,16 @@ This package provides an Amazon DynamoDB backend for managed NoSQL storage in cl
8
8
  npm install @twin.org/entity-storage-connector-dynamodb
9
9
  ```
10
10
 
11
+ ## Dependency versions
12
+
13
+ Published versions pin `@aws-sdk/client-dynamodb` and `@aws-sdk/lib-dynamodb` to releases that are at least 48 hours old on npm, so consumers with a minimum package age policy (for example pnpm `minimumReleaseAge`) can install without resolution failures.
14
+
11
15
  ## Docker
12
16
 
13
17
  To perform testing of this component it may be necessary to launch a local instance to communicate with.
14
18
 
15
19
  ```shell
16
- docker run -d --name twin-entity-storage-dynamodb -p 8000:8000 amazon/dynamodb-local
20
+ docker run -d --name twin-entity-storage-dynamodb -p 18000:8000 amazon/dynamodb-local
17
21
  ```
18
22
 
19
23
  ## Examples
package/docs/changelog.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.0.3-next.16](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-dynamodb-v0.0.3-next.15...entity-storage-connector-dynamodb-v0.0.3-next.16) (2026-05-20)
4
+
5
+
6
+ ### Features
7
+
8
+ * disable endpoint discovery for cosmos ([49df2a2](https://github.com/iotaledger/twin-entity-storage/commit/49df2a254f385dc42e2e1f7e26e71f89b5bf5bcf))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.15 to 0.0.3-next.16
16
+ * devDependencies
17
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.15 to 0.0.3-next.16
18
+
19
+ ## [0.0.3-next.15](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-dynamodb-v0.0.3-next.14...entity-storage-connector-dynamodb-v0.0.3-next.15) (2026-05-19)
20
+
21
+
22
+ ### Bug Fixes
23
+
24
+ * document AWS SDK pins for minimum release age consumers ([#96](https://github.com/iotaledger/twin-entity-storage/issues/96)) ([c4bcc26](https://github.com/iotaledger/twin-entity-storage/commit/c4bcc26f962da6f6bd090630f48d26ab58946c4e))
25
+
26
+
27
+ ### Dependencies
28
+
29
+ * The following workspace dependencies were updated
30
+ * dependencies
31
+ * @twin.org/entity-storage-models bumped from 0.0.3-next.14 to 0.0.3-next.15
32
+ * devDependencies
33
+ * @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.14 to 0.0.3-next.15
34
+
3
35
  ## [0.0.3-next.14](https://github.com/iotaledger/twin-entity-storage/compare/entity-storage-connector-dynamodb-v0.0.3-next.13...entity-storage-connector-dynamodb-v0.0.3-next.14) (2026-05-19)
4
36
 
5
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/entity-storage-connector-dynamodb",
3
- "version": "0.0.3-next.14",
3
+ "version": "0.0.3-next.16",
4
4
  "description": "Amazon DynamoDB connector for managed NoSQL persistence.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -14,13 +14,13 @@
14
14
  "node": ">=20.0.0"
15
15
  },
16
16
  "dependencies": {
17
- "@aws-sdk/client-dynamodb": "3.1049",
18
- "@aws-sdk/lib-dynamodb": "3.1049",
17
+ "@aws-sdk/client-dynamodb": "3.1050",
18
+ "@aws-sdk/lib-dynamodb": "3.1050",
19
19
  "@aws-sdk/util-dynamodb": "3.996",
20
20
  "@twin.org/context": "next",
21
21
  "@twin.org/core": "next",
22
22
  "@twin.org/entity": "next",
23
- "@twin.org/entity-storage-models": "0.0.3-next.14",
23
+ "@twin.org/entity-storage-models": "0.0.3-next.16",
24
24
  "@twin.org/logging-models": "next",
25
25
  "@twin.org/nameof": "next"
26
26
  },