pm-graph 2026.6.14 → 2026.7.7
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 +13 -2
- package/manifest.json +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 2026.7.6 - 2026-07-06
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fix release CI ordering (publish-before-tag) ([pm-graph-cb1l](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-cb1l.toon))
|
|
8
|
+
|
|
9
|
+
### Other
|
|
10
|
+
|
|
11
|
+
- Align Node engine with pm CLI runtime ([pm-graph-yrkr](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-yrkr.toon))
|
|
12
|
+
- Regenerate CHANGELOG after pm close item ([pm-graph-ozh8](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-ozh8.toon))
|
|
13
|
+
|
|
3
14
|
## 2026.6.9-1 - 2026-06-09
|
|
4
15
|
|
|
5
16
|
### Added
|
|
@@ -34,7 +45,7 @@
|
|
|
34
45
|
### Other
|
|
35
46
|
|
|
36
47
|
- pm-graph critical-path: longest blocking chain ([pm-graph-f1k9](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-f1k9.toon))
|
|
37
|
-
- pm-graph path: shortest dependency path
|
|
48
|
+
- pm-graph path: shortest dependency path (BFS) ([pm-graph-vtlu](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-vtlu.toon))
|
|
38
49
|
- pm-graph cycles: detect dependency cycles, CI exit code ([pm-graph-h0xs](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-h0xs.toon))
|
|
39
50
|
- pm-graph analyze: offline graph-health report ([pm-graph-d9tz](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-d9tz.toon))
|
|
40
51
|
- Decision: analytics operate on STRUCTURAL edges only ([pm-graph-89nw](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/tasks/pm-graph-89nw.toon))
|
|
@@ -43,7 +54,7 @@
|
|
|
43
54
|
|
|
44
55
|
### Added
|
|
45
56
|
|
|
46
|
-
- Add multi-format graph exporter
|
|
57
|
+
- Add multi-format graph exporter (pm graph export): cypher, mermaid, dot, json-graph ([pm-graph-xii9](https://github.com/unbraind/pm-graph/blob/main/.agents/pm/features/pm-graph-xii9.toon))
|
|
47
58
|
|
|
48
59
|
## 2026.5.28 - 2026-05-28
|
|
49
60
|
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-graph",
|
|
3
|
-
"version": "2026.
|
|
3
|
+
"version": "2026.7.7",
|
|
4
4
|
"description": "Knowledge graph and dependency graph extension for pm CLI workspaces, with optional Neo4j sync.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/node": "^25.9.2",
|
|
28
|
-
"@unbrained/pm-cli": "^2026.
|
|
29
|
-
"pm-changelog": "^2026.6.
|
|
28
|
+
"@unbrained/pm-cli": "^2026.7.5",
|
|
29
|
+
"pm-changelog": "^2026.6.30",
|
|
30
30
|
"typescript": "^6.0.3"
|
|
31
31
|
},
|
|
32
32
|
"files": [
|
|
@@ -46,10 +46,10 @@
|
|
|
46
46
|
"main": "dist/index.js",
|
|
47
47
|
"types": "dist/index.d.ts",
|
|
48
48
|
"peerDependencies": {
|
|
49
|
-
"@unbrained/pm-cli": ">=2026.
|
|
49
|
+
"@unbrained/pm-cli": ">=2026.7.5"
|
|
50
50
|
},
|
|
51
51
|
"engines": {
|
|
52
|
-
"node": ">=
|
|
52
|
+
"node": ">=22.18.0"
|
|
53
53
|
},
|
|
54
54
|
"author": "@unbraind",
|
|
55
55
|
"license": "MIT",
|