@pulse-compute/cli 1.0.0-beta.1 → 1.0.0-beta.3

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.
Files changed (76) hide show
  1. package/API.md +37 -4
  2. package/CHANGELOG.md +30 -0
  3. package/README.md +4 -3
  4. package/cli-spec.json +1 -1
  5. package/docs/README.md +1 -1
  6. package/docs/architecture/current-contracts.md +108 -7
  7. package/docs/concepts/compilation-and-lowering.md +1 -1
  8. package/docs/concepts/contracts-and-providers.md +2 -2
  9. package/docs/concepts/effects-and-continuations.md +57 -0
  10. package/docs/concepts/package-owned-lowering.md +1 -1
  11. package/docs/concepts/targets-and-hosts.md +10 -2
  12. package/docs/contributing/adding-core-provider.md +1 -1
  13. package/docs/contributing/adding-first-party-lowerer.md +1 -1
  14. package/docs/contributing/package-lowerer-contract.md +2 -2
  15. package/docs/guides/migrating-from-express.md +3 -3
  16. package/docs/guides/routing.md +19 -1
  17. package/docs/maintainers/documentation-deployment.md +4 -4
  18. package/docs/maintainers/documentation-versioning.md +1 -1
  19. package/docs/maintainers/maintainer-charter.md +17 -1
  20. package/docs/maintainers/maintenance-policy.json +34 -3
  21. package/docs/maintainers/maintenance-policy.md +3 -3
  22. package/docs/maintainers/npm-publishing.md +34 -6
  23. package/docs/maintainers/plugin-readiness.json +1 -1
  24. package/docs/maintainers/plugin-readiness.md +1 -1
  25. package/docs/maintainers/release-acceptance.md +51 -8
  26. package/docs/maintainers/release-manifest.md +23 -22
  27. package/docs/maintainers/scope-policy.md +13 -1
  28. package/docs/maintainers/testing.md +47 -1
  29. package/docs/packages/README.md +25 -24
  30. package/docs/packages/assets.md +1 -1
  31. package/docs/packages/crypto.md +8 -1
  32. package/docs/packages/entities.md +1 -1
  33. package/docs/packages/grip.md +1 -1
  34. package/docs/packages/implementation-packages.md +10 -1
  35. package/docs/packages/jwt.md +1 -1
  36. package/docs/packages/provider-fastly.md +29 -3
  37. package/docs/packages/pulse.md +1 -1
  38. package/docs/packages/runtime.md +10 -1
  39. package/docs/packages/s3.md +101 -0
  40. package/docs/preview-scope.md +2 -2
  41. package/docs/reference/cli-spec.json +1 -1
  42. package/docs/reference/cli.md +1 -1
  43. package/docs/reference/compatibility-matrix.md +2 -2
  44. package/docs/reference/diagnostics.md +5 -5
  45. package/docs/reference/documentation-versions.json +19 -3
  46. package/docs/reference/handler-authoring.md +1 -1
  47. package/docs/reference/project-config.md +33 -5
  48. package/docs/reference/project-config.schema.json +70 -7
  49. package/docs/reference/release-manifest.json +37 -23
  50. package/documentation-site.json +8 -1
  51. package/documentation-versions.json +19 -3
  52. package/examples/01-hello-json/README.md +1 -1
  53. package/examples/01-hello-json/package.json +2 -2
  54. package/examples/02-request-schema/README.md +1 -1
  55. package/examples/02-request-schema/package.json +2 -2
  56. package/examples/03-fetch-composition/README.md +1 -1
  57. package/examples/03-fetch-composition/package.json +2 -2
  58. package/examples/05-fastly-capabilities/README.md +2 -2
  59. package/examples/05-fastly-capabilities/package.json +4 -4
  60. package/examples/07-opaque-proxy/README.md +2 -2
  61. package/examples/07-opaque-proxy/package.json +3 -3
  62. package/examples/09-router-lowering/README.md +1 -1
  63. package/examples/09-router-lowering/package.json +3 -3
  64. package/examples/10-entities-tools/package.json +3 -3
  65. package/examples/11-events/README.md +1 -1
  66. package/examples/11-events/package.json +2 -2
  67. package/examples/12-mcp-proxy/README.md +1 -1
  68. package/examples/12-mcp-proxy/package.json +2 -2
  69. package/examples/13-jwt-es256/README.md +1 -1
  70. package/examples/13-jwt-es256/package.json +3 -3
  71. package/package.json +7 -7
  72. package/project-config.schema.json +70 -7
  73. package/release-manifest.json +37 -23
  74. package/src/documentation.js +1 -1
  75. package/src/project-config-schema.js +3 -3
  76. package/src/project-execution.js +64 -30
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "schemaVersion": "pulse.release-catalog.v1",
3
- "releaseVersion": "1.0.0-beta.1",
3
+ "releaseVersion": "1.0.0-beta.3",
4
4
  "channel": "beta",
