Skip to content

Commit bc5d071

Browse files
chore(release): changeset created a new release
1 parent 4306971 commit bc5d071

File tree

9 files changed

+14
-18
lines changed

9 files changed

+14
-18
lines changed

.changeset/forty-seas-prove.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/orange-poets-drive.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,16 @@
11
# Fingerprint Pro Server PHP SDK
22

3+
## 6.1.0
4+
5+
### Minor Changes
6+
7+
- Add `relay` detection method to the VPN Detection Smart Signal ([afcf2e9](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/afcf2e9c018490e35c249688d4784fa856853b88))
8+
- **events**: Add a `suspect` field to the `identification` product schema ([afcf2e9](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/afcf2e9c018490e35c249688d4784fa856853b88))
9+
310
## 6.0.0
411

512
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
613

7-
814
### Major Changes
915

1016
- - Remove the `BrowserDetails` field `botProbability`.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
This PHP package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2525

2626
- API version: 3
27-
- Package version: 6.0.0
27+
- Package version: 6.1.0
2828
- Build package: io.swagger.codegen.v3.generators.php.PhpClientCodegen
2929

3030
## Requirements

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint/fingerprint-pro-server-api-sdk",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.",
55
"keywords": [
66
"swagger",

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88
"gitUserId": "fingerprintjs",
99
"gitRepoId": "fingerprint-pro-server-api-php-sdk",
1010
"description": "Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro.",
11-
"artifactVersion": "6.0.0"
11+
"artifactVersion": "6.1.0"
1212
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint-pro-server-api-php-sdk",
3-
"version": "6.0.0",
3+
"version": "6.1.0",
44
"private": true,
55
"devDependencies": {
66
"@changesets/cli": "^2.27.8",

src/Api/FingerprintApi.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class FingerprintApi
5757
protected ClientInterface $client;
5858
protected Configuration $config;
5959

60-
protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.0.0';
60+
protected string $integration_info = 'fingerprint-pro-server-php-sdk/6.1.0';
6161

6262
public function __construct(
6363
?ClientInterface $client = null,

src/Configuration.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class Configuration
8181
/**
8282
* User agent of the HTTP request, set to "PHP-Swagger" by default.
8383
*/
84-
protected string $userAgent = 'Swagger-Codegen/6.0.0/php';
84+
protected string $userAgent = 'Swagger-Codegen/6.1.0/php';
8585

8686
/**
8787
* Debug switch (default set to false).
@@ -422,7 +422,7 @@ public static function toDebugReport(): string
422422
$report .= ' OS: '.php_uname().PHP_EOL;
423423
$report .= ' PHP Version: '.PHP_VERSION.PHP_EOL;
424424
$report .= ' OpenAPI Spec Version: 3'.PHP_EOL;
425-
$report .= ' SDK Package Version: 6.0.0'.PHP_EOL;
425+
$report .= ' SDK Package Version: 6.1.0'.PHP_EOL;
426426
$report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL;
427427

428428
return $report;

0 commit comments

Comments
 (0)