Skip to content

Commit

Permalink
[DEPLOY] v0.6.5 - Service Class updates (#334)
Browse files Browse the repository at this point in the history
* Remove Hash Analyzer Service Class

* Fixed quarantine endpoint references for Uber

* Update CHANGELOG.md

* Bump version -> 0.6.5
  • Loading branch information
jshcodes authored Sep 8, 2021
1 parent 5133330 commit 05f88e2
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 203 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
# Version 0.6.5
## Issues resolved
+ Removed: Hash Analyzer Service Class and all related unit tests. (Unavailable at this time)
- `hash_analyzer.py`
- `_endpoint/_hash_analyzer.py`
- `test_hash_analyzer.py`
+ Fixed: Missing reference to _quarantine_endpoints in endpoint module. `_endpoint/__init__.py`
- This issue only impacted users leveraging the Uber class for these endpoints.

# Version 0.6.4
## Added features and functionality
+ Added: New Hash Analyzer Service Class `hash_analyzer.py`
Expand Down
2 changes: 2 additions & 0 deletions src/falconpy/_endpoint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
from ._oauth2 import _oauth2_endpoints
from ._overwatch_dashboard import _overwatch_dashboard_endpoints
from ._prevention_policies import _prevention_policies_endpoints
from ._quarantine import _quarantine_endpoints
from ._quick_scan import _quick_scan_endpoints
from ._real_time_response import _real_time_response_endpoints
from ._real_time_response_admin import _real_time_response_admin_endpoints
Expand Down Expand Up @@ -99,6 +100,7 @@
api_endpoints.extend(_oauth2_endpoints)
api_endpoints.extend(_overwatch_dashboard_endpoints)
api_endpoints.extend(_prevention_policies_endpoints)
api_endpoints.extend(_quarantine_endpoints)
api_endpoints.extend(_quick_scan_endpoints)
api_endpoints.extend(_real_time_response_endpoints)
api_endpoints.extend(_real_time_response_admin_endpoints)
Expand Down
81 changes: 0 additions & 81 deletions src/falconpy/_endpoint/_hash_analyzer.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/falconpy/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
For more information, please refer to <https://unlicense.org>
"""
_VERSION = '0.6.4'
_VERSION = '0.6.5'
_MAINTAINER = 'Joshua Hiller'
_AUTHOR = 'CrowdStrike'
_AUTHOR_EMAIL = '[email protected]'
Expand Down
89 changes: 0 additions & 89 deletions src/falconpy/hash_analyzer.py

This file was deleted.

32 changes: 0 additions & 32 deletions tests/test_hash_analyzer.py

This file was deleted.

0 comments on commit 05f88e2

Please sign in to comment.