diff --git a/.changeset/nervous-sheep-attend.md b/.changeset/nervous-sheep-attend.md deleted file mode 100644 index 16ca6353..00000000 --- a/.changeset/nervous-sheep-attend.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": minor ---- - -Introduce `toPrettyString` in models that returns json encoded model in a pretty format diff --git a/.changeset/orange-taxis-fetch.md b/.changeset/orange-taxis-fetch.md deleted file mode 100644 index 7258e506..00000000 --- a/.changeset/orange-taxis-fetch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -**visitors**: Add the confidence field to the VPN Detection Smart Signal \ No newline at end of file diff --git a/.changeset/popular-falcons-punch.md b/.changeset/popular-falcons-punch.md deleted file mode 100644 index ddcc1696..00000000 --- a/.changeset/popular-falcons-punch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": patch ---- - -Correctly handle boolean values in `updateEvent` method request body diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 86a36a75..00000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "mode": "exit", - "tag": "develop", - "initialVersions": { - "fingerprint-pro-server-api-php-sdk": "5.0.0" - }, - "changesets": [ - "nervous-sheep-attend", - "orange-taxis-fetch", - "popular-falcons-punch", - "rude-llamas-judge" - ] -} diff --git a/.changeset/rude-llamas-judge.md b/.changeset/rude-llamas-judge.md deleted file mode 100644 index 727098bc..00000000 --- a/.changeset/rude-llamas-judge.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"fingerprint-pro-server-api-php-sdk": patch ---- - -Fix body in `updateEvent` method always being sent as empty json diff --git a/CHANGELOG.md b/CHANGELOG.md index cae55b11..4d7aabc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Fingerprint Pro Server PHP SDK +## 5.1.0 + +### Minor Changes + +- Introduce `toPrettyString` in models that returns json encoded model in a pretty format ([2e5010b](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/2e5010ba106f7e37c0f804fa1844e293c8bd9189)) +- **visitors**: Add the confidence field to the VPN Detection Smart Signal ([4f809a0](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/4f809a06b522161edcc23c769f18771f2821f2ac)) + +### Patch Changes + +- Correctly handle boolean values in `updateEvent` method request body ([d5a8d80](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/d5a8d808f8c20388b0492c660f486d9f3bc4b694)) +- Fix body in `updateEvent` method always being sent as empty json ([acdc56e](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/acdc56e17238ee5531ac35aef0507165d2e315ca)) + ## 5.1.0-develop.2 ### Patch Changes diff --git a/README.md b/README.md index c38fe0af..3da896d7 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: dev-5.1.0-2 + - Package version: 5.1.0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index e6702bf6..5d2cd659 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "dev-5.1.0-2", + "version": "5.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 9a3636e0..22f6428b 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": "dev-5.1.0-2" + "artifactVersion": "5.1.0" } diff --git a/package.json b/package.json index c5f3a698..8dc9e48a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "5.1.0-develop.2", + "version": "5.1.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 7dbeb677..4411f484 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/dev-5.1.0-2'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/5.1.0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index 41eb784d..9b007b4a 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/dev-5.1.0-2/php'; + protected string $userAgent = 'Swagger-Codegen/5.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: dev-5.1.0-2'.PHP_EOL; + $report .= ' SDK Package Version: 5.1.0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;