Skip to content

Releases: owenlamont/uv-secure

0.9.0

16 Feb 07:14
681349a
Compare
Choose a tag to compare

What's Changed

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

08 Feb 10:21
6ae8b2b
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.8.0...0.8.1

0.8.0

30 Jan 12:19
e67424a
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.7.1...0.8.0

0.7.1

26 Jan 12:05
748caa7
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.7.0...0.7.1

0.7.0

26 Jan 10:06
75ea62c
Compare
Choose a tag to compare

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

19 Jan 13:04
a05b9f0
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.5.0...0.6.0

0.5.0

11 Jan 08:37
54f27fc
Compare
Choose a tag to compare

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

09 Jan 13:37
e786680
Compare
Choose a tag to compare

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

09 Jan 13:02
389be2b
Compare
Choose a tag to compare

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

08 Jan 13:03
bfc7e1f
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.3.1...0.3.2