Skip to content

2.0.0b7

Latest
Compare
Choose a tag to compare
@Kamforka Kamforka released this 11 Nov 19:22
· 9 commits to main since this release
da08ad3

Breaking changes

  • TheHiveApi client's verify argument was improperly set to the default value of None, which only raised a warning when the client was connecting to a TheHive instance with an https:// base url.

    From now on verify will default to True that might lead to an SSL verification error, so to fix that one can:

    • pass the path to the cert bundle to be used by the client, e.g.: verify=/path/to/cert/bundle.crt
    • export the REQUESTS_CA_BUNDLE with the cert bundle path, e.g.: REQUESTS_CA_BUNDLE=/path/to/cert/bundle.crt
    • disable SSL verification like before - not recommended - e.g.: verify=None

Deprecated

  • TheHiveApi.case.update method's case argument is going to be retired in favor of the fields argument to conform with other endpoints update methods.

Added

Changed

New Contributors

Full Changelog: 2.0.0b6...2.0.0b7