diff --git a/.changeset/dark-dogs-play.md b/.changeset/dark-dogs-play.md deleted file mode 100644 index 09016fbd..00000000 --- a/.changeset/dark-dogs-play.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -Mark `replayed` field required in the `identification` product schema. This field will always be present. \ No newline at end of file diff --git a/.changeset/pre.json b/.changeset/pre.json deleted file mode 100644 index 26dbf8b7..00000000 --- a/.changeset/pre.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "mode": "exit", - "tag": "develop", - "initialVersions": { - "fingerprint-pro-server-api-php-sdk": "6.7.0" - }, - "changesets": [ - "dark-dogs-play", - "sharp-facts-boil", - "ten-plums-tickle" - ] -} diff --git a/.changeset/sharp-facts-boil.md b/.changeset/sharp-facts-boil.md deleted file mode 100644 index 5a6af8c9..00000000 --- a/.changeset/sharp-facts-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': minor ---- - -Add `sdk` field with platform metadata to `identification` \ No newline at end of file diff --git a/.changeset/ten-plums-tickle.md b/.changeset/ten-plums-tickle.md deleted file mode 100644 index f4e08ec6..00000000 --- a/.changeset/ten-plums-tickle.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'fingerprint-pro-server-api-php-sdk': patch ---- - -Deprecate the Remote Control Detection Smart Signal. This signal is no longer available. \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index ca91bb62..6c3b1937 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Fingerprint Pro Server PHP SDK +## 6.8.0 + +### Minor Changes + +- Mark `replayed` field required in the `identification` product schema. This field will always be present. ([b12c11e](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/b12c11e1b2fb63cb474f8167c4478f3bda13257a)) +- Add `sdk` field with platform metadata to `identification` ([b12c11e](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/b12c11e1b2fb63cb474f8167c4478f3bda13257a)) + +### Patch Changes + +- Deprecate the Remote Control Detection Smart Signal. This signal is no longer available. ([b12c11e](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/b12c11e1b2fb63cb474f8167c4478f3bda13257a)) + ## 6.8.0-develop.0 ### Minor Changes diff --git a/README.md b/README.md index b0a50728..1189dbb5 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.8.0-beta.0 + - Package version: 6.8.0 - Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen ## Requirements diff --git a/composer.json b/composer.json index 64ca6a90..cf444f16 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "fingerprint/fingerprint-pro-server-api-sdk", - "version": "6.8.0-beta.0", + "version": "6.8.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 0525f261..31b492c0 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.8.0-beta.0" + "artifactVersion": "6.8.0" } diff --git a/package.json b/package.json index ce90ab24..3aeee693 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fingerprint-pro-server-api-php-sdk", - "version": "6.8.0-develop.0", + "version": "6.8.0", "private": true, "devDependencies": { "@changesets/cli": "^2.27.8", diff --git a/src/Api/FingerprintApi.php b/src/Api/FingerprintApi.php index 18be3f69..cd184673 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.8.0-beta.0'; + protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.8.0'; public function __construct( ?ClientInterface $client = null, diff --git a/src/Configuration.php b/src/Configuration.php index 99d74d94..deb3663b 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.8.0-beta.0/php'; + protected string $userAgent = 'Swagger-Codegen/6.8.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.8.0-beta.0'.PHP_EOL; + $report .= ' SDK Package Version: 6.8.0'.PHP_EOL; $report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL; return $report;