diff --git a/.changeset/dirty-eels-wash.md b/.changeset/dirty-eels-wash.md deleted file mode 100644 index de8213d2..00000000 --- a/.changeset/dirty-eels-wash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": minor ---- - -Add `Simulator` signal for iOS platform diff --git a/.changeset/nervous-boats-poke.md b/.changeset/nervous-boats-poke.md deleted file mode 100644 index 5ec5c6e2..00000000 --- a/.changeset/nervous-boats-poke.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": minor ---- - -Add `virtual_machine_ml_score` field for `VirtualMachine` signal diff --git a/.changeset/ninety-scissors-laugh.md b/.changeset/ninety-scissors-laugh.md deleted file mode 100644 index c2b906a1..00000000 --- a/.changeset/ninety-scissors-laugh.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": minor ---- - -Add `high_recall_id` and `simulator` filters for the `SearchEvents` method diff --git a/.changeset/orange-coats-roll.md b/.changeset/orange-coats-roll.md deleted file mode 100644 index 3fe7d334..00000000 --- a/.changeset/orange-coats-roll.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": minor ---- - -Add `tampering_confidence` and `tampering_ml_score` fields for `Tampering` smart signal diff --git a/.changeset/tame-seals-breathe.md b/.changeset/tame-seals-breathe.md deleted file mode 100644 index 7ab6942f..00000000 --- a/.changeset/tame-seals-breathe.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@fingerprint/python-sdk": patch ---- - -Remove `REQUEST_NOT_FOUND` value from the `ErrorCode` enum diff --git a/CHANGELOG.md b/CHANGELOG.md index e27aae09..53c8d208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Fingerprint Pro Server Python SDK +## 9.1.0 + +### Minor Changes + +- Add `Simulator` signal for iOS platform ([1544bd1](https://github.com/fingerprintjs/python-sdk/commit/1544bd15600aef294ccbda7f6d74bb02d5f0142c)) +- Add `virtual_machine_ml_score` field for `VirtualMachine` signal ([1544bd1](https://github.com/fingerprintjs/python-sdk/commit/1544bd15600aef294ccbda7f6d74bb02d5f0142c)) +- Add `high_recall_id` and `simulator` filters for the `SearchEvents` method ([1544bd1](https://github.com/fingerprintjs/python-sdk/commit/1544bd15600aef294ccbda7f6d74bb02d5f0142c)) +- Add `tampering_confidence` and `tampering_ml_score` fields for `Tampering` smart signal ([1544bd1](https://github.com/fingerprintjs/python-sdk/commit/1544bd15600aef294ccbda7f6d74bb02d5f0142c)) + +### Patch Changes + +- Remove `REQUEST_NOT_FOUND` value from the `ErrorCode` enum ([1544bd1](https://github.com/fingerprintjs/python-sdk/commit/1544bd15600aef294ccbda7f6d74bb02d5f0142c)) + ## 9.0.1 ### Patch Changes diff --git a/README.md b/README.md index be69e69f..1b9abaf2 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ The Fingerprint Server Python SDK is an easy way to interact with the Fingerprin This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project: - API version: 4 -- Package version: 9.0.1 +- Package version: 9.1.0 - Generator version: 7.19.0 - Build package: org.openapitools.codegen.languages.PythonClientCodegen diff --git a/fingerprint_server_sdk/__init__.py b/fingerprint_server_sdk/__init__.py index 969430ba..588f8574 100644 --- a/fingerprint_server_sdk/__init__.py +++ b/fingerprint_server_sdk/__init__.py @@ -12,7 +12,7 @@ Do not edit the class manually. """ # noqa: E501 -__version__ = '9.0.1' +__version__ = '9.1.0' # Define package exports __all__ = [ diff --git a/fingerprint_server_sdk/configuration.py b/fingerprint_server_sdk/configuration.py index 896f1e80..187447b0 100644 --- a/fingerprint_server_sdk/configuration.py +++ b/fingerprint_server_sdk/configuration.py @@ -324,7 +324,7 @@ def to_debug_report(self) -> str: f'OS: {sys.platform}\n' f'Python Version: {sys.version}\n' 'Version of the API: 4\n' - 'SDK Package Version: 9.0.1' + 'SDK Package Version: 9.1.0' ) @staticmethod diff --git a/package.json b/package.json index 883e47f0..38a04f61 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fingerprint/python-sdk", - "version": "9.0.1", + "version": "9.1.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/pyproject.toml b/pyproject.toml index 91f0c4de..a9e995f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fingerprint_server_sdk" -version = "9.0.1" +version = "9.1.0" description = "Fingerprint Server API allows you to get, search, and update Events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device. " authors = [ {name = "Fingerprint Support",email = "support@fingerprint.com"}, diff --git a/setup.py b/setup.py index 4adc0130..3f314723 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import find_packages, setup NAME = 'fingerprint-server-sdk' -VERSION = '9.0.1' +VERSION = '9.1.0' PYTHON_REQUIRES = '>= 3.9' # To install the library, run the following #