treeship 0.10.0 → 0.10.2

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/README.md CHANGED
@@ -12,7 +12,16 @@ npm install -g treeship
12
12
 
13
13
  This package downloads the prebuilt Treeship CLI binary for your platform. No Rust required.
14
14
 
15
- **Platform support:** macOS and Linux. Windows users: install via WSL (a native Windows binary is planned for v0.10.0). The package's `preinstall` script will exit with a clear message on Windows rather than yielding a broken install.
15
+ **Platform support:**
16
+
17
+ | Platform | Status |
18
+ | --- | --- |
19
+ | macOS arm64 / x64 | Supported |
20
+ | Linux x86_64 (any distro, glibc or musl) | Supported as of v0.10.1. Single static binary covers Ubuntu, Debian, Fedora, RHEL/Rocky, Amazon Linux, Alpine. |
21
+ | Linux ARM64 | Not yet shipped. |
22
+ | Windows | Not supported natively. Use WSL. |
23
+
24
+ The `preinstall` script exits with a clear message on Windows rather than yielding a broken install. The Linux build is statically linked against musl (verified at release time), so there is no GLIBC requirement; if you see `GLIBC_2.39 not found`, you have a pre-0.10.1 install — `npm install -g treeship@latest` to upgrade.
16
25
 
17
26
  ## Quick start
18
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "treeship",
3
- "version": "0.10.0",
3
+ "version": "0.10.2",
4
4
  "description": "Portable trust receipts for agent workflows",
5
5
  "bin": {
6
6
  "treeship": "./bin/treeship.js"
@@ -19,9 +19,9 @@
19
19
  "linux"
20
20
  ],
21
21
  "optionalDependencies": {
22
- "@treeship/cli-linux-x64": "0.10.0",
23
- "@treeship/cli-darwin-arm64": "0.10.0",
24
- "@treeship/cli-darwin-x64": "0.10.0"
22
+ "@treeship/cli-linux-x64": "0.10.2",
23
+ "@treeship/cli-darwin-arm64": "0.10.2",
24
+ "@treeship/cli-darwin-x64": "0.10.2"
25
25
  },
26
26
  "license": "Apache-2.0",
27
27
  "repository": {
@@ -1,19 +1,22 @@
1
1
  // Treeship npm wrapper -- preinstall platform guard.
2
2
  //
3
- // We only ship binaries for darwin-arm64, darwin-x64, and linux-x64 at v0.9.3.
3
+ // We ship prebuilt binaries for darwin-arm64, darwin-x64, and linux-x64.
4
+ // As of v0.10.1 the Linux binary is statically linked against musl, so it
5
+ // runs on every glibc and musl distribution we know of (Ubuntu, Debian,
6
+ // Fedora, RHEL/Rocky, Amazon Linux, Alpine, distroless, busybox).
7
+ //
4
8
  // Without this guard, a Windows user running `npm install -g treeship` would
5
- // successfully install the wrapper, then hit a confusing "binary not found"
6
- // error the first time they ran `treeship`. Fail loud, fail early.
9
+ // install the wrapper, then hit a confusing "binary not found" error the
10
+ // first time they ran `treeship`. Fail loud, fail early on Windows.
7
11
 
8
12
  if (process.platform === 'win32') {
9
13
  process.stderr.write(
10
14
  '\n' +
11
- 'Treeship v' + require('../package.json').version + ' does not support Windows natively yet.\n' +
12
- '\n' +
13
- 'Use WSL (Windows Subsystem for Linux), or wait for v0.10.0 which adds a\n' +
14
- 'native Windows binary and a PowerShell setup path.\n' +
15
+ 'Treeship v' + require('../package.json').version + ' does not support Windows natively.\n' +
15
16
  '\n' +
16
- 'See https://github.com/zerkerlabs/treeship for status.\n' +
17
+ 'Use WSL (Windows Subsystem for Linux). A native Windows binary is not on\n' +
18
+ 'the current roadmap; if you need one, please open an issue describing\n' +
19
+ 'your use case at https://github.com/zerkerlabs/treeship/issues.\n' +
17
20
  '\n'
18
21
  );
19
22
  process.exit(1);