-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
py-cyclonedx-python-lib: update to 1.3.0.
1.3.0 (2022-01-24) Feature bom-ref for Component and Vulnerability default to a UUID (#142) (3953bb6) 1.2.0 (2022-01-24) Feature Add CPE to component (#138) (269ee15) 1.1.1 (2022-01-19) Fix Bump dependencies (#136) (18ec498) 1.1.0 (2022-01-13) Feature Add support for bom.metadata.component (#118) (1ac31f4) 1.0.0 (2022-01-13) Support for CycloneDX schema version 1.4 (#108) Breaking Changes Support for CycloneDX 1.4. This includes: Support for tools having externalReferences Allowing version for a Component to be optional in 1.4 Support for releaseNotes per Component Support for the core schema implementation of Vulnerabilities (VEX) Features $schema is now included in JSON BOMs Concrete Parsers how now been moved into downstream projects to keep this libraries focus on modelling and outputting CycloneDX - see https://github.com/CycloneDX/cyclonedx-python Fixes Unit tests now include schema validation (we've left schema validation out of the core library due to dependency bloat) Ensure schema is adhered to in 1.0 URIs are now used throughout the library through a new XsUri class to provide URI validation Other Documentation is now hosted on readthedocs.org (https://cyclonedx-python-library.readthedocs.io/) Added reference to release of this library on Anaconda 0.12.3 (2021-12-15) Fix Removed requirements-parser as dependency (temp) as not available for Python 3 as Wheel (#98) (3677d9f) 0.12.2 (2021-12-09) Fix Tightened dependency packageurl-python (#95) (eb4ae5c) 0.12.1 (2021-12-09) Fix Further loosened dependency definitions (8bef6ec) 0.12.0 (2021-12-09) Feature Loosed dependency versions to make this library more consumable (55f10fb)
- Loading branch information
Showing
4 changed files
with
54 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.1 2021/12/07 18:05:29 wiz Exp $ | ||
$NetBSD: distinfo,v 1.2 2022/02/20 21:23:44 wiz Exp $ | ||
|
||
BLAKE2s (cyclonedx-python-lib-0.11.1.tar.gz) = 8e639a7dba82ed7588e0e4cacfd22878048d6c8efc3f0f1703a68056138a32df | ||
SHA512 (cyclonedx-python-lib-0.11.1.tar.gz) = ed92383fce3d98bd8ed28c1591fc92f3670f6450106fdb4898622bef3c79d0b1140c5878dc5436fbb3a3bcfffff7245744d4e9e505685925f24fef2be847a39c | ||
Size (cyclonedx-python-lib-0.11.1.tar.gz) = 98048 bytes | ||
SHA1 (patch-setup.py) = 1d077726a87994685b9035afb379d80dc6c4c6d3 | ||
BLAKE2s (cyclonedx-python-lib-1.3.0.tar.gz) = faef53b42112a10089fa350852bbdac88453113085989cd9a0452e5c9bba932a | ||
SHA512 (cyclonedx-python-lib-1.3.0.tar.gz) = d14b3c426a337bf3d4d7deb1a22dccddc15adde51220e48db613e16c60432cc3cc47ec88b5fde76684c808fa1f98cbcd60d67e2cab1c708401ffb11254564afc | ||
Size (cyclonedx-python-lib-1.3.0.tar.gz) = 134990 bytes | ||
SHA1 (patch-setup.py) = 3033f49a66cee7048c4c91d2122591684b46bb8c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,18 @@ | ||
$NetBSD: patch-setup.py,v 1.1 2021/12/07 18:05:29 wiz Exp $ | ||
$NetBSD: patch-setup.py,v 1.2 2022/02/20 21:23:44 wiz Exp $ | ||
|
||
Be less restrictive in dependencies. | ||
|
||
--- setup.py.orig 2021-11-10 15:42:02.183635700 +0000 | ||
--- setup.py.orig 2022-01-24 13:30:26.931830600 +0000 | ||
+++ setup.py | ||
@@ -13,12 +13,12 @@ package_data = \ | ||
{'': ['*'], 'cyclonedx': ['schema/*', 'schema/ext/*']} | ||
|
||
@@ -15,9 +15,9 @@ package_data = \ | ||
install_requires = \ | ||
-['packageurl-python>=0.9.4,<0.10.0', | ||
- 'requirements_parser>=0.2.0,<0.3.0', | ||
- 'setuptools>=50.3.2,<51.0.0', | ||
- 'toml>=0.10.2,<0.11.0', | ||
- 'types-setuptools>=57.4.2,<58.0.0', | ||
- 'types-toml>=0.10.1,<0.11.0'] | ||
+['packageurl-python>=0.9.4', | ||
+ 'requirements_parser>=0.2.0', | ||
+ 'setuptools>=50.3.2', | ||
+ 'toml>=0.10.2', | ||
+ 'types-setuptools>=57.4.2', | ||
+ 'types-toml>=0.10.1'] | ||
['packageurl-python>=0.9', | ||
'setuptools>=47.0.0', | ||
- 'toml>=0.10.0,<0.11.0', | ||
+ 'toml>=0.10.0', | ||
'types-setuptools>=57.0.0', | ||
- 'types-toml>=0.10.0,<0.11.0'] | ||
+ 'types-toml>=0.10.0'] | ||
|
||
extras_require = \ | ||
{':python_version >= "3.6" and python_version < "3.8"': ['importlib-metadata>=4.8.1,<5.0.0', | ||
{':python_version < "3.8"': ['importlib-metadata>=3.4', |