@twin.org/entity-storage-connector-dynamodb 0.0.3-next.14 → 0.0.3-next.15
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 +4 -0
- package/docs/changelog.md +16 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -8,6 +8,10 @@ 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.
|
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [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)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 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))
|
|
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.14 to 0.0.3-next.15
|
|
16
|
+
* devDependencies
|
|
17
|
+
* @twin.org/entity-storage-connector-memory bumped from 0.0.3-next.14 to 0.0.3-next.15
|
|
18
|
+
|
|
3
19
|
## [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
20
|
|
|
5
21
|
|
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.
|
|
3
|
+
"version": "0.0.3-next.15",
|
|
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.
|
|
18
|
-
"@aws-sdk/lib-dynamodb": "3.
|
|
17
|
+
"@aws-sdk/client-dynamodb": "3.1045",
|
|
18
|
+
"@aws-sdk/lib-dynamodb": "3.1045",
|
|
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.
|
|
23
|
+
"@twin.org/entity-storage-models": "0.0.3-next.15",
|
|
24
24
|
"@twin.org/logging-models": "next",
|
|
25
25
|
"@twin.org/nameof": "next"
|
|
26
26
|
},
|