@coo-quack/sensitive-canary 0.4.3 → 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.
@@ -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.4",
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.4",
5
5
  "author": {
6
6
  "name": "coo-quack"
7
7
  },
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
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
+
3
22
  ## v0.4.3 (2026-02-23)
4
23
 
5
24
  ### Documentation
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # sensitive-canary
1
+ # Sensitive Canary
2
2
 
3
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)
4
4
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
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.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
+ }