5
- "releasedAt": "2026-08-01",
5
+ "releasedAt": "2026-09-14",
6
6
  "license": "Apache-2.0",
7
7
  "display": {
8
8
  "productName": "Pulse",
9
9
  "candidateLabel": "Beta",
10
- "candidateName": "Pulse 1.0.0-beta.1 — Beta",
10
+ "candidateName": "Pulse 1.0.0-beta.3 — Beta",
11
11
  "activationStage": "documentation-release"
12
12
  },
13
13
  "legal": {
@@ -29,7 +29,7 @@
29
29
  "documentation": {
30
30
  "origin": "https://pulsecompute.io",
31
31
  "basePath": "/",
32
- "version": "v1.0.0-beta.1",
32
+ "version": "v1.0.0-beta.3",
33
33
  "latestAlias": "latest",
34
34
  "source": "docs/README.md"
35
35
  },
@@ -97,7 +97,7 @@
97
97
  },
98
98
  "publication": {
99
99
  "registry": "https://registry.npmjs.org",
100
- "distTag": "beta",
100
+ "distTag": "latest",
101
101
  "access": "public",
102
102
  "authentication": "npm-trusted-publishing-oidc",
103
103
  "provenance": "automatic",
@@ -153,7 +153,7 @@
153
153
  {
154
154
  "dir": "packages/runtime",
155
155
  "name": "@pulse-compute/runtime",
156
- "version": "1.0.0-beta.1",
156
+ "version": "1.0.0-beta.3",
157
157
  "documentation": "docs/packages/runtime.md",
158
158
  "role": "public-runtime",
159
159
  "tier": "canonical-application",
@@ -167,7 +167,7 @@
167
167
  {
168
168
  "dir": "packages/pulse",
169
169
  "name": "@pulse-compute/pulse",
170
- "version": "1.0.0-beta.1",
170
+ "version": "1.0.0-beta.3",
171
171
  "documentation": "docs/packages/pulse.md",
172
172
  "role": "public-api",
173
173
  "tier": "canonical-application",
@@ -182,7 +182,7 @@
182
182
  {
183
183
  "dir": "wasm/packages/cli",
184
184
  "name": "@pulse-compute/cli",
185
- "version": "1.0.0-beta.1",
185
+ "version": "1.0.0-beta.3",
186
186
  "documentation": "docs/packages/cli.md",
187
187
  "role": "public-cli",
188
188
  "tier": "canonical-application",
@@ -207,7 +207,7 @@
207
207
  {
208
208
  "dir": "packages/provider-fastly",
209
209
  "name": "@pulse-compute/provider-fastly",
210
- "version": "1.0.0-beta.1",
210
+ "version": "1.0.0-beta.3",
211
211
  "documentation": "docs/packages/provider-fastly.md",
212
212
  "role": "public-provider",
213
213
  "tier": "supported-extension",
@@ -227,7 +227,7 @@
227
227
  {
228
228
  "dir": "packages/grip",
229
229
  "name": "@pulse-compute/grip",
230
- "version": "1.0.0-beta.1",
230
+ "version": "1.0.0-beta.3",
231
231
  "documentation": "docs/packages/grip.md",
232
232
  "role": "public-extension",
233
233
  "tier": "supported-extension",
@@ -241,7 +241,7 @@
241
241
  {
242
242
  "dir": "packages/assets",
243
243
  "name": "@pulse-compute/assets",
244
- "version": "1.0.0-beta.1",
244
+ "version": "1.0.0-beta.3",
245
245
  "documentation": "docs/packages/assets.md",
246
246
  "role": "public-extension",
247
247
  "tier": "supported-extension",
@@ -255,7 +255,7 @@
255
255
  {
256
256
  "dir": "packages/crypto",
257
257
  "name": "@pulse-compute/crypto",
258
- "version": "1.0.0-beta.1",
258
+ "version": "1.0.0-beta.3",
259
259
  "documentation": "docs/packages/crypto.md",
260
260
  "role": "public-extension",
261
261
  "tier": "supported-extension",
@@ -269,7 +269,7 @@
269
269
  {
270
270
  "dir": "packages/jwt",
271
271
  "name": "@pulse-compute/jwt",
272
- "version": "1.0.0-beta.1",
272
+ "version": "1.0.0-beta.3",
273
273
  "documentation": "docs/packages/jwt.md",
274
274
  "role": "public-extension",
275
275
  "tier": "supported-extension",
@@ -283,7 +283,7 @@
283
283
  {
284
284
  "dir": "packages/entities",
285
285
  "name": "@pulse-compute/entities",
286
- "version": "1.0.0-beta.1",
286
+ "version": "1.0.0-beta.3",
287
287
  "documentation": "docs/packages/entities.md",
288
288
  "role": "public-extension",
289
289
  "tier": "supported-extension",
@@ -294,10 +294,24 @@
294
294
  ],
295
295
  "stability": "The package root and first-party JSON-RPC adapter are supported Beta contracts; compiler integration subpaths remain toolchain-only."
296
296
  },
297
+ {
298
+ "dir": "packages/s3",
299
+ "name": "@pulse-compute/s3",
300
+ "version": "1.0.0-beta.3",
301
+ "documentation": "docs/packages/s3.md",
302
+ "role": "public-extension",
303
+ "tier": "supported-extension",
304
+ "audience": "Applications using bounded exact-key object reads and writes through Pulse effects.",
305
+ "directInstall": "Yes, when an application uses S3 object operations.",
306
+ "entryPoints": [
307
+ "@pulse-compute/s3"
308
+ ],
309
+ "stability": "The package root supports head, getText and putText on Node Native, Node JavaScript and Fastly Native. Fastly JavaScript is ineligible. Provider and lowering subpaths are toolchain-only; live origin acceptance is separate."
310
+ },
297
311
  {
298
312
  "dir": "wasm/packages/build-support",
299
313
  "name": "@pulse-compute/wasm-build-support",
300
- "version": "1.0.0-beta.1",
314
+ "version": "1.0.0-beta.3",
301
315
  "documentation": "docs/packages/implementation-packages.md",
302
316
  "role": "implementation",
303
317
  "tier": "implementation",
@@ -311,7 +325,7 @@
311
325
  {
312
326
  "dir": "wasm/packages/compiler",
313
327
  "name": "@pulse-compute/wasm-compiler",
314
- "version": "1.0.0-beta.1",
328
+ "version": "1.0.0-beta.3",
315
329
  "documentation": "docs/packages/implementation-packages.md",
316
330
  "role": "implementation",
317
331
  "tier": "implementation",
@@ -326,7 +340,7 @@
326
340
  {
327
341
  "dir": "wasm/packages/wasm-guest-link",
328
342
  "name": "@pulse-compute/wasm-guest-link",
329
- "version": "1.0.0-beta.1",
343
+ "version": "1.0.0-beta.3",
330
344
  "documentation": "docs/packages/implementation-packages.md",
331
345
  "role": "implementation",
332
346
  "tier": "implementation",
@@ -340,7 +354,7 @@
340
354
  {
341
355
  "dir": "wasm/packages/contracts",
342
356
  "name": "@pulse-compute/wasm-contracts",
343
- "version": "1.0.0-beta.1",
357
+ "version": "1.0.0-beta.3",
344
358
  "documentation": "docs/packages/implementation-packages.md",
345
359
  "role": "implementation",
346
360
  "tier": "implementation",
@@ -354,7 +368,7 @@
354
368
  {
355
369
  "dir": "wasm/packages/host-runtime",
356
370
  "name": "@pulse-compute/wasm-host-runtime",
357
- "version": "1.0.0-beta.1",
371
+ "version": "1.0.0-beta.3",
358
372
  "documentation": "docs/packages/implementation-packages.md",
359
373
  "role": "implementation",
360
374
  "tier": "implementation",
@@ -368,7 +382,7 @@
368
382
  {
369
383
  "dir": "wasm/packages/library-kit",
370
384
  "name": "@pulse-compute/wasm-library-kit",
371
- "version": "1.0.0-beta.1",
385
+ "version": "1.0.0-beta.3",
372
386
  "documentation": "docs/packages/implementation-packages.md",
373
387
  "role": "implementation",
374
388
  "tier": "implementation",
@@ -382,7 +396,7 @@
382
396
  {
383
397
  "dir": "packages/provider-node",
384
398
  "name": "@pulse-compute/provider-node",
385
- "version": "1.0.0-beta.1",
399
+ "version": "1.0.0-beta.3",
386
400
  "documentation": "docs/packages/implementation-packages.md",
387
401
  "role": "implementation",
388
402
  "tier": "implementation",
@@ -397,7 +411,7 @@
397
411
  {
398
412
  "dir": "wasm/packages/runtime-core-as",
399
413
  "name": "@pulse-compute/wasm-runtime-core-as",
400
- "version": "1.0.0-beta.1",
414
+ "version": "1.0.0-beta.3",
401
415
  "documentation": "docs/packages/implementation-packages.md",
402
416
  "role": "implementation",
403
417
  "tier": "implementation",
@@ -411,7 +425,7 @@
411
425
  {
412
426
  "dir": "wasm/packages/schema-json",
413
427
  "name": "@pulse-compute/wasm-schema-json",
414
- "version": "1.0.0-beta.1",
428
+ "version": "1.0.0-beta.3",
415
429
  "documentation": "docs/packages/implementation-packages.md",
416
430
  "role": "implementation",
417
431
  "tier": "implementation",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": "pulse.public-site.v1",
3
- "releaseVersion": "1.0.0-beta.1",
3
+ "releaseVersion": "1.0.0-beta.3",
4
4
  "product": {
5
5
  "name": "Pulse",
6
6
  "eyebrow": "TypeScript in / inspectable Wasm out",
@@ -140,6 +140,10 @@
140
140
  "preview-scope": {
141
141
  "source": "docs/preview-scope.md",
142
142
  "label": "Beta scope"
143
+ },
144
+ "s3-package": {
145
+ "source": "docs/packages/s3.md",
146
+ "label": "S3"
143
147
  }
144
148
  },
145
149
  "sourceAliases": {
@@ -460,6 +464,9 @@
460
464
  "CHANGELOG.md": {
461
465
  "title": "Changelog",
462
466
  "order": 5
467
+ },
468
+ "docs/packages/s3.md": {
469
+ "order": 68
463
470
  }
464
471
  }
465
472
  },
@@ -1,14 +1,30 @@
1
1
  {
2
2
  "schemaVersion": "pulse.documentation-versions.v1",
3
- "latest": "1.0.0-beta.1",
3
+ "latest": "1.0.0-beta.3",
4
4
  "versions": [
5
+ {
6
+ "version": "1.0.0-beta.3",
7
+ "segment": "v1.0.0-beta.3",
8
+ "channel": "beta",
9
+ "releasedAt": "2026-09-14",
10
+ "status": "current",
11
+ "sourceManifest": "release/pulse-release-manifest.json"
12
+ },
13
+ {
14
+ "version": "1.0.0-beta.2",
15
+ "segment": "v1.0.0-beta.2",
16
+ "channel": "beta",
17
+ "releasedAt": "2026-09-13",
18
+ "status": "archived",
19
+ "sourceManifest": "release/documentation-site-archives/v1.0.0-beta.2/release-manifest.json"
20
+ },
5
21
  {
6
22
  "version": "1.0.0-beta.1",
7
23
  "segment": "v1.0.0-beta.1",
8
24
  "channel": "beta",
9
25
  "releasedAt": "2026-08-01",
10
- "status": "current",
11
- "sourceManifest": "release/pulse-release-manifest.json"
26
+ "status": "archived",
27
+ "sourceManifest": "release/documentation-site-archives/v1.0.0-beta.1/release-manifest.json"
12
28
  }
13
29
  ]
14
30
  }
@@ -46,7 +46,7 @@ pulse test --json
46
46
  | `canonical-native.wasm` | 2.2 KiB (2,212 bytes) | 2.0 KiB (2,058 bytes) | 7.0% |
47
47
 
48
48
  The executable documentation gate rebuilds and measures both variants on
49
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
49
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
50
50
  platform limits.
51
51
 
52
52
  ## Handler
@@ -11,10 +11,10 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@pulse-compute/cli": "1.0.0-beta.1",
17
+ "@pulse-compute/cli": "1.0.0-beta.3",
18
18
  "typescript": "5.9.3"
19
19
  }
20
20
  }
@@ -47,7 +47,7 @@ pulse test --json
47
47
  | `canonical-native.wasm` | 38.9 KiB (39,795 bytes) | 30.8 KiB (31,578 bytes) | 20.6% |
48
48
 
49
49
  The executable documentation gate rebuilds and measures both variants on
50
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
50
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
51
51
  platform limits.
52
52
 
53
53
  ## Handler
@@ -11,10 +11,10 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@pulse-compute/cli": "1.0.0-beta.1",
17
+ "@pulse-compute/cli": "1.0.0-beta.3",
18
18
  "typescript": "5.9.3"
19
19
  }
20
20
  }
@@ -47,7 +47,7 @@ pulse test --json
47
47
  | `canonical-native.wasm` | 5.0 KiB (5,117 bytes) | 4.2 KiB (4,349 bytes) | 15.0% |
48
48
 
49
49
  The executable documentation gate rebuilds and measures both variants on
50
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
50
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
51
51
  platform limits.
52
52
 
53
53
  ## Handler
@@ -11,10 +11,10 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@pulse-compute/cli": "1.0.0-beta.1",
17
+ "@pulse-compute/cli": "1.0.0-beta.3",
18
18
  "typescript": "5.9.3"
19
19
  }
20
20
  }
@@ -51,10 +51,10 @@ remains in the explicit reality profile.
51
51
  | Artifact | Default build | `--experimental-native-size` | Reduction |
52
52
  |---|---:|---:|---:|
53
53
  | `canonical-native.wasm` | 5.3 KiB (5,454 bytes) | 4.8 KiB (4,888 bytes) | 10.4% |
54
- | `bin/main.wasm` | 40.4 KiB (41,372 bytes) | 33.7 KiB (34,538 bytes) | 16.5% |
54
+ | `bin/main.wasm` | 41.8 KiB (42,806 bytes) | 34.6 KiB (35,420 bytes) | 17.3% |
55
55
 
56
56
  The executable documentation gate rebuilds and measures both variants on
57
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
57
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
58
58
  platform limits.
59
59
 
60
60
  ## Handler
@@ -11,12 +11,12 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/grip": "1.0.0-beta.1",
15
- "@pulse-compute/provider-fastly": "1.0.0-beta.1",
16
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/grip": "1.0.0-beta.3",
15
+ "@pulse-compute/provider-fastly": "1.0.0-beta.3",
16
+ "@pulse-compute/pulse": "1.0.0-beta.3"
17
17
  },
18
18
  "devDependencies": {
19
- "@pulse-compute/cli": "1.0.0-beta.1",
19
+ "@pulse-compute/cli": "1.0.0-beta.3",
20
20
  "typescript": "5.9.3"
21
21
  }
22
22
  }
@@ -49,10 +49,10 @@ remains in the explicit reality profile.
49
49
  | Artifact | Default build | `--experimental-native-size` | Reduction |
50
50
  |---|---:|---:|---:|
51
51
  | `canonical-native.wasm` | 2.1 KiB (2,200 bytes) | 2.1 KiB (2,101 bytes) | 4.5% |
52
- | `bin/main.wasm` | 28.9 KiB (29,602 bytes) | 25.3 KiB (25,953 bytes) | 12.3% |
52
+ | `bin/main.wasm` | 29.7 KiB (30,455 bytes) | 25.7 KiB (26,287 bytes) | 13.7% |
53
53
 
54
54
  The executable documentation gate rebuilds and measures both variants on
55
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
55
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
56
56
  platform limits.
57
57
 
58
58
  ## Handler
@@ -11,11 +11,11 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1",
15
- "@pulse-compute/provider-fastly": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3",
15
+ "@pulse-compute/provider-fastly": "1.0.0-beta.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@pulse-compute/cli": "1.0.0-beta.1",
18
+ "@pulse-compute/cli": "1.0.0-beta.3",
19
19
  "typescript": "5.9.3"
20
20
  }
21
21
  }
@@ -83,7 +83,7 @@ pulse test --json
83
83
  | `canonical-native.wasm` | 6.1 KiB (6,271 bytes) | 5.4 KiB (5,496 bytes) | 12.4% |
84
84
 
85
85
  The executable documentation gate rebuilds and measures both variants on
86
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
86
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
87
87
  platform limits.
88
88
 
89
89
  ## Router application
@@ -12,11 +12,11 @@
12
12
  "build": "pulse build"
13
13
  },
14
14
  "dependencies": {
15
- "@pulse-compute/runtime": "1.0.0-beta.1",
16
- "@pulse-compute/pulse": "1.0.0-beta.1"
15
+ "@pulse-compute/runtime": "1.0.0-beta.3",
16
+ "@pulse-compute/pulse": "1.0.0-beta.3"
17
17
  },
18
18
  "devDependencies": {
19
- "@pulse-compute/cli": "1.0.0-beta.1",
19
+ "@pulse-compute/cli": "1.0.0-beta.3",
20
20
  "typescript": "5.9.3"
21
21
  }
22
22
  }
@@ -11,11 +11,11 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/entities": "1.0.0-beta.1",
15
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/entities": "1.0.0-beta.3",
15
+ "@pulse-compute/pulse": "1.0.0-beta.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@pulse-compute/cli": "1.0.0-beta.1",
18
+ "@pulse-compute/cli": "1.0.0-beta.3",
19
19
  "typescript": "5.9.3"
20
20
  }
21
21
  }
@@ -59,7 +59,7 @@ pulse test --json
59
59
  | `canonical-native.wasm` | 38.4 KiB (39,358 bytes) | 30.6 KiB (31,313 bytes) | 20.4% |
60
60
 
61
61
  The executable documentation gate rebuilds and measures both variants on
62
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
62
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
63
63
  platform limits.
64
64
 
65
65
  ## Application
@@ -11,10 +11,10 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@pulse-compute/cli": "1.0.0-beta.1",
17
+ "@pulse-compute/cli": "1.0.0-beta.3",
18
18
  "typescript": "5.9.3"
19
19
  }
20
20
  }
