@exabugs/dynamodb-client 1.3.4 → 1.3.6
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 +20 -0
- package/dist/server/handler.cjs +3 -3
- package/dist/server/handler.cjs.map +1 -1
- package/dist/server/handler.d.ts +1 -1
- package/dist/server/handler.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.3.6] - 2026-01-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **Lambda関数のデフォルトバージョン**: handler.tsのデフォルトバージョンを1.3.6に更新
|
|
15
|
+
- 環境変数`DYNAMODB_CLIENT_VERSION`が設定されていない場合のフォールバック値を修正
|
|
16
|
+
- これにより、Lambda関数のソースコードハッシュが確実に変更される
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **パブリッシュ手順の改善**: コメントだけの変更ではビルド成果物が変わらないため、実際のコード変更が必要
|
|
21
|
+
|
|
22
|
+
## [1.3.5] - 2026-01-02
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- **テストリリース**: publish-and-deploy.mdの手順確認のためのテストリリース
|
|
27
|
+
- handler.tsのバージョンコメントを1.3.5に更新
|
|
28
|
+
- **注意**: コメントのみの変更のため、ビルド成果物は変わらず
|
|
29
|
+
|
|
10
30
|
## [1.3.4] - 2026-01-02
|
|
11
31
|
|
|
12
32
|
### Changed
|
package/dist/server/handler.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// @exabugs/dynamodb-client v1.3.
|
|
2
|
-
// Built: 2026-01-
|
|
1
|
+
// @exabugs/dynamodb-client v1.3.6
|
|
2
|
+
// Built: 2026-01-02T13:03:16.100Z
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -33413,7 +33413,7 @@ async function handler(event) {
|
|
|
33413
33413
|
return createCorsResponse(HTTP_STATUS.OK);
|
|
33414
33414
|
}
|
|
33415
33415
|
if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
|
|
33416
|
-
const version = process.env.DYNAMODB_CLIENT_VERSION || "1.3.
|
|
33416
|
+
const version = process.env.DYNAMODB_CLIENT_VERSION || "1.3.6";
|
|
33417
33417
|
return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
|
|
33418
33418
|
}
|
|
33419
33419
|
if (event.requestContext.http.method !== "POST") {
|