-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fixed issue mentioned in (#19) * Added version pinning for all dependencies * Added tox integration for testing new releases * Added cache option for costly getbyid operations using cache flag * Added sessions so tcp connections are being reused for subsequent api calls * Added better error handling and better retrying for rate limiting exception * Added prefilterpolicy related crud operations * Added minimum version requirements to api calls * Rewrote tests with pytest instead of unittest * Restructured project and moved default, exceptions and utils into their own files * Renamed accesscontrolpolicy related crud operations
- Loading branch information
Showing
21 changed files
with
1,551 additions
and
886 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
[flake8] | ||
ignore = E203, E266, E501, W503, F403, F401 | ||
max-line-length = 120 | ||
max-complexity = 18 | ||
max-complexity = 16 | ||
select = B,C,E,F,W,T4,B9 | ||
exclude = | ||
.*, | ||
__pycache__, | ||
docs/source/conf.py, | ||
old, | ||
build, | ||
dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
# test files | ||
test.py | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,33 @@ | ||
# 0.0.4 | ||
# 0.0.9 | ||
|
||
## Bugfixes | ||
|
||
Fixed issue mentioned in (#19) | ||
|
||
## Enhancements | ||
|
||
* Add api calls for hapair monitoredinterfaces (read, update) | ||
* Add helper function to get primary device id from hapair | ||
* Add expandable option for get_depoyable_deployable_devices | ||
* Default paging change from 25 to 100 | ||
Added version pinning for all dependencies | ||
Added tox integration for testing new releases | ||
Added cache option for costly getbyid operations using cache flag | ||
Added sessions so tcp connections are being reused for subsequent api calls | ||
Added better error handling and better retrying for rate limiting exception | ||
Added prefilterpolicy related crud operations | ||
Added minimum version requirements to api calls | ||
Rewrote tests with pytest instead of unittest | ||
Restructured project and moved default, exceptions and utils into their own files | ||
Renamed accesscontrolpolicy related crud operations | ||
|
||
# 0.0.4 | ||
|
||
## Bugfixes | ||
|
||
* getbyid operations fails due to incorrect limit param | ||
* api calls for ftd ipv4/ipv6 static routing fails due to incorrect URLs | ||
* update ftd sub interface fails due to missing param | ||
|
||
## Enhancements | ||
|
||
* Add api calls for hapair monitoredinterfaces (read, update) | ||
* Add helper function to get primary device id from hapair | ||
* Add expandable option for get_depoyable_deployable_devices | ||
* Default paging change from 25 to 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.