@@ -53,7 +53,7 @@ pulse test --json
53
53
  | `canonical-native.wasm` | 2.5 KiB (2,589 bytes) | 2.4 KiB (2,418 bytes) | 6.6% |
54
54
 
55
55
  The executable documentation gate rebuilds and measures both variants on
56
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
56
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
57
57
  platform limits.
58
58
 
59
59
  ## Handler
@@ -11,10 +11,10 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/pulse": "1.0.0-beta.3"
15
15
  },
16
16
  "devDependencies": {
17
- "@pulse-compute/cli": "1.0.0-beta.1",
17
+ "@pulse-compute/cli": "1.0.0-beta.3",
18
18
  "typescript": "5.9.3"
19
19
  }
20
20
  }
@@ -70,7 +70,7 @@ pulse test --json
70
70
  | Final linked `canonical-native.wasm` | 23.1 KiB (23,647 bytes) | 22.9 KiB (23,461 bytes) | 0.8% |
71
71
 
72
72
  The executable documentation gate rebuilds and measures both variants on
73
- `1.0.0-beta.1`. These are uncompressed on-disk sizes, not transfer sizes or
73
+ `1.0.0-beta.3`. These are uncompressed on-disk sizes, not transfer sizes or
74
74
  platform limits. The first two rows are the exact primary and guest inputs
