Skip to content

Commit

Permalink
Merge pull request #126 from fingerprintjs/changeset-release/main
Browse files Browse the repository at this point in the history
Release [changeset] (develop)
  • Loading branch information
TheUnderScorer authored Oct 10, 2024
2 parents d179072 + 6313ee4 commit 8ec0052
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 8 deletions.
4 changes: 3 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
"fingerprint-pro-server-api-php-sdk": "5.0.0"
},
"changesets": [
"orange-taxis-fetch"
"nervous-sheep-attend",
"orange-taxis-fetch",
"rude-llamas-judge"
]
}
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Fingerprint Pro Server PHP SDK

## 5.1.0-develop.1

### 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))

### Patch Changes

- 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.0

### Minor 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-0
- Package version: dev-5.1.0-1
- 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-0",
"version": "dev-5.1.0-1",
"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-0"
"artifactVersion": "dev-5.1.0-1"
}
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.0",
"version": "5.1.0-develop.1",
"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-0';
protected string $integration_info = 'fingerprint-pro-server-php-sdk/dev-5.1.0-1';

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-0/php';
protected string $userAgent = 'Swagger-Codegen/dev-5.1.0-1/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-0'.PHP_EOL;
$report .= ' SDK Package Version: dev-5.1.0-1'.PHP_EOL;
$report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL;

return $report;
Expand Down

0 comments on commit 8ec0052

Please sign in to comment.