From 0d594df9bdf8972da41878a73e347711f86e545e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 8 Sep 2025 10:05:24 +0000 Subject: [PATCH] chore(release): changeset created a new release (develop) --- .changeset/pre.json | 1 + CHANGELOG.md | 6 ++++++ README.md | 2 +- composer.json | 2 +- config.json | 2 +- package.json | 2 +- src/Api/FingerprintApi.php | 2 +- src/Configuration.php | 4 ++-- 8 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.changeset/pre.json b/.changeset/pre.json index 43b036ed..6a15a95c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -7,6 +7,7 @@ "changesets": [ "cute-buses-attend", "fast-hotels-hunt", + "proud-feet-attack", "quick-kiwis-visit" ] } diff --git a/CHANGELOG.md b/CHANGELOG.md index a7e69412..ad998c11 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Fingerprint Pro Server PHP SDK +## 6.10.0-develop.1 + +### Minor Changes + +- Add `proximity` signal that represents a fixed geographical zone in a discrete global grid within which the device is observed. ([47a43dc](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/47a43dc76489ab186c0d10b3b85c8b840a6861c8)) + ## 6.10.0-develop.0 ### Minor Changes diff --git a/README.md b/README.md index 5150a79b..ad1b1f93 100644 --- a/README.md +++ b/README.md @@ -24,7 +24,7 @@ This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 - - Package version: 6.10.0-beta.0 + - Package version: 6.10.0-beta.1 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index c22a583d..ca4268f1 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.10.0-beta.0", + "version": "6.10.0-beta.1", "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 2211672c..593e8f3c 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.10.0-beta.0" + "artifactVersion": "6.10.0-beta.1" } diff --git a/package.json b/package.json index 242e6f69..fd8c7e12 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.10.0-develop.0", + "version": "6.10.0-develop.1", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 33c791cf..fb9c7fd8 100644 --- a/src/Api/FingerprintApi.php +++ b/src/Api/FingerprintApi.php @@ -57,7 +57,7 @@ class FingerprintApi protected ClientInterface $client; protected Configuration $config; - protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.10.0-beta.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.10.0-beta.1'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index f9b16833..1115c960 100644 --- a/src/Configuration.php +++ b/src/Configuration.php @@ -81,7 +81,7 @@ class Configuration /** * User agent of the HTTP request, set to "PHP-Swagger" by default. */ - protected string $userAgent = 'Swagger-Codegen/6.10.0-beta.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.10.0-beta.1/php'; /** * Debug switch (default set to false). @@ -422,7 +422,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.10.0-beta.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.10.0-beta.1'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;