Skip to content

Commit

Permalink
Merge pull request #130 from fingerprintjs/changeset-release/main
Browse files Browse the repository at this point in the history
Release [changeset]
  • Loading branch information
TheUnderScorer authored Oct 14, 2024
2 parents 1c042ce + 5aa9ece commit d6ff512
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 40 deletions.
5 changes: 0 additions & 5 deletions .changeset/nervous-sheep-attend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-taxis-fetch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-falcons-punch.md

This file was deleted.

13 changes: 0 additions & 13 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-llamas-judge.md

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/Api/FingerprintApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit d6ff512

Please sign in to comment.