@exabugs/dynamodb-client 1.3.11 → 1.3.12

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 CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.3.12] - 2026-01-02
11
+
12
+ ### Fixed
13
+
14
+ - **重要**: /versionエンドポイントのデフォルトバージョンを1.3.12に更新
15
+ - esbuild設定でPACKAGE_VERSIONをdefineに追加(ビルド時にpackage.jsonのバージョンを埋め込み)
16
+
10
17
  ## [1.3.11] - 2026-01-02
11
18
 
12
19
  ### Fixed
@@ -1,5 +1,5 @@
1
- // @exabugs/dynamodb-client v1.3.11
2
- // Built: 2026-01-02T14:15:20.621Z
1
+ // @exabugs/dynamodb-client v1.3.12
2
+ // Built: 2026-01-02T14:58:28.413Z
3
3
  "use strict";
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -33453,7 +33453,7 @@ async function handler(event) {
33453
33453
  return createCorsResponse(HTTP_STATUS.OK);
33454
33454
  }
33455
33455
  if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
33456
- const version = process.env.DYNAMODB_CLIENT_VERSION || "1.3.6";
33456
+ const version = "1.3.12";
33457
33457
  return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
33458
33458
  }
33459
33459
  if (event.requestContext.http.method !== "POST") {