@exabugs/dynamodb-client 0.4.0 → 0.4.1
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 +10 -0
- package/dist/server/handler.cjs +2 -2
- package/package.json +2 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [0.4.1] - 2024-12-23
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Package**: Removed obsolete `bin` field for `generate-shadow-config`
|
|
15
|
+
- CLI tool was removed in v0.3.2 but bin field was not removed from package.json
|
|
16
|
+
- Eliminates pnpm warning about missing generate-shadow-config.js file
|
|
17
|
+
- No functional changes - purely cleanup
|
|
18
|
+
|
|
10
19
|
## [0.4.0] - 2024-12-23
|
|
11
20
|
|
|
12
21
|
### Changed
|
|
@@ -30,6 +39,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
30
39
|
- **Dependencies**: Established clear dependency direction without circular references
|
|
31
40
|
- **Testing**: All 266 tests continue to pass with improved architecture
|
|
32
41
|
- **Documentation**: Added comprehensive architecture documentation
|
|
42
|
+
- **Package**: Removed obsolete `bin` field for `generate-shadow-config` CLI tool
|
|
33
43
|
|
|
34
44
|
## [0.3.7] - 2024-12-19
|
|
35
45
|
|
package/dist/server/handler.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,15 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exabugs/dynamodb-client",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "DynamoDB Single-Table Client SDK with MongoDB-like API, Shadow Records, and Lambda implementation for serverless applications",
|
|
5
5
|
"author": "exabugs",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"main": "./dist/index.js",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
-
|
|
11
|
-
"generate-shadow-config": "./dist/scripts/generate-shadow-config.js"
|
|
12
|
-
},
|
|
10
|
+
|
|
13
11
|
"keywords": [
|
|
14
12
|
"dynamodb",
|
|
15
13
|
"single-table",
|