@exabugs/dynamodb-client 1.3.19 → 1.3.20

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,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [1.3.20] - 2026-01-03
11
+
12
+ ### Added
13
+
14
+ - **Geohash検索spec**: dynamodb-clientの汎用機能としてGeohash検索specを追加
15
+ - `.kiro/specs/dynamodb-client/geohash-search/` ディレクトリに移動
16
+ - requirements.md, design.md, tasks.md, verification-plan.mdを含む
17
+
18
+ ### Changed
19
+
20
+ - **$nearクエリインターフェース**: 簡易形式のみに変更
21
+ - MongoDB互換のGeoJSON形式(`$geometry`)を削除
22
+ - 簡易形式(`latitude`, `longitude`直接指定)のみを推奨
23
+ - より直感的で使いやすいインターフェースに統一
24
+
10
25
  ## [1.3.19] - 2026-01-03
11
26
 
12
27
  ### Changed
@@ -1,5 +1,5 @@
1
- // @exabugs/dynamodb-client v1.3.19
2
- // Built: 2026-01-02T17:11:27.216Z
1
+ // @exabugs/dynamodb-client v1.3.20
2
+ // Built: 2026-01-02T23:49:33.625Z
3
3
  "use strict";
4
4
  var __create = Object.create;
5
5
  var __defProp = Object.defineProperty;
@@ -33458,7 +33458,7 @@ async function handler(event) {
33458
33458
  return createCorsResponse(HTTP_STATUS.OK);
33459
33459
  }
33460
33460
  if (event.requestContext.http.method === "GET" && event.requestContext.http.path === "/version") {
33461
- const version = "1.3.19";
33461
+ const version = "1.3.20";
33462
33462
  return createSuccessResponse({ version, timestamp: (/* @__PURE__ */ new Date()).toISOString() }, requestId);
33463
33463
  }
33464
33464
  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.19",
3
+ "version": "1.3.20",
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",