livepilot 1.20.0 → 1.20.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,44 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.20.1 — CI hardening: Windows UTF-8 encoding + .amxd ping drift (April 24 2026)
4
+
5
+ Patch release fixing CI regressions that v1.20.0 shipped with (caught
6
+ by the actual CI run post-tag). No runtime behavior changes — tests
7
+ pass on every platform, and the .amxd ping now matches the repo
8
+ version. Zero new tests (both fixes are mechanical), zero regressions.
9
+
10
+ ### Fixes
11
+
12
+ - **Windows-only `UnicodeDecodeError` in `tests/test_creative_director.py`.**
13
+ 27 bare `Path.read_text()` calls used the locale default encoding.
14
+ On Windows that's cp1252, which chokes on the em-dashes (—), arrows
15
+ (→), and smart quotes v1.20 added to `SKILL.md` and the new
16
+ `phase-6-execution.md` reference. All 27 calls now pass
17
+ `encoding="utf-8"` explicitly. Cross-platform hygiene, applies
18
+ beyond the trigger case — any future markdown additions with
19
+ non-ASCII chars are now safe on Windows.
20
+
21
+ - **`LivePilot_Analyzer.amxd` ping reported v1.17.5 for 9 releases.**
22
+ The CI `amxd-freeze-drift` job has been red since v1.18.0 because
23
+ nobody re-froze the .amxd in Max Editor after the JS source bumps.
24
+ Users of v1.18.0-v1.20.0 got `{ok: true, version: "1.17.5"}` from
25
+ the bridge ping regardless of the installed version. Per
26
+ `feedback_amxd_safe_binary_patch` memory, same-length version
27
+ strings can be patched in-place without Max re-export. Both
28
+ occurrences in the binary updated to 1.20.1 (file size unchanged);
29
+ the JS source `livepilot_bridge.js` VERSION constant also bumped
30
+ so future clean freezes stay consistent.
31
+
32
+ ### CI status after this release
33
+
34
+ | Job | Pre-v1.20.1 | v1.20.1 |
35
+ |---|---|---|
36
+ | python-tests (ubuntu, macos) × {3.11, 3.12} | ✓ | ✓ |
37
+ | python-tests (windows) × {3.11, 3.12} | ✗ UnicodeDecodeError | ✓ |
38
+ | metadata-drift | ✓ | ✓ |
39
+ | amxd-freeze-drift | ✗ stuck at 1.17.5 | ✓ |
40
+ | js-entrypoint | ✓ | ✓ |
41
+
3
42
  ## 1.20.0 — Item C phased cutover: 10 new semantic moves + Director Phase 6 rewrite (April 24 2026)
4
43
 
5
44
  Implements the plan in `docs/plans/v1.20-structural-plan.md`. Ships 10
Binary file
@@ -34,7 +34,7 @@ outlets = 2; // 0: to udpsend (responses), 1: to buffer~/status
34
34
  // Single source of truth for the bridge version — bumped alongside the
35
35
  // rest of the release manifest. Surfaced in the UI via messnamed("livepilot_version", ...)
36
36
  // so the frozen .amxd visibly reports which build it was last exported from.
37
- var VERSION = "1.17.5";
37
+ var VERSION = "1.20.1";
38
38
 
39
39
  // ── State ──────────────────────────────────────────────────────────────────
40
40
 
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.20.0"
2
+ __version__ = "1.20.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.20.0",
3
+ "version": "1.20.1",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
5
  "description": "Agentic production system for Ableton Live 12 — 429 tools, 53 domains. Device atlas (1305 devices), sample engine (Splice + browser + filesystem), auto-composition, spectral perception, technique memory, creative intelligence (12 engines)",
6
6
  "author": "Pilot Studio",
@@ -5,7 +5,7 @@ Entry point for the ControlSurface. Ableton calls create_instance(c_instance)
5
5
  when this script is selected in Preferences > Link, Tempo & MIDI.
6
6
  """
7
7
 
8
- __version__ = "1.20.0"
8
+ __version__ = "1.20.1"
9
9
 
10
10
  from _Framework.ControlSurface import ControlSurface
11
11
  from . import router
package/server.json CHANGED
@@ -6,12 +6,12 @@
6
6
  "url": "https://github.com/dreamrec/LivePilot",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.20.0",
9
+ "version": "1.20.1",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",
13
13
  "identifier": "livepilot",
14
- "version": "1.20.0",
14
+ "version": "1.20.1",
15
15
  "transport": {
16
16
  "type": "stdio"
17
17
  }