From 60ad1a9140628f64f764818f0a207ac5a9f45c5b Mon Sep 17 00:00:00 2001 From: Alex Van Brunt Date: Fri, 15 Jan 2021 13:53:21 -0700 Subject: [PATCH] Version Bump --- LICENSE | 2 +- README.md | 2 +- docs/changelog.rst | 23 +++++++++++++++++++++++ docs/conf.py | 4 ++-- setup.py | 2 +- src/cbapi/__init__.py | 2 +- 6 files changed, 29 insertions(+), 6 deletions(-) diff --git a/LICENSE b/LICENSE index 2b532005..89ad6804 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2019 Carbon Black +Copyright (c) 2016-2021 Carbon Black Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in diff --git a/README.md b/README.md index 2cd5f6cb..9dc35ede 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Python bindings for Carbon Black REST API -**Latest Version: 1.7.2** +**Latest Version: 1.7.3** _**Notice**: The Carbon Black Cloud portion of CBAPI has moved to https://github.com/carbonblack/carbon-black-cloud-sdk-python. Any future development and bug fixes for Carbon Black Cloud APIs will be made there. Carbon Black EDR and App Control will remain supported at CBAPI_ diff --git a/docs/changelog.rst b/docs/changelog.rst index 352872b2..934826d9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,29 @@ CbAPI Changelog =============== .. top-of-changelog (DO NOT REMOVE THIS COMMENT) +CbAPI 1.7.3 - Released January 15, 2021 +------------------------------------ + +Updates + +* General + * Fix resource warnings regarding unclosed file object + * Notice added to readme for Carbon Black Cloud features moving to Carbon Black Cloud SDK repo +* Carbon Black Cloud + * Increase default rows of alerts to 100 + * Add get_auditlogs function to API object +* CB Threathunter + * Fix typo in process query + * Bump lxml from 4.4.1 to 4.6.2 for Threat Intelligence example +* CB Response + * Add Sensor Builds + * Alert.set_ignored() and AlertQuery.set_ignored(): + * Added a docstring to specify what happens with this method + * Modified the payload keys based on manual testing + * Alert.change_status() and AlertQuery.change_status(): + * Added a status check to ensure it's a valid status + + CbAPI 1.7.2 - Released July 22, 2020 ------------------------------------ diff --git a/docs/conf.py b/docs/conf.py index dc63206e..8d948821 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -51,7 +51,7 @@ # General information about the project. project = u'cbapi' -copyright = u'2016-2020, VMware Carbon Black' +copyright = u'2016-2021, VMware Carbon Black' author = u'Carbon Black Developer Network' # The version info for the project you're documenting, acts as replacement for @@ -61,7 +61,7 @@ # The short X.Y version. version = u'1.7' # The full version, including alpha/beta/rc tags. -release = u'1.7.2' +release = u'1.7.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 3a327dac..372e2129 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ setup( name='cbapi', - version='1.7.2', + version='1.7.3', url='https://github.com/carbonblack/cbapi-python', license='MIT', author='Carbon Black', diff --git a/src/cbapi/__init__.py b/src/cbapi/__init__.py index d6337391..b4a9b4b9 100644 --- a/src/cbapi/__init__.py +++ b/src/cbapi/__init__.py @@ -6,7 +6,7 @@ __author__ = 'Carbon Black Developer Network' __license__ = 'MIT' __copyright__ = 'Copyright 2018-2020 VMware Carbon Black' -__version__ = '1.7.2' +__version__ = '1.7.3' # New API as of cbapi 0.9.0 from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI