Releases: owenlamont/uv-secure
Releases · owenlamont/uv-secure
0.9.0
What's Changed
- Updated README to cover conda-forge installation by @owenlamont in #39
- Direct dependency filters by @owenlamont in #40
Breaking Changes
The follow config file options:
- ignore_vulnerabilities
- aliases
- desc
Have been moved down one level in the configuration hierarchy under the vulnerability_criteria
section, so if you had a pyproject.toml file like this:
[tool.uv-secure]
ignore_vulnerabilities = ["VULN-123"]
aliases = true
desc = true
update it to this:
[tool.uv-secure.vulnerability_criteria]
ignore_vulnerabilities = ["VULN-123"]
aliases = true
desc = true
or if you have a .uv-secure.toml / uv-secure.toml file like this:
ignore_vulnerabilities = ["VULN-123"]
aliases = true # Defaults to false
desc = true # Defaults to false
update it to this:
[vulnerability_criteria]
ignore_vulnerabilities = ["VULN-123"]
aliases = true # Defaults to false
desc = true # Defaults to false
Full Changelog: 0.8.1...0.9.0
0.8.1
0.8.0
What's Changed
- Dependency maintainability thresholds by @owenlamont in #33
Full Changelog: 0.7.1...0.8.0
0.7.1
What's Changed
- Minor fix to the disable-cache flag logic by @owenlamont in #32
Full Changelog: 0.7.0...0.7.1
0.7.0
What's Changed
- Add contributing guide by @owenlamont in #28
- Small Typo Fix on The Contribution Page by @Vizonex in #29
- Conditionally disable comment actions on forked repo PRs by @owenlamont in #30
- Add file caching to improvement performance when running uv-secure multiple times by @owenlamont in #31
New Contributors
Full Changelog: 0.6.0...0.7.0
0.6.0
What's Changed
- Fix documentation mistakes by @owenlamont in #26
- Added logic to convert vulnerability aliases to hyperlinks by @owenlamont in #27
Full Changelog: 0.5.0...0.6.0
0.5.0
What's Changed
- 18 support equivalent pip audit table column options by @owenlamont in #25
Full Changelog: 0.4.1...0.5.0
0.4.1
What's Changed
- Implemented directory scanning for requirements.txt files by @owenlamont in #21
Full Changelog: 0.4.0...0.4.1
0.4.0
What's Changed
- 17 support scanning uv generated requirements.txt files by @owenlamont in #19
Full Changelog: 0.3.2...0.4.0
0.3.2
What's Changed
- Reduce vulnerability ID truncation by @owenlamont in #16
Full Changelog: 0.3.1...0.3.2