Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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_

Expand Down
23 changes: 23 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion src/cbapi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down