From 0c9994fabfcfd5b3f62669b00229ea664cb28204 Mon Sep 17 00:00:00 2001 From: "fingerprint-dx-team-actions-runner[bot]" <197604345+fingerprint-dx-team-actions-runner[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 17:09:33 +0000 Subject: [PATCH] chore(release): changeset created a new release --- .changeset/add-labels-smart-signal.md | 5 ----- .changeset/add-ml-smart-signals.md | 5 ----- .changeset/add-unknown-proxy-type.md | 5 ----- .changeset/clarify-developer-tools-description.md | 5 ----- CHANGELOG.md | 9 +++++++++ README.md | 2 +- composer.json | 2 +- config.json | 2 +- package.json | 2 +- src/Api/FingerprintApi.php | 2 +- src/Configuration.php | 4 ++-- 11 files changed, 16 insertions(+), 27 deletions(-) delete mode 100644 .changeset/add-labels-smart-signal.md delete mode 100644 .changeset/add-ml-smart-signals.md delete mode 100644 .changeset/add-unknown-proxy-type.md delete mode 100644 .changeset/clarify-developer-tools-description.md diff --git a/.changeset/add-labels-smart-signal.md b/.changeset/add-labels-smart-signal.md deleted file mode 100644 index 0200ef52..00000000 --- a/.changeset/add-labels-smart-signal.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": minor ---- - -Add the Labels Smart Signal. The `Products` response now exposes a `labels` field (`ProductLabels`) whose `data` is an array of label predictions (`label`, `prediction`, `mlScore`). diff --git a/.changeset/add-ml-smart-signals.md b/.changeset/add-ml-smart-signals.md deleted file mode 100644 index 85b387dd..00000000 --- a/.changeset/add-ml-smart-signals.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": minor ---- - -Add machine learning-based Smart Signals from the Server API schema: `mlScore` on the `VPN` and `Proxy` results (and their webhook counterparts), and `mlPrediction` on `VPNMethods`. These signals are in beta and only available to select customers. diff --git a/.changeset/add-unknown-proxy-type.md b/.changeset/add-unknown-proxy-type.md deleted file mode 100644 index 8a54bb21..00000000 --- a/.changeset/add-unknown-proxy-type.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": minor ---- - -Add the `unknown` value to the `ProxyDetails` `proxyType` field. diff --git a/.changeset/clarify-developer-tools-description.md b/.changeset/clarify-developer-tools-description.md deleted file mode 100644 index 0262ae97..00000000 --- a/.changeset/clarify-developer-tools-description.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": minor ---- - -Clarify the `DeveloperTools` and `WebhookDeveloperTools` `result` description to note that it also covers iOS devices with Developer Tools enabled. diff --git a/CHANGELOG.md b/CHANGELOG.md index ab0f43cb..eb061d37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Fingerprint Pro Server PHP SDK +## 6.12.0 + +### Minor Changes + +- Add the Labels Smart Signal. The `Products` response now exposes a `labels` field (`ProductLabels`) whose `data` is an array of label predictions (`label`, `prediction`, `mlScore`). ([7564735](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/756473574154d916cf9adf941cfb2460b71de8d4)) +- Add machine learning-based Smart Signals from the Server API schema: `mlScore` on the `VPN` and `Proxy` results (and their webhook counterparts), and `mlPrediction` on `VPNMethods`. These signals are in beta and only available to select customers. ([9253a67](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9253a679d06a8564248d206a28809ef52750c801)) +- Add the `unknown` value to the `ProxyDetails` `proxyType` field. ([c748eff](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/c748effe1d4cccdac672a1c273b4209da886dbab)) +- Clarify the `DeveloperTools` and `WebhookDeveloperTools` `result` description to note that it also covers iOS devices with Developer Tools enabled. ([6216a26](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/6216a263c9adfb92effa46b4584626d5a593d654)) + ## 6.11.0 ### Minor Changes diff --git a/README.md b/README.md index ba5dde05..b85057e4 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ Server API is intended for server-side usage, it's not intended to be used from This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 - - Package version: 6.11.0 + - Package version: 6.12.0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index b5cab82a..0caeca30 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.11.0", + "version": "6.12.0", "description": "Fingerprint Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", "keywords": [ "swagger", diff --git a/config.json b/config.json index 4f10e42a..4c47b68e 100644 --- a/config.json +++ b/config.json @@ -8,5 +8,5 @@ "gitUserId": "fingerprintjs", "gitRepoId": "fingerprint-pro-server-api-php-sdk", "description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", - "artifactVersion": "6.11.0" + "artifactVersion": "6.12.0" } diff --git a/package.json b/package.json index 2279202a..d4b27ae9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.11.0", + "version": "6.12.0", "private": true, "engines": { "node": ">=18" diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 89cdf9d3..497ddc4c 100644 --- a/src/Api/FingerprintApi.php +++ b/src/Api/FingerprintApi.php @@ -65,7 +65,7 @@ class FingerprintApi protected ClientInterface $client; protected Configuration $config; - protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.11.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.12.0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index 67f44248..4ec8dab5 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -88,7 +88,7 @@ class Configuration /** * User agent of the HTTP request, set to "PHP-Swagger" by default. */ - protected string $userAgent = 'Swagger-Codegen/6.11.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.12.0/php'; /** * Debug switch (default set to false). @@ -429,7 +429,7 @@ public static function toDebugReport(): string $report .= ' OS: '.php_uname().PHP_EOL; $report .= ' PHP Version: '.PHP_VERSION.PHP_EOL; $report .= ' OpenAPI Spec Version: 3'.PHP_EOL; - $report .= ' SDK Package Version: 6.11.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.12.0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;