@wipcomputer/wip-ai-devops-toolbox 1.9.71-alpha.3 → 1.9.71-alpha.5
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,12 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 1.9.71-alpha.5 (2026-04-04)
|
|
4
|
+
|
|
5
|
+
wip-branch-guard: bump sub-tool to 1.9.71 so ldm install redeploys the updated guard from #314 and #315
|
|
6
|
+
|
|
7
|
+
## 1.9.71-alpha.4 (2026-04-04)
|
|
8
|
+
|
|
9
|
+
Guard: allow cp/mv/mkdir hotfixes to deployed extensions
|
|
10
|
+
|
|
3
11
|
## 1.9.71-alpha.3 (2026-04-04)
|
|
4
12
|
|
|
5
|
-
Guard: allow
|
|
13
|
+
Guard: allow cp/mv/mkdir hotfixes to deployed extensions (.openclaw|.ldm)/extensions/, add .ldm/extensions/ to shared-state patterns for symmetry with .openclaw/extensions/
|
|
6
14
|
|
|
7
|
-
## 1.9.71-alpha.2 (2026-04-
|
|
15
|
+
## 1.9.71-alpha.2 (2026-04-03)
|
|
8
16
|
|
|
9
|
-
Guard: allow
|
|
17
|
+
Guard: allow bootstrap in zero-commit repos
|
|
10
18
|
|
|
11
19
|
## 1.9.71-alpha.1 (2026-04-01)
|
|
12
20
|
|
package/package.json
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Release Notes: wip-branch-guard v1.9.64
|
|
2
|
+
|
|
3
|
+
**One-line summary of what this release does**
|
|
4
|
+
|
|
5
|
+
Tell the story. What was broken or missing? What did we build? Why does the user care?
|
|
6
|
+
Write at least one real paragraph of prose. Not just bullets. The release notes gate
|
|
7
|
+
will block if there is no narrative. Bullets are fine for details, but the story comes first.
|
|
8
|
+
|
|
9
|
+
## The story
|
|
10
|
+
|
|
11
|
+
(Write a paragraph here. What was the problem? What does this release fix? Why does it matter?
|
|
12
|
+
This is what users read. Make it worth reading.)
|
|
13
|
+
|
|
14
|
+
## Issues closed
|
|
15
|
+
|
|
16
|
+
- #296
|
|
17
|
+
- #295
|
|
18
|
+
|
|
19
|
+
## How to verify
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
# Commands to test the changes
|
|
23
|
+
```
|
|
@@ -134,6 +134,9 @@ const ALLOWED_BASH_PATTERNS = [
|
|
|
134
134
|
/\bldm\s+(install|init|doctor|stack|updates)\b/, // LDM OS commands modify ~/.ldm/, not the repo
|
|
135
135
|
/\brm\s+.*\.ldm\/state\//, // cleaning LDM state files only, not repo files
|
|
136
136
|
/\brm\s+.*\.(openclaw|ldm)\/extensions\//, // cleaning deployed extensions (managed by ldm install, not source code)
|
|
137
|
+
/\bcp\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: cp plugin builds to extensions (ldm install is canonical)
|
|
138
|
+
/\bmv\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: mv within extensions
|
|
139
|
+
/\bmkdir\s+.*\.(openclaw|ldm)\/extensions\//, // hotfix deploy: create extension dirs
|
|
137
140
|
/\bclaude\s+mcp\b/, // MCP registration, not repo files
|
|
138
141
|
/\bmkdir\s+.*\.worktrees\b/, // creating .worktrees/ directory is part of the process
|
|
139
142
|
/\brm\s+.*\.trash-approved-to-rm/, // Parker's approved-for-deletion folder (only Parker moves files here, agents only rm)
|
|
@@ -459,7 +462,8 @@ This is a warning, not a block. If you need to create it here, retry.`);
|
|
|
459
462
|
/\.ldm\/messages\//, // Agent inbox (bridge messages)
|
|
460
463
|
/\.ldm\/templates\//, // Templates (deployed by installer)
|
|
461
464
|
/\.claude\/rules\//, // Deployed rules
|
|
462
|
-
/\.openclaw\/extensions\//, // Deployed extensions (runtime, not source)
|
|
465
|
+
/\.openclaw\/extensions\//, // Deployed OpenClaw extensions (runtime, not source)
|
|
466
|
+
/\.ldm\/extensions\//, // Deployed LDM extensions (runtime, not source; symmetry with openclaw)
|
|
463
467
|
];
|
|
464
468
|
|
|
465
469
|
if (filePath && SHARED_STATE_PATTERNS.some(p => p.test(filePath))) {
|