From bc5d071b7a2562ae3406a8fd4ff4a2909a4f712c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 26 Nov 2024 13:10:12 +0000 Subject: [PATCH] chore(release): changeset created a new release --- .changeset/forty-seas-prove.md | 5 ----- .changeset/orange-poets-drive.md | 5 ----- CHANGELOG.md | 8 +++++++- README.md | 2 +- composer.json | 2 +- config.json | 2 +- package.json | 2 +- src/Api/FingerprintApi.php | 2 +- src/Configuration.php | 4 ++-- 9 files changed, 14 insertions(+), 18 deletions(-) delete mode 100644 .changeset/forty-seas-prove.md delete mode 100644 .changeset/orange-poets-drive.md diff --git a/.changeset/forty-seas-prove.md b/.changeset/forty-seas-prove.md deleted file mode 100644 index b61b1305..00000000 --- a/.changeset/forty-seas-prove.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -Add `relay` detection method to the VPN Detection Smart Signal diff --git a/.changeset/orange-poets-drive.md b/.changeset/orange-poets-drive.md deleted file mode 100644 index 2f8bcddb..00000000 --- a/.changeset/orange-poets-drive.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -**events**: Add a `suspect` field to the `identification` product schema \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index c9a065db..f9c71ab1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,16 @@ # Fingerprint Pro Server PHP SDK +## 6.1.0 + +### Minor Changes + +- Add `relay` detection method to the VPN Detection Smart Signal ([afcf2e9](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/afcf2e9c018490e35c249688d4784fa856853b88)) +- **events**: Add a `suspect` field to the `identification` product schema ([afcf2e9](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/afcf2e9c018490e35c249688d4784fa856853b88)) + ## 6.0.0 The underlying Server API hasn’t changed, but we made SDK type and class generation more precise, resulting in small breaking changes for the SDK itself. This change should make the SDK API a lot more stable going forward - ### Major Changes - - Remove the `BrowserDetails` field `botProbability`. diff --git a/README.md b/README.md index b845ab18..9057e327 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.0.0 + - Package version: 6.1.0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index ab1a56aa..00bebf06 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.0.0", + "version": "6.1.0", "description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.", "keywords": [ "swagger", diff --git a/config.json b/config.json index fdd59733..c6038e56 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.0.0" + "artifactVersion": "6.1.0" } diff --git a/package.json b/package.json index 495118e0..1ed97c2e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.0.0", + "version": "6.1.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index cc619677..a4598a69 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.0.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.1.0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index 261a8699..dde8b88d 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.0.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.1.0/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.0.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.1.0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;