Skip to content

Commit

Permalink
Merge pull request #310 from carbonblack/develop
Browse files Browse the repository at this point in the history
Release 1.7.7
  • Loading branch information
kebringer-cb authored Jan 28, 2022
2 parents 24d677f + 5a83c88 commit 2a7b9eb
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
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.6**
**Latest Version: 1.7.7**

_**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
7 changes: 7 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ CbAPI Changelog
===============
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
CbAPI 1.7.7 - Release Jan 28, 2022
------------------------------------

Bug Fixes
* 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


CbAPI 1.7.6 - Release Dec 20, 2021
------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.6'
release = u'1.7.7'

# 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.6',
version='1.7.7',
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.6'
__version__ = '1.7.7'

# New API as of cbapi 0.9.0
from cbapi.response.rest_api import CbEnterpriseResponseAPI, CbResponseAPI
Expand Down
2 changes: 2 additions & 0 deletions src/cbapi/response/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,8 @@ def _search(self, start=0, rows=0):
else:
args = {}

args.update({"sort.col":"computer_name", "sort.dir":"asc"})

args['start'] = start

if rows:
Expand Down

0 comments on commit 2a7b9eb

Please sign in to comment.