sproutboat 0.11.7 → 0.11.9

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
@@ -8,6 +8,43 @@ a breaking change.
8
8
  Reconstructed from git history on 2026-09-03 for everything through v0.4.11;
9
9
  maintained going forward by the `release` skill.
10
10
 
11
+ ## [0.11.9] - 2026-09-17
12
+ ### Fixed
13
+ - Bumped `@sproutboat/toolchain` to `^0.4.9` and `@sproutboat/runtime` to
14
+ `^0.9.6`. `0.11.6`'s toolchain pin (`^0.4.5` since `0.4.2`) predated a
15
+ native R2 size-gating feature that shipped in `0.4.6`/`0.4.7` with a
16
+ misplaced `#endif` in the generated C++ guard, breaking every R2-free
17
+ native build with a compiler error. The fix landed as `0.4.8`, but that
18
+ version got stuck permanently conflicted on npm after an interrupted
19
+ trusted-publish attempt, so `0.4.9`/`0.9.6` revert the feature outright
20
+ instead: R2 transfer support is native code again, always compiled in
21
+ with 404 stubs where unused, same as before it existed. It saved ~11KB
22
+ of `__text` (~1.3% of a typical binary) and didn't even change the
23
+ shipped file size on macOS, since `__TEXT` is page-aligned there — not
24
+ worth the guard-placement bug class it introduced.
25
+
26
+ ## [0.11.8] - 2026-09-17
27
+ ### Fixed
28
+ - Bumped `@sproutboat/runtime` to `^0.9.4`, fixing broker-backed
29
+ native-fetch builds after the direct R2 download ABI gained an `ETag`
30
+ accessor.
31
+
32
+ ## [0.11.7] - 2026-09-16
33
+ ### Added
34
+ - Direct R2 transfers now route through the local dev broker, so `sproutboat
35
+ dev` exercises the same upload/download path a deployed sprout uses
36
+ instead of a separate dev-only stand-in. Documented with a new R2
37
+ multipart upload guide.
38
+
39
+ ### Fixed
40
+ - Direct transfer connections no longer produce spurious log noise.
41
+ - Bumped `@sproutboat/toolchain` to `^0.4.2`, updating the pinned Porffor
42
+ compiler to alpha 6 and removing a promise-resolution workaround alpha 6
43
+ superseded.
44
+
45
+ ### Changed
46
+ - CI now cross-builds the macOS x64 CLI on a macOS 14 runner.
47
+
11
48
  ## [0.11.6] - 2026-09-15
12
49
  ### Fixed
13
50
  - The 100% CPU livelock on a `fetch` handler that resolves a promise with a
@@ -544,7 +581,11 @@ its own package.
544
581
  - Renamed the package to `sproutboat` (was `@sproutboat/cli`); dropped the
545
582
  `sprout` bin alias in favour of a user-defined shell alias.
546
583
 
547
- [Unreleased]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.5...HEAD
584
+ [Unreleased]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.9...HEAD
585
+ [0.11.9]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.8...v0.11.9
586
+ [0.11.8]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.7...v0.11.8
587
+ [0.11.7]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.6...v0.11.7
588
+ [0.11.6]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.5...v0.11.6
548
589
  [0.11.5]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.4...v0.11.5
549
590
  [0.11.4]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.3...v0.11.4
550
591
  [0.11.3]: https://github.com/baronunread/sproutboat-cli/compare/v0.11.2...v0.11.3
package/SURFACE.md CHANGED
@@ -3,7 +3,7 @@
3
3
  > Generated by `src/surface.test.ts` from `src/surface.ts` + the pinned
4
4
  > toolchain constants. Do not edit by hand — run `UPDATE_SURFACE=1 bun test`.
5
5
 
6
- **Package:** `sproutboat` 0.11.7 · runs on Bun (use `bunx`, not `npx`)
6
+ **Package:** `sproutboat` 0.11.9 · runs on Bun (use `bunx`, not `npx`)
7
7
 
8
8
  ## Commands
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sproutboat",
3
- "version": "0.11.7",
3
+ "version": "0.11.9",
4
4
  "description": "Wrangler-shaped CLI for Sproutboat. Deploys workers to any control plane via --api-url / SPROUTBOAT_API_URL.",
5
5
  "keywords": [
6
6
  "cli",
@@ -64,8 +64,8 @@
64
64
  "@sproutboat/artifact": "^0.2.0",
65
65
  "@sproutboat/assets": "^0.2.0",
66
66
  "@sproutboat/config": "^0.3.0",
67
- "@sproutboat/runtime": "^0.9.3",
68
- "@sproutboat/toolchain": "^0.4.5",
67
+ "@sproutboat/runtime": "^0.9.6",
68
+ "@sproutboat/toolchain": "^0.4.9",
69
69
  "@sproutboat/wire": "^0.7.0",
70
70
  "esbuild": "^0.28.2"
71
71
  },
@@ -78,10 +78,10 @@
78
78
  "typescript": "7.0.2"
79
79
  },
80
80
  "optionalDependencies": {
81
- "@sproutboat/cli-darwin-arm64": "0.11.7",
82
- "@sproutboat/cli-darwin-x64": "0.11.7",
83
- "@sproutboat/cli-linux-arm64": "0.11.7",
84
- "@sproutboat/cli-linux-x64": "0.11.7"
81
+ "@sproutboat/cli-darwin-arm64": "0.11.9",
82
+ "@sproutboat/cli-darwin-x64": "0.11.9",
83
+ "@sproutboat/cli-linux-arm64": "0.11.9",
84
+ "@sproutboat/cli-linux-x64": "0.11.9"
85
85
  },
86
86
  "engines": {
87
87
  "node": ">=18"