@exabugs/dynamodb-client 1.2.0 → 1.2.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 +9 -0
- package/dist/server/handler.cjs +2 -2
- package/package.json +1 -1
- package/terraform/main.tf +3 -1
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
|
+
## [1.2.1] - 2026-01-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Terraform変更検知の修正**: `data.archive_file.lambda_records`を`source_file`から`source_dir`に変更
|
|
15
|
+
- `node_modules`を含むディレクトリ全体を監視するように修正
|
|
16
|
+
- 依存関係(`@exabugs/dynamodb-client`等)の変更を正しく検知
|
|
17
|
+
- Lambda関数の自動再デプロイが正常に動作するように改善
|
|
18
|
+
|
|
10
19
|
## [1.2.0] - 2026-01-02
|
|
11
20
|
|
|
12
21
|
### Added
|
package/dist/server/handler.cjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exabugs/dynamodb-client",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.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",
|
package/terraform/main.tf
CHANGED
|
@@ -81,10 +81,12 @@ resource "aws_cloudwatch_log_group" "lambda_records" {
|
|
|
81
81
|
}
|
|
82
82
|
|
|
83
83
|
# Lambda関数のZIPファイルを作成
|
|
84
|
+
# source_dirを使用してnode_modulesを含むディレクトリ全体を監視
|
|
84
85
|
data "archive_file" "lambda_records" {
|
|
85
86
|
type = "zip"
|
|
86
|
-
|
|
87
|
+
source_dir = "${path.module}/../dist/server"
|
|
87
88
|
output_path = "${path.module}/../dist/server/handler.zip"
|
|
89
|
+
excludes = ["handler.zip"]
|
|
88
90
|
}
|
|
89
91
|
|
|
90
92
|
# Lambda関数
|