-
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.
chore(release): 7.0.0-dev.1 [skip ci]
## [7.0.0-dev.1](v6.0.0...v7.0.0-dev.1) (2024-08-08) ### ⚠ BREAKING CHANGES * minimum supported Python version is 3.9 now * rename `error_event403_response`, `error_event403_response_error`, `many_requests_response` to `common403_error_response`, `error_common403_response` `too_many_requests_response` ### Features * add `delete_visitor_data` method ([961a165](961a165)) * add `developer_tools` signal ([ca25ef7](ca25ef7)) * add `osMismatch` field to the `vpn` signal ([0b95bda](0b95bda)) * add `remoteControl` signal ([5c7b149](5c7b149)) * add `revision` field to the `confidence` signal ([9b42d6b](9b42d6b)) * add `update_event` method ([752b1c9](752b1c9)) * add `velocity` signal ([9b31367](9b31367)) * add better error reporting in case of wrong data shape ([40e9e6a](40e9e6a)) * add webhook validation method ([d92b1fe](d92b1fe)) * create base class for models and move here utility functions ([bfa2285](bfa2285)) * drop Python 3.8 support ([d857954](d857954)) * simplify `Configuration` class, use inline types ([8cad048](8cad048)) * simplify `rest.py` and `api_client.py` and add inline types ([a8b1ae6](a8b1ae6)) * update schema ([c2e99cd](c2e99cd)) * use inline types for `fingerprint_api.py` ([c466bd5](c466bd5)) * use inline types instead of annotations for models ([1121a5c](1121a5c)) ### Bug Fixes * don't serialise empty fields in models ([9643e1d](9643e1d)) * make `tag` field optional for webhook ([e8a28f6](e8a28f6)) * remove Python2 compatibility code ([2621ccd](2621ccd)) * update schema with required `body` field for the `updateEvent` method ([c6eaf5e](c6eaf5e))
- Loading branch information
1 parent
b467787
commit 2133022
Showing
8 changed files
with
45 additions
and
14 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='6.0.0' | ||
VERSION='7.0.0.dev1' | ||
|
||
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 |
---|---|---|
|
@@ -45,11 +45,7 @@ | |
license_files=["LICENSE"], | ||
author="Fingerprint", | ||
author_email="[email protected]", | ||
project_urls={ | ||
"Changelog": "https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/blob/main/CHANGELOG.md", | ||
"Code": "https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk", | ||
"Issue Tracker": "https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/issues", | ||
}, | ||
url="https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk", | ||
keywords=["Swagger", "Fingerprint Pro Server API", "browser", "detection", "fingerprint", "identification", | ||
"fingerprinting", "browser-fingerprinting", "browser-fingerprint", "fraud-detection", "fraud", | ||
"audio-fingerprinting", "fingerprintjs", "fingerprintjs-pro", "visitor-identifier"], | ||
|
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 |
---|---|---|
|
@@ -25,7 +25,7 @@ | |
|
||
API_KEY = 'private_key' | ||
|
||
VERSION = '6.0.0' | ||
VERSION = '7.0.0.dev1' | ||
|
||
|
||
class MockPoolManager(object): | ||
|