@gotgenes/pi-permission-system 5.18.3 → 6.0.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +21 -0
  2. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -5,6 +5,27 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [6.0.0](https://github.com/gotgenes/pi-packages/compare/pi-permission-system-v5.18.3...pi-permission-system-v6.0.0) (2026-05-19)
9
+
10
+
11
+ ### ⚠ BREAKING CHANGES
12
+
13
+ * All @earendil-works/pi-* peerDependencies and devDependencies now require >=0.75.0, aligning with Pi's Node 22 minimum.
14
+ * Minimum supported Node.js version is now >=22, aligning with Pi v0.75.0. tsconfig target raised from ES2023 to ES2024.
15
+ - ES2024 APIs (Promise.withResolvers, Object.groupBy, Map.groupBy, Array.fromAsync) are now allowed.
16
+ - @types/node catalog aligned to ^22.15.3.
17
+ - pi-autoformat now declares engines.node for consistency.
18
+
19
+ ### Features
20
+
21
+ * raise minimum Node.js version to 22 and bump tsconfig target to ES2024 ([98a5b01](https://github.com/gotgenes/pi-packages/commit/98a5b01ca20aa1feed14a60bfa7bb9e082c9914b))
22
+ * raise minimum Pi dependency to v0.75.0 ([1068329](https://github.com/gotgenes/pi-packages/commit/10683290d2a789880848bf7eb093d4307b6eff40))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * unquote rumdl globs so shell expands them ([3b13a20](https://github.com/gotgenes/pi-packages/commit/3b13a20b2822db1e85a9d7546e0a21a63451d975))
28
+
8
29
  ## [5.18.3](https://github.com/gotgenes/pi-packages/compare/pi-permission-system-v5.18.2...pi-permission-system-v5.18.3) (2026-05-17)
9
30
 
10
31
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-permission-system",
3
- "version": "5.18.3",
3
+ "version": "6.0.0",
4
4
  "description": "Permission enforcement extension for the Pi coding agent.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -41,7 +41,7 @@
41
41
  "url": "https://github.com/gotgenes/pi-packages/issues"
42
42
  },
43
43
  "engines": {
44
- "node": ">=20"
44
+ "node": ">=22"
45
45
  },
46
46
  "publishConfig": {
47
47
  "access": "public"
@@ -52,14 +52,14 @@
52
52
  ]
53
53
  },
54
54
  "peerDependencies": {
55
- "@earendil-works/pi-coding-agent": "*",
56
- "@earendil-works/pi-tui": "*"
55
+ "@earendil-works/pi-coding-agent": ">=0.75.0",
56
+ "@earendil-works/pi-tui": ">=0.75.0"
57
57
  },
58
58
  "devDependencies": {
59
59
  "@biomejs/biome": "^2.4.14",
60
- "@earendil-works/pi-coding-agent": "^0.74.0",
61
- "@earendil-works/pi-tui": "^0.74.0",
62
- "@types/node": "^25.6.2",
60
+ "@earendil-works/pi-coding-agent": ">=0.75.0",
61
+ "@earendil-works/pi-tui": ">=0.75.0",
62
+ "@types/node": "^22.15.3",
63
63
  "typescript": "^6.0.3",
64
64
  "vitest": "^4.1.5",
65
65
  "rumdl": "^0.1.93"
@@ -72,7 +72,7 @@
72
72
  "check": "tsc --noEmit",
73
73
  "test": "vitest run",
74
74
  "test:watch": "vitest",
75
- "lint:md": "rumdl check '*.md' 'docs/**/*.md' '.pi/prompts/**/*.md'",
75
+ "lint:md": "rumdl check *.md docs/**/*.md",
76
76
  "lint": "biome check . && pnpm run lint:md"
77
77
  }
78
78
  }