pmx-canvas 0.1.0 → 0.1.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 +18 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,24 @@
|
|
|
3
3
|
All notable changes to `pmx-canvas` are documented here. This project follows
|
|
4
4
|
[Semantic Versioning](https://semver.org/).
|
|
5
5
|
|
|
6
|
+
## [0.1.1] - 2026-04-24
|
|
7
|
+
|
|
8
|
+
### Changed
|
|
9
|
+
|
|
10
|
+
- Bumped CI action versions to Node 24-compatible releases:
|
|
11
|
+
`actions/checkout@v5`, `actions/setup-node@v5`, `actions/upload-artifact@v5`,
|
|
12
|
+
and publish Node runtime to `24`.
|
|
13
|
+
|
|
14
|
+
### Internal
|
|
15
|
+
|
|
16
|
+
- Hardened end-to-end test helpers (`addNode`, `addEdge`, `addGraph`,
|
|
17
|
+
`addJsonRender`, `createGroup`, `buildArtifact`) via a shared `postOrThrow`
|
|
18
|
+
primitive that surfaces HTTP failures and server validation errors instead
|
|
19
|
+
of silently returning `undefined`. Prevents the class of "missing edge
|
|
20
|
+
endpoint" cascade that caused the late-cycle red CI on the v0.1.0 branch.
|
|
21
|
+
|
|
22
|
+
[0.1.1]: https://github.com/pskoett/pmx-canvas/releases/tag/v0.1.1
|
|
23
|
+
|
|
6
24
|
## [0.1.0] - 2026-04-21
|
|
7
25
|
|
|
8
26
|
Initial public release.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pmx-canvas",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Spatial canvas workbench for coding agents — infinite 2D canvas with agent-native CLI, MCP integration, nodes, edges, file watching, and snapshots",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./src/server/index.ts",
|