@mentiko/pty-mgr 1.3.0 → 1.3.1

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
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.3.1 - 2026-07-02
4
+
5
+ ### Fixed
6
+
7
+ - macOS binaries are now compiled on a macOS runner and ad-hoc code-signed, so
8
+ they carry a valid signature and Apple Silicon (AMFI) no longer SIGKILLs them
9
+ on launch (`killed`). They were previously cross-compiled on Linux, whose
10
+ embedded linker signature is rejected by macOS. The `curl | sh` installer also
11
+ re-signs the binary on download as a fallback for older releases.
12
+
3
13
  ## 1.3.0 - 2026-07-02
4
14
 
5
15
  ### Added
@@ -41,7 +41,7 @@ import {
41
41
  } from "node:fs";
42
42
 
43
43
  // kept in sync by scripts/version-sync.cjs (rewrites this literal on release)
44
- export const VERSION = "1.3.0";
44
+ export const VERSION = "1.3.1";
45
45
  import xterm from "@xterm/headless";
46
46
  import { SerializeAddon } from "@xterm/addon-serialize";
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mentiko/pty-mgr",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "PTY session manager with terminal emulation for programmatic session control.",
5
5
  "type": "module",
6
6
  "main": "lib/pty-manager.mjs",
@@ -26,10 +26,10 @@
26
26
  "@xterm/headless": "^6.0.0"
27
27
  },
28
28
  "optionalDependencies": {
29
- "@mentiko/pty-mgr-linux-x64": "1.3.0",
30
- "@mentiko/pty-mgr-linux-arm64": "1.3.0",
31
- "@mentiko/pty-mgr-darwin-x64": "1.3.0",
32
- "@mentiko/pty-mgr-darwin-arm64": "1.3.0"
29
+ "@mentiko/pty-mgr-linux-x64": "1.3.1",
30
+ "@mentiko/pty-mgr-linux-arm64": "1.3.1",
31
+ "@mentiko/pty-mgr-darwin-x64": "1.3.1",
32
+ "@mentiko/pty-mgr-darwin-arm64": "1.3.1"
33
33
  },
34
34
  "engines": {
35
35
  "bun": ">=1.0"