Skip to content

Commit 7b9b232

Browse files
authored
Bugfix/max page and alert id list (#99)
1 parent 6619fdf commit 7b9b232

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
99
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.
1010

11+
## 0.7.1 - 2020-06-10
12+
13+
### Fixed
14+
15+
- Issue that prevented alerts from being retrieved successfully via `code42 alerts` commands due to a change in its backing API.
16+
1117
## 0.7.0 - 2020-06-08
1218

1319
### Changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package_dir={"": "src"},
2222
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
2323
install_requires=[
24-
"c42eventextractor==0.3.1",
24+
"c42eventextractor==0.3.2",
2525
"keyring==18.0.1",
2626
"keyrings.alt==3.2.0",
2727
"py42>=1.2.0",

src/code42cli/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.7.0"
1+
__version__ = "0.7.1"

src/code42cli/cmds/alerts/util.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from code42cli.compat import range
22

3-
_BATCH_SIZE = 500
3+
_BATCH_SIZE = 100
44

55

66
def get_alert_details(sdk, alert_summary_list):

0 commit comments

Comments
 (0)