@wipcomputer/wip-ai-devops-toolbox 1.9.43 → 1.9.44
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 +25 -0
- package/SKILL.md +1 -1
- package/package.json +1 -1
- package/tools/deploy-public/package.json +1 -1
- package/tools/post-merge-rename/package.json +1 -1
- package/tools/wip-branch-guard/package.json +1 -1
- package/tools/wip-file-guard/package.json +1 -1
- package/tools/wip-license-guard/package.json +1 -1
- package/tools/wip-license-hook/package.json +1 -1
- package/tools/wip-readme-format/package.json +1 -1
- package/tools/wip-release/core.mjs +1 -1
- package/tools/wip-release/package.json +1 -1
- package/tools/wip-repo-init/package.json +1 -1
- package/tools/wip-repo-permissions-hook/package.json +1 -1
- package/tools/wip-repos/package.json +1 -1
- package/tools/wip-universal-installer/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -31,6 +31,31 @@
|
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
|
|
34
|
+
|
|
35
|
+
## 1.9.44 (2026-03-17)
|
|
36
|
+
|
|
37
|
+
# Guard non-repo files fix + UTC date fix
|
|
38
|
+
|
|
39
|
+
Two bugs fixed in one PR.
|
|
40
|
+
|
|
41
|
+
## Bug 1: Guard blocks files outside git repos (#77)
|
|
42
|
+
|
|
43
|
+
**Problem:** When Write/Edit targets a file outside any git repo (e.g. `~/.claude/plans/`), `findRepoRoot()` returns null. The guard fell back to CWD (`~/.openclaw` on main) and blocked the operation. Files outside repos aren't the guard's concern.
|
|
44
|
+
|
|
45
|
+
**Fix:** If `findRepoRoot(filePath)` returns null for Write/Edit operations, allow immediately. The guard only protects git repos from direct-on-main edits.
|
|
46
|
+
|
|
47
|
+
**File:** `tools/wip-branch-guard/guard.mjs`
|
|
48
|
+
|
|
49
|
+
## Bug 2: UTC date mismatch in wip-release
|
|
50
|
+
|
|
51
|
+
**Problem:** Dev-update files are named with local date (e.g. `2026-03-16--cc-mini--...md`). But `new Date().toISOString().split('T')[0]` returns UTC date. After midnight UTC (4 PM PST), the dates diverge. Release notes gate fails to find today's dev-update.
|
|
52
|
+
|
|
53
|
+
**Fix:** Replaced all three instances of `toISOString()` date extraction with explicit local date construction using `getFullYear()/getMonth()/getDate()`.
|
|
54
|
+
|
|
55
|
+
**Files:**
|
|
56
|
+
- `tools/wip-release/cli.js` (line 80, dev-update detection)
|
|
57
|
+
- `tools/wip-release/core.mjs` (line 92, CHANGELOG date)
|
|
58
|
+
- `tools/wip-release/core.mjs` (line 582, product docs sync date)
|
|
34
59
|
|
|
35
60
|
## 1.9.43 (2026-03-17)
|
|
36
61
|
|
package/SKILL.md
CHANGED
|
@@ -5,7 +5,7 @@ license: MIT
|
|
|
5
5
|
interface: [cli, module, mcp, skill, hook, plugin]
|
|
6
6
|
metadata:
|
|
7
7
|
display-name: "WIP AI DevOps Toolbox"
|
|
8
|
-
version: "1.9.
|
|
8
|
+
version: "1.9.44"
|
|
9
9
|
homepage: "https://github.com/wipcomputer/wip-ai-devops-toolbox"
|
|
10
10
|
author: "Parker Todd Brooks"
|
|
11
11
|
category: dev-tools
|
package/package.json
CHANGED
|
@@ -499,7 +499,7 @@ function getToolDisplayName(toolPath) {
|
|
|
499
499
|
|
|
500
500
|
/**
|
|
501
501
|
* Check that the interface coverage table in README.md and SKILL.md
|
|
502
|
-
* matches the actual interfaces detected in tools
|
|
502
|
+
* matches the actual interfaces detected in tools/* subdirectories.
|
|
503
503
|
* Returns { missing: string[], ok: boolean, skipped: boolean }.
|
|
504
504
|
*/
|
|
505
505
|
function checkInterfaceCoverage(repoPath) {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wipcomputer/universal-installer",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.44",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "The Universal Interface specification for agent-native software. Teaches your AI how to build repos with every interface: CLI, Module, MCP Server, OpenClaw Plugin, Skill, Claude Code Hook.",
|
|
6
6
|
"main": "detect.mjs",
|