@gotgenes/pi-permission-system 10.10.0 → 10.10.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
@@ -5,6 +5,13 @@ 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
+ ## [10.10.1](https://github.com/gotgenes/pi-packages/compare/pi-permission-system-v10.10.0...pi-permission-system-v10.10.1) (2026-06-11)
9
+
10
+
11
+ ### Documentation
12
+
13
+ * fix bash rule precedence examples and wording ([#387](https://github.com/gotgenes/pi-packages/issues/387)) ([9e18d6f](https://github.com/gotgenes/pi-packages/commit/9e18d6faab6e3ceaa1a8839f5b6753d5457a2a28))
14
+
8
15
  ## [10.10.0](https://github.com/gotgenes/pi-packages/compare/pi-permission-system-v10.9.0...pi-permission-system-v10.10.0) (2026-06-10)
9
16
 
10
17
 
@@ -23,9 +23,9 @@
23
23
  "edit": "deny",
24
24
  "bash": {
25
25
  "*": "ask",
26
+ "git *": "ask",
26
27
  "git status": "allow",
27
- "git diff": "allow",
28
- "git *": "ask"
28
+ "git diff": "allow"
29
29
  },
30
30
  "mcp": { "*": "ask", "mcp_status": "allow", "mcp_list": "allow" },
31
31
  "skill": { "*": "ask" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gotgenes/pi-permission-system",
3
- "version": "10.10.0",
3
+ "version": "10.10.1",
4
4
  "description": "Permission enforcement extension for the Pi coding agent.",
5
5
  "type": "module",
6
6
  "exports": {
@@ -86,9 +86,9 @@
86
86
  "edit": "deny",
87
87
  "bash": {
88
88
  "*": "ask",
89
+ "git *": "ask",
89
90
  "git status": "allow",
90
- "git diff": "allow",
91
- "git *": "ask"
91
+ "git diff": "allow"
92
92
  },
93
93
  "mcp": { "*": "ask", "mcp_status": "allow", "exa:*": "allow" },
94
94
  "skill": { "*": "ask", "librarian": "allow" },