@coo-quack/sensitive-canary 0.4.2 → 0.4.4
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +27 -0
- package/README.md +2 -2
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.4.4 (2026-03-12)
|
|
4
|
+
|
|
5
|
+
### Improvements
|
|
6
|
+
|
|
7
|
+
- Migrate from npm to pnpm
|
|
8
|
+
- Add Renovate configuration with automerge on CI success
|
|
9
|
+
- Add pnpm version specification for GitHub Actions
|
|
10
|
+
|
|
11
|
+
### Documentation
|
|
12
|
+
|
|
13
|
+
- Update install instructions from npm to pnpm
|
|
14
|
+
- Capitalize project title to Sensitive Canary across docs
|
|
15
|
+
|
|
16
|
+
### Fixes
|
|
17
|
+
|
|
18
|
+
- Fix capitalization in project title
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
|
|
22
|
+
## v0.4.3 (2026-02-23)
|
|
23
|
+
|
|
24
|
+
### Documentation
|
|
25
|
+
|
|
26
|
+
- Replace Japanese text with English in npm install instructions
|
|
27
|
+
|
|
28
|
+
---
|
|
29
|
+
|
|
3
30
|
## v0.4.2 (2026-02-23)
|
|
4
31
|
|
|
5
32
|
### Fixes
|
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Sensitive Canary
|
|
2
2
|
|
|
3
3
|
[](https://github.com/coo-quack/sensitive-canary/actions/workflows/ci.yml)
|
|
4
4
|
[](https://opensource.org/licenses/MIT)
|
|
@@ -104,7 +104,7 @@ Then add to `~/.claude/settings.json`:
|
|
|
104
104
|
}
|
|
105
105
|
```
|
|
106
106
|
|
|
107
|
-
> **Note:**
|
|
107
|
+
> **Note:** Node.js does not support `--experimental-strip-types` for files inside `node_modules`, so `npx tsx` is used instead.
|
|
108
108
|
|
|
109
109
|
</details>
|
|
110
110
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coo-quack/sensitive-canary",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Claude Code hooks that block secrets and PII before they reach the Anthropic API",
|
|
5
5
|
"homepage": "https://coo-quack.github.io/sensitive-canary/",
|
|
6
6
|
"type": "module",
|
|
@@ -19,6 +19,13 @@
|
|
|
19
19
|
"engines": {
|
|
20
20
|
"node": ">=22.6.0"
|
|
21
21
|
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@biomejs/biome": "^2.4.4",
|
|
24
|
+
"@types/node": "^25.3.0",
|
|
25
|
+
"typescript": "^5.9.3",
|
|
26
|
+
"vitepress": "^1.6.4",
|
|
27
|
+
"vitest": "^4.0.18"
|
|
28
|
+
},
|
|
22
29
|
"scripts": {
|
|
23
30
|
"test": "vitest run",
|
|
24
31
|
"test:watch": "vitest",
|
|
@@ -31,12 +38,5 @@
|
|
|
31
38
|
"docs:dev": "vitepress dev docs",
|
|
32
39
|
"docs:build": "vitepress build docs",
|
|
33
40
|
"docs:preview": "vitepress preview docs"
|
|
34
|
-
},
|
|
35
|
-
"devDependencies": {
|
|
36
|
-
"@biomejs/biome": "^2.4.4",
|
|
37
|
-
"@types/node": "^25.3.0",
|
|
38
|
-
"typescript": "^5.9.3",
|
|
39
|
-
"vitepress": "^1.6.4",
|
|
40
|
-
"vitest": "^4.0.18"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|