Releases: wayneashleyberry/vscode-entropy-scanner
v1.6.0
What's Changed
- tartufo.toml: adds support for new exclude entropy patterns syntax by @wayneashleyberry in #11
Full Changelog: v1.5.2...v1.6.0
v1.5.2
What's Changed
- revert entropy pattern matching logic to match 2.9 by @wayneashleyberry in #12
Full Changelog: v1.5.1...v1.5.2
v.1.5.1
Full Changelog: v1.5.0...v1.5.1
v1.5.0
What's Changed
- add support for exclude-entropy-patterns by @wayneashleyberry in #10
Full Changelog: v1.4.0...v1.5.0
v1.4.0
This release adds signature exclusion reasons to your tartufo.toml
when using the quick action. Exclusion reasons are often documented with comments, but most toml parsers do not retain comments. To work around this, I have added a separate configuration object in which the exclusion reasons can be documented.
Generated tartufo.toml
files will now look like this:
[tool.tartufo]
repo-path = "."
cleanup = true
regex = true
entropy = true
exclude-path-patterns = ["tartufo.toml"]
exclude-signatures = [
"e7c7953f1d814374d50ab0ce75371a2145048318b6d41ee132680746298daf74",
]
[tool.tartufo.exclude-signature-reasons]
e7c7953f1d814374d50ab0ce75371a2145048318b6d41ee132680746298daf74 = "README.md: <Reason for exclusion>"
v1.3.0
This release adds a code action to exclude a specific signature by writing it to a tartufo.toml
file.
v1.2.0
This release adds support for the exclude-path-patterns
and exclude-signatures
options in your tartufo.toml
.
v1.1.2
Signatures were not matching those generated by tartufo... this may not be compatible with multiple workspaces.
v1.1.1
Fix incorrect handling of string positions
v1.1.0
Signatures compatible with tartufo will be provided when editing a file that has a path on disk.