17
0

- update to version 2.4.2:

-  Enhancements:
  - Throw `AnalyzerError` when a hostname cannot be resolved to an IP
  - Add links to summary card as_dict method
 -  Bug Fixes
  - Added missing docstring for `services` property
  - Fixed various issues with `as_dict` property to ensure only serializable
    types made it into the dictionary. 
  - Ensured Projects would load by GUID regardless of visiblity.
  - Removed a partially-implemented __str__ method in `MalwareList` method
  - Ensured all __str__ methods in `analyzer` objects always return a string
  - Upserting an artifact triggered an API error when setting a tag
  - Ensure `summary` property returns ints, not None, when fields are missing
  - Properly handle defanged ip addresses 
  - Exclude Nones from sets in various properties to avoid problems with `NoneTypes`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-passivetotal?expand=0&rev=18
This commit is contained in:
2021-06-20 08:53:39 +00:00
committed by Git OBS Bridge
parent 87b8b2a774
commit e1ff58f26f
4 changed files with 23 additions and 4 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Sun Jun 20 08:52:03 UTC 2021 - Sebastian Wagner <sebix+novell.com@sebix.at>
- update to version 2.4.2:
- Enhancements:
- Throw `AnalyzerError` when a hostname cannot be resolved to an IP
- Add links to summary card as_dict method
- Bug Fixes
- Added missing docstring for `services` property
- Fixed various issues with `as_dict` property to ensure only serializable
types made it into the dictionary.
- Ensured Projects would load by GUID regardless of visiblity.
- Removed a partially-implemented __str__ method in `MalwareList` method
- Ensured all __str__ methods in `analyzer` objects always return a string
- Upserting an artifact triggered an API error when setting a tag
- Ensure `summary` property returns ints, not None, when fields are missing
- Properly handle defanged ip addresses
- Exclude Nones from sets in various properties to avoid problems with `NoneTypes`
-------------------------------------------------------------------
Mon May 24 17:14:59 UTC 2021 - Sebastian Wagner <sebix+novell.com@sebix.at>