-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from FiniteStateInc/v0.1.0
v0.1.0
- Loading branch information
Showing
8 changed files
with
1,307 additions
and
1,217 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Finite State Python SDK RELEASE NOTES | ||
|
||
# v0.1.0 | ||
|
||
Updated minor version due to breaking change. | ||
|
||
## New Features | ||
N/A | ||
|
||
## Bug Fixes | ||
N/A | ||
|
||
## Breaking Changes | ||
|
||
* GraphQL queries that fail will now raise an Exception with details about the exception | ||
|
||
Your code should include try / except blocks for making calls, instead of relying on the API to return a potentially unexpected JSON document with an `errors` field. | ||
|
||
|
||
# v0.0.8 | ||
|
||
## New Features | ||
* Updated TOKEN_URL endpoint | ||
* Added get_asset_versions method | ||
* Updated Asset Versions query to have group information | ||
* Added cve_id filter for Get Findings variables | ||
* Added generate_download_sbom_url and queries and variables to support CycloneDX and SPDX downloads | ||
* Added download_sbom helper function | ||
* Added download_sboms.py example | ||
|
||
## Bug Fixes | ||
* N/A | ||
|
||
## Breaking Changes | ||
* N/A |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" | |
|
||
[tool.poetry] | ||
name = "finite-state-sdk" | ||
version = "0.0.8" | ||
version = "0.1.0" | ||
authors = [ | ||
"Finite State, Inc. <[email protected]>" | ||
] | ||
|
Oops, something went wrong.