75
75
  recorded by `guest-link-report.json`; the last row is the validated output of
76
76
  the deterministic static link. Linked output is not the arithmetic sum of its
@@ -11,11 +11,11 @@
11
11
  "build": "pulse build"
12
12
  },
13
13
  "dependencies": {
14
- "@pulse-compute/jwt": "1.0.0-beta.1",
15
- "@pulse-compute/pulse": "1.0.0-beta.1"
14
+ "@pulse-compute/jwt": "1.0.0-beta.3",
15
+ "@pulse-compute/pulse": "1.0.0-beta.3"
16
16
  },
17
17
  "devDependencies": {
18
- "@pulse-compute/cli": "1.0.0-beta.1",
18
+ "@pulse-compute/cli": "1.0.0-beta.3",
19
19
  "typescript": "5.9.3"
20
20
  }
21
21
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulse-compute/cli",
3
- "version": "1.0.0-beta.1",
3
+ "version": "1.0.0-beta.3",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Pulse project CLI, configuration loader, and end-to-end workflow driver.",
6
6
  "type": "commonjs",
@@ -27,11 +27,11 @@
27
27
  "./documentation-site.json": "./documentation-site.json"
28
28
  },
29
29
  "dependencies": {
30
- "@pulse-compute/wasm-build-support": "1.0.0-beta.1",
31
- "@pulse-compute/wasm-compiler": "1.0.0-beta.1",
32
- "@pulse-compute/wasm-contracts": "1.0.0-beta.1",
33
- "@pulse-compute/wasm-host-runtime": "1.0.0-beta.1",
34
- "@pulse-compute/wasm-schema-json": "1.0.0-beta.1",
30
+ "@pulse-compute/wasm-build-support": "1.0.0-beta.3",
31
+ "@pulse-compute/wasm-compiler": "1.0.0-beta.3",
32
+ "@pulse-compute/wasm-contracts": "1.0.0-beta.3",
33
+ "@pulse-compute/wasm-host-runtime": "1.0.0-beta.3",
34
+ "@pulse-compute/wasm-schema-json": "1.0.0-beta.3",
35
35
  "typescript": "5.9.3"
36
36
  },
37
37
  "bin": {
@@ -68,7 +68,7 @@
68
68
  "url": "git+https://github.com/pulse-compute/pulse.git",
69
69
  "directory": "wasm/packages/cli"
70
70
  },
71
- "homepage": "https://pulsecompute.io/v1.0.0-beta.1/packages/cli/",
71
+ "homepage": "https://pulsecompute.io/v1.0.0-beta.3/packages/cli/",
72
72
  "bugs": {
73
73
  "url": "https://github.com/pulse-compute/pulse/issues"
74
74
  }