@coo-quack/sensitive-canary 0.4.3 → 0.4.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.
@@ -14,7 +14,7 @@
14
14
  "repo": "coo-quack/sensitive-canary"
15
15
  },
16
16
  "description": "Blocks secrets and PII before they reach the Anthropic API",
17
- "version": "0.4.0",
17
+ "version": "0.4.5",
18
18
  "license": "MIT",
19
19
  "keywords": ["security", "secrets", "pii", "hooks"]
20
20
  }
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "sensitive-canary",
3
3
  "description": "Blocks secrets and PII before they reach the Anthropic API",
4
- "version": "0.4.0",
4
+ "version": "0.4.5",
5
5
  "author": {
6
6
  "name": "coo-quack"
7
7
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,32 @@
1
1
  # Changelog
2
2
 
3
+ ## v0.4.5 (2026-03-12)
4
+
5
+ ### Fixes
6
+
7
+ - Scope CI badge to main branch
8
+
9
+ ---
10
+
11
+ ## v0.4.4 (2026-03-12)
12
+
13
+ ### Improvements
14
+
15
+ - Migrate from npm to pnpm
16
+ - Add Renovate configuration with automerge on CI success
17
+ - Add pnpm version specification for GitHub Actions
18
+
19
+ ### Documentation
20
+
21
+ - Update install instructions from npm to pnpm
22
+ - Capitalize project title to Sensitive Canary across docs
23
+
24
+ ### Fixes
25
+
26
+ - Fix capitalization in project title
27
+
28
+ ---
29
+
3
30
  ## v0.4.3 (2026-02-23)
4
31
 
5
32
  ### Documentation
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # sensitive-canary
1
+ # Sensitive Canary
2
2
 
3
- [![CI](https://github.com/coo-quack/sensitive-canary/actions/workflows/ci.yml/badge.svg)](https://github.com/coo-quack/sensitive-canary/actions/workflows/ci.yml)
3
+ [![CI](https://github.com/coo-quack/sensitive-canary/actions/workflows/ci.yml/badge.svg?branch=main)](https://github.com/coo-quack/sensitive-canary/actions/workflows/ci.yml)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
5
 
6
6
  A security plugin that prevents unintended data leaks from Claude Code. Automatically detects and blocks secrets and PII — in prompts, file reads, and command executions — before they are sent to the Anthropic API.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coo-quack/sensitive-canary",
3
- "version": "0.4.3",
3
+ "version": "0.4.5",
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
+ }