@reventlessdev/reventless-local 3.0.0-alpha.165 → 3.0.0-alpha.167

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
@@ -3,6 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 3.0.0-alpha.167 (2026-07-24)
7
+
8
+ **Note:** Version bump only for package @reventlessdev/reventless-local
9
+
10
+
11
+
12
+
13
+
14
+ # 3.0.0-alpha.166 (2026-07-23)
15
+
16
+ ### Bug Fixes
17
+
18
+ * **aws:** round-trip the DynamoDB Scan cursor in full-list connections ([0e21008](https://github.com/ReventlessDev/reventless-core/commit/0e2100860767a153a5c2f50a88fd6b501787c7f4))
19
+
20
+
6
21
  # 3.0.0-alpha.165 (2026-07-22)
7
22
 
8
23
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-local",
3
- "version": "3.0.0-alpha.165",
3
+ "version": "3.0.0-alpha.167",
4
4
  "description": "Local platform for Reventless (in-memory or SQLite backend, for development and testing without AWS)",
5
5
  "license": "Apache-2.0",
6
6
  "jest": {
@@ -31,17 +31,17 @@
31
31
  "graphql-yoga": "^5.21.0",
32
32
  "sury": "11.0.0-alpha.4",
33
33
  "ws": "^8.18.0",
34
- "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.24",
35
34
  "@reventlessdev/rescript-effect": "0.1.0-alpha.30",
36
35
  "@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.20",
37
36
  "@reventlessdev/rescript-jest": "1.0.0-alpha.9",
38
37
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.17",
39
- "@reventlessdev/reventless-core": "3.0.0-alpha.178",
40
- "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.25",
41
- "@reventlessdev/reventless-gwt": "1.0.0-alpha.125",
38
+ "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.24",
39
+ "@reventlessdev/reventless-core": "3.0.0-alpha.180",
40
+ "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.27",
41
+ "@reventlessdev/reventless-gwt": "1.0.0-alpha.127",
42
42
  "@reventlessdev/reventless-infra": "3.0.0-alpha.104",
43
- "@reventlessdev/reventless-spec": "3.0.0-alpha.80",
44
- "@reventlessdev/reventless-postgres": "3.0.0-alpha.42"
43
+ "@reventlessdev/reventless-postgres": "3.0.0-alpha.44",
44
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.80"
45
45
  },
46
46
  "devDependencies": {
47
47
  "rescript": "12.3.0",
@@ -667,6 +667,8 @@ describe("GraphQL_SchemaInspector", () => {
667
667
  expect(msg->String.includes("ScanItem"))->toBe(true)
668
668
  expect(msg->String.includes("name"))->toBe(true)
669
669
  expect(msg->String.includes("per-page"))->toBe(true)
670
+ // The warning must state the correctness consequence, not just the cost.
671
+ expect(msg->String.includes("globally ordered"))->toBe(true)
670
672
  },
671
673
  )
672
674
  testPromise(
@@ -500,6 +500,7 @@ globalThis.describe("GraphQL_SchemaInspector", () => {
500
500
  globalThis.expect(msg.includes("ScanItem")).toBe(true);
501
501
  globalThis.expect(msg.includes("name")).toBe(true);
502
502
  globalThis.expect(msg.includes("per-page")).toBe(true);
503
+ globalThis.expect(msg.includes("globally ordered")).toBe(true);
503
504
  });
504
505
  globalThis.test("validateScanSortAlignment is silent when @scanSort field aligns with a known sort key", async () => {
505
506
  let warnings = GraphQL_FragmentGenerator$ReventlessCore.validateScanSortAlignment(scanStateSchemaWithAnnotations, "ScanItem", ["name"]);