Skip to content

Commit

Permalink
Merge pull request #132 from fingerprintjs/changeset-release/main
Browse files Browse the repository at this point in the history
Release [changeset]
  • Loading branch information
ilfa authored Oct 29, 2024
2 parents 8ffd1cc + 3a7d214 commit da7df5c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 deletions.
5 changes: 0 additions & 5 deletions .changeset/hip-experts-wink.md

This file was deleted.

6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Fingerprint Pro Server PHP SDK

## 5.1.1

### Patch Changes

- Mark nullable types as an optional, will fix #123 ([9e8f44a](https://github.com/fingerprintjs/fingerprint-pro-server-api-php-sdk/commit/9e8f44a01cd78edbbbd8b480753a63673b723c30))

## 5.1.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: 5.1.0
- Package version: 5.1.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": "5.1.0",
"version": "5.1.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": "5.1.0"
"artifactVersion": "5.1.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",
"version": "5.1.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/5.1.0';
protected string $integration_info = 'fingerprint-pro-server-php-sdk/5.1.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/5.1.0/php';
protected string $userAgent = 'Swagger-Codegen/5.1.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: 5.1.0'.PHP_EOL;
$report .= ' SDK Package Version: 5.1.1'.PHP_EOL;
$report .= ' Temp Folder Path: '.self::getDefaultConfiguration()->getTempFolderPath().PHP_EOL;

return $report;
Expand Down

0 comments on commit da7df5c

Please sign in to comment.