claude-nomad 0.22.0 → 0.22.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/.gitleaks.toml +19 -0
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
package/.gitleaks.toml
CHANGED
|
@@ -14,3 +14,22 @@ regexes = [
|
|
|
14
14
|
'''"id"\s*:\s*"[a-f0-9]{40,64}"''',
|
|
15
15
|
'''key=[a-f0-9]{8,} [\w./-]+\.\w+:\d+''',
|
|
16
16
|
]
|
|
17
|
+
|
|
18
|
+
# Path-scoped: the documented test-fixture github-pat literal accumulates
|
|
19
|
+
# in Claude Code session transcripts whenever a conversation touches the
|
|
20
|
+
# Pitfall 4 docs or this allowlist itself. Live sessions cannot be
|
|
21
|
+
# safely sed-scrubbed (sed -i renames out from under the running CLI's
|
|
22
|
+
# open file descriptor and silently drops post-rename writes), so the
|
|
23
|
+
# only sustainable false-positive handler is a narrow allowlist scoped
|
|
24
|
+
# to synced session paths. `condition = "AND"` requires BOTH the literal
|
|
25
|
+
# AND a `shared/projects/<logical>/.../*.jsonl` path; a real PAT in the
|
|
26
|
+
# same file (different 36-char body) still fires.
|
|
27
|
+
[[allowlists]]
|
|
28
|
+
description = "claude-nomad: documented test-fixture github-pat literal in synced session transcripts"
|
|
29
|
+
regexes = [
|
|
30
|
+
'''ghp_xJZbT3qfV2nLpKR8mYwH4dGtCsW9aE1uF6oA''',
|
|
31
|
+
]
|
|
32
|
+
paths = [
|
|
33
|
+
'''^shared/projects/[^/]+/.*\.jsonl$''',
|
|
34
|
+
]
|
|
35
|
+
condition = "AND"
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.22.1](https://github.com/funkadelic/claude-nomad/compare/v0.22.0...v0.22.1) (2026-05-23)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* **gitignore:** anchor .planning/ to source repo root ([#105](https://github.com/funkadelic/claude-nomad/issues/105)) ([50c403d](https://github.com/funkadelic/claude-nomad/commit/50c403d7223f79f30fa28b99ce6e5b2dcc350356))
|
|
9
|
+
|
|
3
10
|
## [0.22.0](https://github.com/funkadelic/claude-nomad/compare/v0.21.0...v0.22.0) (2026-05-23)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED