@exabugs/dynamodb-client 1.3.38 → 1.3.39
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 +8 -0
- package/dist/server/handler.cjs +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.3.39] - 2026-01-11
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **package-lock.json同期**: CI失敗を修正
|
|
15
|
+
- `yaml@2.8.2`の依存関係を追加
|
|
16
|
+
- `npm ci`が正常に動作するように修正
|
|
17
|
+
|
|
10
18
|
## [1.3.38] - 2026-01-11
|
|
11
19
|
|
|
12
20
|
### Changed
|
package/dist/server/handler.cjs
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// @exabugs/dynamodb-client v1.3.
|
|
2
|
-
// Built: 2026-01-10T23:
|
|
1
|
+
// @exabugs/dynamodb-client v1.3.39
|
|
2
|
+
// Built: 2026-01-10T23:44:26.170Z
|
|
3
3
|
"use strict";
|
|
4
4
|
var __create = Object.create;
|
|
5
5
|
var __defProp = Object.defineProperty;
|
|
@@ -33927,7 +33927,7 @@ async function handler(event) {
|
|
|
33927
33927
|
return createCorsResponse(HTTP_STATUS.OK);
|
|
33928
33928
|
}
|
|
33929
33929
|
if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
|
|
33930
|
-
const version = "1.3.
|
|
33930
|
+
const version = "1.3.39";
|
|
33931
33931
|
return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
|
|
33932
33932
|
}
|
|
33933
33933
|
if (event.requestContext.http.method !== "POST") {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exabugs/dynamodb-client",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.39",
|
|
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",
|