@reventlessdev/reventless-local 3.0.0-alpha.188 → 3.0.0-alpha.189

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,13 @@
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.189 (2026-08-02)
7
+
8
+ ### Features
9
+
10
+ * **aws,core,spec,seed-aws:** expire uploads nobody committed a reference to ([f63e84c](https://github.com/ReventlessDev/reventless-core/commit/f63e84c1a11cc350b799a6f69a2e7427cf1ea6e9))
11
+
12
+
6
13
  # 3.0.0-alpha.188 (2026-08-01)
7
14
 
8
15
  * feat(aws,core,spec)!: qualify store prefixes by plugin and refuse name collisions ([da39405](https://github.com/ReventlessDev/reventless-core/commit/da394059d9f8f981bf7adc79e2c1ce2b429e0267))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@reventlessdev/reventless-local",
3
- "version": "3.0.0-alpha.188",
3
+ "version": "3.0.0-alpha.189",
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
  "bin": {
@@ -34,23 +34,23 @@
34
34
  "graphql-yoga": "^5.21.0",
35
35
  "sury": "11.0.0-alpha.4",
36
36
  "ws": "^8.18.0",
37
- "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
38
- "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.26",
39
37
  "@reventlessdev/rescript-effect": "0.1.0-alpha.32",
38
+ "@reventlessdev/rescript-graphql-yoga": "1.0.0-alpha.26",
39
+ "@reventlessdev/rescript-jest": "1.0.0-alpha.10",
40
40
  "@reventlessdev/rescript-node": "2.0.0-alpha.0",
41
41
  "@reventlessdev/rescript-mcp-sdk": "1.0.0-alpha.21",
42
+ "@reventlessdev/reventless-core": "3.0.0-alpha.201",
42
43
  "@reventlessdev/rescript-pulumi-pulumi": "2.3.0-alpha.18",
43
- "@reventlessdev/reventless-core": "3.0.0-alpha.200",
44
- "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.48",
45
- "@reventlessdev/reventless-gwt": "1.0.0-alpha.147",
46
- "@reventlessdev/reventless-postgres": "3.0.0-alpha.64",
47
- "@reventlessdev/reventless-spec": "3.0.0-alpha.92",
48
- "@reventlessdev/reventless-infra": "3.0.0-alpha.117"
44
+ "@reventlessdev/reventless-gwt": "1.0.0-alpha.148",
45
+ "@reventlessdev/reventless-infra": "3.0.0-alpha.118",
46
+ "@reventlessdev/reventless-postgres": "3.0.0-alpha.65",
47
+ "@reventlessdev/reventless-graphql-server": "1.0.0-alpha.49",
48
+ "@reventlessdev/reventless-spec": "3.0.0-alpha.93"
49
49
  },
50
50
  "devDependencies": {
51
51
  "rescript": "12.3.0",
52
52
  "sury-ppx": "11.0.0-alpha.2",
53
- "@reventlessdev/reventless-ppx": "1.0.0-alpha.59"
53
+ "@reventlessdev/reventless-ppx": "1.0.0-alpha.60"
54
54
  },
55
55
  "peerDependencies": {
56
56
  "rescript": "12.3.0"
@@ -131,7 +131,7 @@ let handleLogout = (_req: nodeRequest, res: nodeResponse): unit => {
131
131
  // PUT /{prefix}/{key} raw bytes → 200 (store)
132
132
  // GET /{prefix}/{key} → the stored bytes
133
133
  // Minting (`Upload_Presign`) and release (`Upload_Release`) are platform-API
134
- // mutations under route B (see [docs/plans/upload-release-path.md], resolved in
134
+ // mutations under route B (see [docs/plans/done/upload-release-path.md], resolved in
135
135
  // Platform.res against this same `LocalObjectStore`); the presign returns
136
136
  // `uploadUrl == storageRef == /{prefix}/{key}`, so the byte PUT below is unchanged.
137
137
 
@@ -57,7 +57,7 @@ let put = (~key: string, ~bytes: buffer, ~contentType: string): unit =>
57
57
  let get = (~key: string): option<entry> => objects->Dict.get(key)
58
58
 
59
59
  // Remove a stored object. Idempotent — deleting an absent key is a no-op, matching
60
- // the release contract (see docs/plans/upload-release-path.md, Step 3). The dev
60
+ // the release contract (see docs/plans/done/upload-release-path.md, Step 3). The dev
61
61
  // store has no identities or clock, so the release resolver enforces only the
62
62
  // *shape* of the rule (key under a served prefix), not the identity/age conditions.
63
63
  let delete = (~key: string): unit => objects->Dict.delete(key)
@@ -5,7 +5,7 @@
5
5
  // The dev store has no identities and no clock, so release enforces only the *shape*
6
6
  // of the rule (key under a served prefix), not the identity/age conditions AWS applies
7
7
  // — dev parity is about the client seeing the same contract, not reproducing AWS's
8
- // guarantees. See [docs/plans/upload-release-path.md] § Step 3.
8
+ // guarantees. See [docs/plans/done/upload-release-path.md] § Step 3.
9
9
 
10
10
  // Mint a same-origin `/{prefix}/{uuid}/{fileName}` ref: both the PUT target and the
11
11
  // stored value, mirroring the AWS presign ticket's shape.