-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [0.7.0] - 2023-10-12 - `runzero.types.ImportAsset` now supports associating vulnerabilities with an asset by adding a `runzero.types.Vulnerability` type to be set on the `ImportAsset.vulnerabilities` field. - `runzero.types.ImportAsset` now supports associating software with an asset by adding a `runzero.types.Software` type to be set on the `ImportAsset.software` field. - `runzero.types.ImportAsset.custom_attributes` no longer requires using the `CustomAttribute` type to wrap your string values. You can now use a `Dict[str, str]` directly. - `runzero.types.CustomAttribute` has been deprecated and will be removed in the `v1.0` release of the SDK. - Updated license requirement verbiage to reflect the new [Platform license](https://www.runzero.com/product/pricing/) requirement. - Added official support for Python 3.12.
- Loading branch information
Showing
14 changed files
with
1,243 additions
and
265 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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
[tool.poetry] | ||
name = "runzero-sdk" | ||
version = "0.6.0" | ||
version = "0.7.0" | ||
description = "The runZero platform sdk" | ||
license = "BSD-2-Clause" | ||
authors = ["runZero <[email protected]>"] | ||
|
@@ -13,7 +13,6 @@ packages = [{include = "runzero"}] | |
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Framework :: Pydantic", | ||
"Framework :: Pytest", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: System Administrators", | ||
"Topic :: Security", | ||
|
@@ -53,7 +52,7 @@ mypy-extensions = "^1.0.0" | |
tox = "^4.4.7" | ||
|
||
[tool.poetry.group.codegen.dependencies] | ||
datamodel-code-generator = { version = ">=0.17.1,<0.22.0", extras = ["http"]} | ||
datamodel-code-generator = { version = ">=0.17.1,<0.23.0", extras = ["http"]} | ||
|
||
[tool.poetry.group.docs.dependencies] | ||
sphinx = ">=6.1.3,<8.0.0" | ||
|
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
Oops, something went wrong.