File tree 6 files changed +29
-6
lines changed
6 files changed +29
-6
lines changed Original file line number Diff line number Diff line change 1
1
The MIT License (MIT)
2
2
3
- Copyright (c) 2016-2019 Carbon Black
3
+ Copyright (c) 2016-2021 Carbon Black
4
4
5
5
Permission is hereby granted, free of charge, to any person obtaining a copy of
6
6
this software and associated documentation files (the "Software"), to deal in
Original file line number Diff line number Diff line change 1
1
# Python bindings for Carbon Black REST API
2
2
3
- ** Latest Version: 1.7.2 **
3
+ ** Latest Version: 1.7.3 **
4
4
5
5
_ ** 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_
6
6
Original file line number Diff line number Diff line change @@ -2,6 +2,29 @@ CbAPI Changelog
2
2
===============
3
3
.. top-of-changelog (DO NOT REMOVE THIS COMMENT)
4
4
5
+ CbAPI 1.7.3 - Released January 15, 2021
6
+ ------------------------------------
7
+
8
+ Updates
9
+
10
+ * General
11
+ * Fix resource warnings regarding unclosed file object
12
+ * Notice added to readme for Carbon Black Cloud features moving to Carbon Black Cloud SDK repo
13
+ * Carbon Black Cloud
14
+ * Increase default rows of alerts to 100
15
+ * Add get_auditlogs function to API object
16
+ * CB Threathunter
17
+ * Fix typo in process query
18
+ * Bump lxml from 4.4.1 to 4.6.2 for Threat Intelligence example
19
+ * CB Response
20
+ * Add Sensor Builds
21
+ * Alert.set_ignored() and AlertQuery.set_ignored():
22
+ * Added a docstring to specify what happens with this method
23
+ * Modified the payload keys based on manual testing
24
+ * Alert.change_status() and AlertQuery.change_status():
25
+ * Added a status check to ensure it's a valid status
26
+
27
+
5
28
CbAPI 1.7.2 - Released July 22, 2020
6
29
------------------------------------
7
30
Original file line number Diff line number Diff line change 51
51
52
52
# General information about the project.
53
53
project = u'cbapi'
54
- copyright = u'2016-2020 , VMware Carbon Black'
54
+ copyright = u'2016-2021 , VMware Carbon Black'
55
55
author = u'Carbon Black Developer Network'
56
56
57
57
# The version info for the project you're documenting, acts as replacement for
61
61
# The short X.Y version.
62
62
version = u'1.7'
63
63
# The full version, including alpha/beta/rc tags.
64
- release = u'1.7.2 '
64
+ release = u'1.7.3 '
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change 41
41
42
42
setup (
43
43
name = 'cbapi' ,
44
- version = '1.7.2 ' ,
44
+ version = '1.7.3 ' ,
45
45
url = 'https://github.com/carbonblack/cbapi-python' ,
46
46
license = 'MIT' ,
47
47
author = 'Carbon Black' ,
Original file line number Diff line number Diff line change 6
6
__author__ = 'Carbon Black Developer Network'
7
7
__license__ = 'MIT'
8
8
__copyright__ = 'Copyright 2018-2020 VMware Carbon Black'
9
- __version__ = '1.7.2 '
9
+ __version__ = '1.7.3 '
10
10
11
11
# New API as of cbapi 0.9.0
12
12
from cbapi .response .rest_api import CbEnterpriseResponseAPI , CbResponseAPI
You can’t perform that action at this time.
0 commit comments