Skip to content

Commit 2a7b9eb

Browse files
authored
Merge pull request #310 from carbonblack/develop
Release 1.7.7
2 parents 24d677f + 5a83c88 commit 2a7b9eb

File tree

6 files changed

+13
-4
lines changed

6 files changed

+13
-4
lines changed

Diff for: 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.7.6**
3+
**Latest Version: 1.7.7**
44

55
_**Notice**:_
66
* 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 for: docs/changelog.rst

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@ CbAPI Changelog
22
===============
33
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
44
5+
CbAPI 1.7.7 - Release Jan 28, 2022
6+
------------------------------------
7+
8+
Bug Fixes
9+
* Changed the sort order for EDR sensor searches from 'last_checkin_time' (default when none provided explicitly) to 'hostname' to make the sort stable as sensors checkin during paging
10+
11+
512
CbAPI 1.7.6 - Release Dec 20, 2021
613
------------------------------------
714

Diff for: docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
# The short X.Y version.
6262
version = u'1.7'
6363
# The full version, including alpha/beta/rc tags.
64-
release = u'1.7.6'
64+
release = u'1.7.7'
6565

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

Diff for: 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.7.6',
44+
version='1.7.7',
4545
url='https://github.com/carbonblack/cbapi-python',
4646
license='MIT',
4747
author='Carbon Black',

Diff for: src/cbapi/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
__author__ = 'Carbon Black Developer Network'
77
__license__ = 'MIT'
88
__copyright__ = 'Copyright 2018-2020 VMware Carbon Black'
9-
__version__ = '1.7.6'
9+
__version__ = '1.7.7'
1010

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

Diff for: src/cbapi/response/models.py

+2
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,8 @@ def _search(self, start=0, rows=0):
590590
else:
591591
args = {}
592592

593+
args.update({"sort.col":"computer_name", "sort.dir":"asc"})
594+
593595
args['start'] = start
594596

595597
if rows:

0 commit comments

Comments
 (0)