@coo-quack/sensitive-canary 0.5.0 → 0.5.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/.claude-plugin/plugin.json +1 -1
- package/CHANGELOG.md +12 -0
- package/README.md +1 -2
- package/package.json +1 -1
- package/.claude-plugin/marketplace.json +0 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## v0.5.1 (2026-03-15)
|
|
4
|
+
|
|
5
|
+
### Fixes
|
|
6
|
+
|
|
7
|
+
- Remove `marketplace.json` and sync marketplace via `repository_dispatch` on release
|
|
8
|
+
- Gate marketplace sync on actual release creation to prevent duplicate dispatches
|
|
9
|
+
- Update marketplace registration commands across README and docs to point to `coo-quack/claude-code-marketplace`
|
|
10
|
+
- Remove stale `marketplace.json` references from `CONTRIBUTING.md` and `README.md`
|
|
11
|
+
- Simplify backport workflow to direct main-to-develop merge
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
3
15
|
## v0.5.0 (2026-03-14)
|
|
4
16
|
|
|
5
17
|
### Features
|
package/README.md
CHANGED
|
@@ -46,7 +46,7 @@ Install in two commands from inside a Claude Code session:
|
|
|
46
46
|
**1. Register the marketplace**
|
|
47
47
|
|
|
48
48
|
```
|
|
49
|
-
/plugin marketplace add coo-quack/
|
|
49
|
+
/plugin marketplace add coo-quack/claude-code-marketplace
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
**2. Install the plugin**
|
|
@@ -360,7 +360,6 @@ When both `[allow-*]` and `[mask-*]` tags appear in the same prompt, **the tag t
|
|
|
360
360
|
```
|
|
361
361
|
.claude-plugin/
|
|
362
362
|
plugin.json plugin manifest
|
|
363
|
-
marketplace.json marketplace catalog
|
|
364
363
|
hooks/
|
|
365
364
|
hooks.json Claude Code hook configuration
|
|
366
365
|
src/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coo-quack/sensitive-canary",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
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",
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "coo-quack",
|
|
3
|
-
"owner": {
|
|
4
|
-
"name": "coo-quack"
|
|
5
|
-
},
|
|
6
|
-
"metadata": {
|
|
7
|
-
"description": "Security hooks that block secrets and PII before they reach the Anthropic API"
|
|
8
|
-
},
|
|
9
|
-
"plugins": [
|
|
10
|
-
{
|
|
11
|
-
"name": "sensitive-canary",
|
|
12
|
-
"source": {
|
|
13
|
-
"source": "github",
|
|
14
|
-
"repo": "coo-quack/sensitive-canary"
|
|
15
|
-
},
|
|
16
|
-
"description": "Blocks secrets and PII before they reach the Anthropic API",
|
|
17
|
-
"version": "0.5.0",
|
|
18
|
-
"license": "MIT",
|
|
19
|
-
"keywords": ["security", "secrets", "pii", "hooks"]
|
|
20
|
-
}
|
|
21
|
-
]
|
|
22
|
-
}
|