Skip to content

Commit a19985e

Browse files
authored
Merge pull request #250 from carbonblack/develop
Release 1.7.0 changes merge to master
2 parents 73325f2 + 7cfa9ab commit a19985e

14 files changed

+1030
-177
lines changed

.gitignore

+4-2
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ target/
6060

6161
#Ipython Notebook
6262
.ipynb_checkpoints
63-
64-
.idea/
6563
*.ipynb
6664
.DS_Store
6765

66+
# IntelliJ IDEA
67+
/.idea
68+
*.iml
69+
6870
# Eclipse/PyDev
6971
/.project
7072
/.pydevproject

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python bindings for Carbon Black REST API
22

3-
**Latest Version: 1.6.2**
3+
**Latest Version: 1.7.0**
44

55
These are the new Python bindings for the Carbon Black Enterprise Response and Enterprise Protection REST APIs.
66
To learn more about the REST APIs, visit the Carbon Black Developer Network Website at https://developer.carbonblack.com.

docs/changelog.rst

+22-1
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,34 @@ CbAPI Changelog
22
===============
33
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
44
5+
CbAPI 1.7.0 - Released July 14, 2020
6+
------------------------------------
7+
8+
Updates
9+
10+
* General
11+
* Updates to pool defaults in base API.
12+
* Changes to exception handling to better discriminate ConnectionErrors and queries with invalid syntax.
13+
* Various minor bug fixes throughout.
14+
* Carbon Black Cloud
15+
* Bug fixes to query implementation.
16+
* Live Response: Account for sensor queue depth when submitting jobs.
17+
* CB Defense
18+
* Added examples for Dell BIOS verification.
19+
* CB ThreatHunter
20+
* Bug fixes to query implementation.
21+
* Update process and event searches to v2.
22+
* examples/create_feed: Make report optional during feed creation
23+
* examples/process_exporter: Add headers to CSV file writer
24+
* examples/threat_intelligence: Simplify report validation, add severity conversion to percent
25+
526
CbAPI 1.6.2 - Released April 08, 2020
627
-------------------------------------
728

829
Updates
930

1031
* CB Response
11-
* Changes to align with limits placed on the sensor update function in CB Response 7.1.0. Release notes are available on User Exchange, the ID is `CB 28683 <https://community.carbonblack.com/t5/Documentation-Downloads/CB-Response-7-1-0-Server-Release-Notes/ta-p/88027>`_.
32+
* Changes to align with limits placed on the sensor update function in CB Response 7.1.0. Release notes are available on User Exchange, the ID is `CB 28683 <https://community.carbonblack.com/t5/Documentation-Downloads/CB-Response-7-1-0-Server-Release-Notes/ta-p/88027>`_.
1233

1334
CbAPI 1.6.1 - Released January 13, 2020
1435
---------------------------------------

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,17 @@
5151

5252
# General information about the project.
5353
project = u'cbapi'
54-
copyright = u'2016-2019, Carbon Black Developer Network'
54+
copyright = u'2016-2020, VMware Carbon Black'
5555
author = u'Carbon Black Developer Network'
5656

5757
# The version info for the project you're documenting, acts as replacement for
5858
# |version| and |release|, also used in various other places throughout the
5959
# built documents.
6060
#
6161
# The short X.Y version.
62-
version = u'1.6'
62+
version = u'1.7'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.6.2'
64+
release = u'1.7.0'
6565

6666
# The language for content autogenerated by Sphinx. Refer to documentation
6767
# for a list of supported languages.

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
setup(
4343
name='cbapi',
44-
version='1.6.2',
44+
version='1.7.0',
4545
url='https://github.com/carbonblack/cbapi-python',
4646
license='MIT',
4747
author='Carbon Black',

src/cbapi/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
__title__ = 'cbapi'
66
__author__ = 'Carbon Black Developer Network'
77
__license__ = 'MIT'
8-
__copyright__ = 'Copyright 2018-2019 VMware Carbon Black'
9-
__version__ = '1.6.2'
8+
__copyright__ = 'Copyright 2018-2020 VMware Carbon Black'
9+
__version__ = '1.7.0'
1010

1111
# New API as of cbapi 0.9.0
1212
from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI

0 commit comments

Comments
 (0)