Skip to content

Commit

Permalink
Bugfix/max page and alert id list (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
alanag13 authored Jun 10, 2020
1 parent 6619fdf commit 7b9b232
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The intended audience of this file is for py42 consumers -- as such, changes that don't affect
how a consumer would use the library (e.g. adding unit tests, updating documentation, etc) are not captured here.

## 0.7.1 - 2020-06-10

### Fixed

- Issue that prevented alerts from being retrieved successfully via `code42 alerts` commands due to a change in its backing API.

## 0.7.0 - 2020-06-08

### Changed
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
package_dir={"": "src"},
python_requires=">3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4",
install_requires=[
"c42eventextractor==0.3.1",
"c42eventextractor==0.3.2",
"keyring==18.0.1",
"keyrings.alt==3.2.0",
"py42>=1.2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/code42cli/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.7.0"
__version__ = "0.7.1"
2 changes: 1 addition & 1 deletion src/code42cli/cmds/alerts/util.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from code42cli.compat import range

_BATCH_SIZE = 500
_BATCH_SIZE = 100


def get_alert_details(sdk, alert_summary_list):
Expand Down

0 comments on commit 7b9b232

Please sign in to comment.