diff --git a/.changeset/pre.json b/.changeset/pre.json index a966df4f..9cce4185 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -4,5 +4,18 @@ "initialVersions": { "@fingerprint/python-sdk": "9.2.0" }, - "changesets": [] + "changesets": [ + "beige-places-drop", + "blue-roses-film", + "curvy-rice-chew", + "developer-tools-android-v4", + "events-rfc3339-timestamps", + "fancy-spiders-flash", + "identification-confidence-labels-high-recall-examples", + "loud-donuts-lead", + "quick-cows-battle", + "wet-socks-fold", + "witty-lions-worry", + "yellow-ducks-spend" + ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index 6841b2a2..92509d45 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Fingerprint Pro Server Python SDK +## 9.3.0-rc.0 + +### Minor Changes + +- **events**: Add Android platform support to `developer_tools` smart signal ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events-search**: Accept RFC3339 timestamps for `start` and `end` filter parameters in addition to Unix milliseconds ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events**: Add `labels` to `Event` ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events**: Add iOS platform support to `developer_tools` ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events-search**: Add `bot_info` filter parameters ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events-search**: Add `unknown` value to `BotInfoCategory` ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) + +### Patch Changes + +- **events**: Clarify availability of proxy and VM ML score signals ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events**: Clarify semantics of `incremental_identification_status` ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **visitors**: Clarify rate limits for `deleteVisitorData` operation ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events**: Require `label` on smart signal `Labels` items ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events-search**: Clarify availability of `rare_device` and `rare_device_percentile_bucket` query parameters ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) +- **events-search**: Fix `pagination_key` example ([324fc2a](https://github.com/fingerprintjs/python-sdk/commit/324fc2ae708c2aa5f409efda631daff20ee4e4b5)) + ## 9.2.0 ### Minor Changes diff --git a/README.md b/README.md index a421b8a8..00a5272e 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.2.0 +- Package version: 9.3.0-rc.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 c3bdaa4f..d437e3ba 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.2.0' +__version__ = '9.3.0-rc.0' # Define package exports __all__ = [ diff --git a/fingerprint_server_sdk/configuration.py b/fingerprint_server_sdk/configuration.py index bae9e962..ad1652f9 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.2.0' + 'SDK Package Version: 9.3.0-rc.0' ) @staticmethod diff --git a/package.json b/package.json index d1f31b03..6c0c0655 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fingerprint/python-sdk", - "version": "9.2.0", + "version": "9.3.0-rc.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/pyproject.toml b/pyproject.toml index d6dfe25c..ebaf7bd0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "fingerprint_server_sdk" -version = "9.2.0" +version = "9.3.0-rc.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 e4b7d38e..0c85536e 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ from setuptools import find_packages, setup NAME = 'fingerprint-server-sdk' -VERSION = '9.2.0' +VERSION = '9.3.0-rc.0' PYTHON_REQUIRES = '>= 3.9' # To install the library, run the following #