-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## [5.0.0](v4.0.0...v5.0.0) (2024-03-20) ### ⚠ BREAKING CHANGES * make identification field `confidence` optional * deprecated `ipLocation` field uses `DeprecatedIpLocation` model * change models for the most smart signals ### Features * add `linked_id` field to the `BotdResult` type ([3aba5d0](3aba5d0)) * add `origin_country` field to the `vpn` signal ([27f7c58](27f7c58)) * add `SuspectScore` smart signal support ([331f2a8](331f2a8)) * fix `ipLocation` deprecation ([cb3b7b1](cb3b7b1)) * make identification field `tag` required ([678a3a1](678a3a1)) * use shared structures for webhooks and event ([c15ae21](c15ae21)) ### Bug Fixes * make fields required according to real API response ([8beb757](8beb757))
- Loading branch information
1 parent
964aa84
commit dc600c1
Showing
7 changed files
with
30 additions
and
7 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
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
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
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,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
VERSION='4.0.0' | ||
VERSION='5.0.0' | ||
|
||
while getopts "v:" arg; do | ||
case $arg in | ||
|
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ | |
|
||
API_KEY = 'private_key' | ||
|
||
VERSION = '4.0.0' | ||
VERSION = '5.0.0' | ||
|
||
|
||
class MockPoolManager(object): | ||
|