From 0a4aea0d79baeb2252e5fd95664fb4619676e97e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 15 Oct 2024 10:15:05 +0000 Subject: [PATCH] chore(release): changeset created a new release --- .changeset/orange-taxis-fetch.md | 5 ----- .changeset/pre.json | 10 ---------- CHANGELOG.md | 6 ++++++ README.md | 2 +- fingerprint_pro_server_api_sdk/api/fingerprint_api.py | 8 ++++---- fingerprint_pro_server_api_sdk/api_client.py | 2 +- fingerprint_pro_server_api_sdk/configuration.py | 2 +- package.json | 2 +- setup.cfg | 2 +- test/test_fingerprint_api.py | 2 +- 10 files changed, 16 insertions(+), 25 deletions(-) delete mode 100644 .changeset/orange-taxis-fetch.md delete mode 100644 .changeset/pre.json diff --git a/.changeset/orange-taxis-fetch.md b/.changeset/orange-taxis-fetch.md deleted file mode 100644 index 99b36a10..00000000 --- a/.changeset/orange-taxis-fetch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-python-sdk': minor ---- - -**visitors**: Add the confidence field to the VPN Detection Smart Signal \ No newline at end of file diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index d2350496..00000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "mode": "exit", - "tag": "rc", - "initialVersions": { - "fingerprint-pro-server-api-python-sdk": "7.0.1" - }, - "changesets": [ - "orange-taxis-fetch" - ] -} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a8a8e37..6c016e56 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Fingerprint Pro Server Python SDK +## 7.1.0 + +### Minor Changes + +- **visitors**: Add the confidence field to the VPN Detection Smart Signal ([e98dbd4](https://github.com/fingerprintjs/fingerprint-pro-server-api-python-sdk/commit/e98dbd4675bdb28f5e98c4a670612e3f8d0aa671)) + ## 7.1.0-rc.0 ### Minor Changes diff --git a/README.md b/README.md index ef41c946..e512f7dd 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 [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 -- Package version: 7.1.0-rc.0 +- Package version: 7.1.0 - Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen ## Requirements diff --git a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py index f1223cae..c3ef960f 100644 --- a/fingerprint_pro_server_api_sdk/api/fingerprint_api.py +++ b/fingerprint_pro_server_api_sdk/api/fingerprint_api.py @@ -109,7 +109,7 @@ def delete_visitor_data_with_http_info(self, visitor_id: str, **kwargs): # noqa if 'visitor_id' in params: path_params['visitor_id'] = params['visitor_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0-rc.0')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0')] header_params = {} @@ -219,7 +219,7 @@ def get_event_with_http_info(self, request_id: str, **kwargs): # noqa: E501 if 'request_id' in params: path_params['request_id'] = params['request_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0-rc.0')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0')] header_params = {} @@ -338,7 +338,7 @@ def get_visits_with_http_info(self, visitor_id: str, **kwargs): # noqa: E501 if 'visitor_id' in params: path_params['visitor_id'] = params['visitor_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0-rc.0')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0')] if 'request_id' in params: query_params.append(('request_id', params['request_id'])) # noqa: E501 if 'linked_id' in params: @@ -458,7 +458,7 @@ def update_event_with_http_info(self, body: EventUpdateRequest, request_id: str, if 'request_id' in params: path_params['request_id'] = params['request_id'] # noqa: E501 - query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0-rc.0')] + query_params = [('ii', 'fingerprint-pro-server-python-sdk/7.1.0')] header_params = {} diff --git a/fingerprint_pro_server_api_sdk/api_client.py b/fingerprint_pro_server_api_sdk/api_client.py index 4853dbe0..5bcce0ab 100644 --- a/fingerprint_pro_server_api_sdk/api_client.py +++ b/fingerprint_pro_server_api_sdk/api_client.py @@ -79,7 +79,7 @@ def __init__(self, configuration: Optional[Configuration] = None, header_name: O self.default_headers[header_name] = header_value self.cookie = cookie # Set default User-Agent. - self.user_agent = 'Swagger-Codegen/7.1.0-rc.0/python' + self.user_agent = 'Swagger-Codegen/7.1.0/python' def __del__(self): self.pool.close() diff --git a/fingerprint_pro_server_api_sdk/configuration.py b/fingerprint_pro_server_api_sdk/configuration.py index 4e678b9d..8924fe53 100644 --- a/fingerprint_pro_server_api_sdk/configuration.py +++ b/fingerprint_pro_server_api_sdk/configuration.py @@ -210,5 +210,5 @@ def to_debug_report(self): "OS: {env}\n"\ "Python Version: {pyversion}\n"\ "Version of the API: 3\n"\ - "SDK Package Version: 7.1.0-rc.0".\ + "SDK Package Version: 7.1.0".\ format(env=sys.platform, pyversion=sys.version) diff --git a/package.json b/package.json index 115ecec4..3abcdc8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-python-sdk", - "version": "7.1.0-rc.0", + "version": "7.1.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/setup.cfg b/setup.cfg index 828fc678..22a27699 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,2 +1,2 @@ [metadata] -version = 7.1.0-rc.0 +version = 7.1.0 diff --git a/test/test_fingerprint_api.py b/test/test_fingerprint_api.py index dc745052..f3f8591e 100644 --- a/test/test_fingerprint_api.py +++ b/test/test_fingerprint_api.py @@ -27,7 +27,7 @@ API_KEY = 'private_key' -VERSION = '7.1.0-rc.0' +VERSION = '7.1.0' class MockPoolManager(object):