From 6ecc7d3bb3c49f170f892dd6715787ea1f842c21 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 23 Jan 2025 16:30:27 +0000 Subject: [PATCH] chore(release): changeset created a new release --- .changeset/flat-zebras-cough.md | 5 ----- .changeset/rude-fans-pump.md | 5 ----- CHANGELOG.md | 7 +++++++ 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(+), 17 deletions(-) delete mode 100644 .changeset/flat-zebras-cough.md delete mode 100644 .changeset/rude-fans-pump.md diff --git a/.changeset/flat-zebras-cough.md b/.changeset/flat-zebras-cough.md deleted file mode 100644 index f67c7d1f..00000000 --- a/.changeset/flat-zebras-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": patch ---- - -Fix problem with empty `Sibdivisions` array in the `Geolocation` model diff --git a/.changeset/rude-fans-pump.md b/.changeset/rude-fans-pump.md deleted file mode 100644 index 9c109937..00000000 --- a/.changeset/rude-fans-pump.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": patch ---- - -Fix scalar values serialization (affects `EventsUpdateRequest`) diff --git a/CHANGELOG.md b/CHANGELOG.md index 704539b8..af101372 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Fingerprint Pro Server PHP SDK +## 6.2.1 + +### Patch Changes + +- Fix problem with empty `Sibdivisions` array in the `Geolocation` model ([ebd29b3](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/ebd29b384545d2261d0f6e7fa0eddd5689638ca2)) +- Fix scalar values serialization (affects `EventsUpdateRequest`) ([123ca07](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/123ca07e6e8fc65b2a1bf7e8b736761fcb900e9e)) + ## 6.2.0 ### Minor Changes diff --git a/README.md b/README.md index d5f0cbbf..11595d81 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.2.0 + - Package version: 6.2.1 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index b29e8203..ad6db343 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.2.0", + "version": "6.2.1", "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 caa6be09..a1c9978e 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.2.0" + "artifactVersion": "6.2.1" } diff --git a/package.json b/package.json index 979ce920..fd919b51 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.2.0", + "version": "6.2.1", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 9cb0e78d..9c5f6557 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.2.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.2.1'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index 34c20954..1674320d 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.2.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.2.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.2.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.2.1'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;