Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
"fix-backed-enum-build-query",
"loud-donuts-lead",
"quick-cows-battle",
"sour-eagles-notice",
"wet-socks-fold",
"witty-lions-worry",
"yellow-ducks-spend"
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Fingerprint Server PHP SDK

## 7.2.0-beta.2

### Patch Changes

- temporary changeset: fix date-time formatting in query parameters ([bb21f46](https://github.com/fingerprintjs/php-sdk/commit/bb21f463e619f21368b27b5734aa257e45fb14f9))

## 7.2.0-beta.1

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions 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 [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 4
- Package version: 7.2.0-beta.1
- Package version: 7.2.0-beta.2
- Build package: org.openapitools.codegen.languages.PhpClientCodegen

## Requirements
Expand All @@ -48,7 +48,7 @@ To install the bindings via [Composer](https://getcomposer.org/), add the follow
```
{
"require": {
"fingerprint/server-sdk": "^7.2.0-beta.1"
"fingerprint/server-sdk": "^7.2.0-beta.2"
}
}
```
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/server-sdk",
"version": "7.2.0-beta.1",
"version": "7.2.0-beta.2",
"description": "Fingerprint Server API allows you to get, search, and update Events in a server environment. It can be used for data exports, decision-making, and data analysis scenarios. Server API is intended for server-side usage, it's not intended to be used from the client side, whether it's a browser or a mobile device.",
"keywords": [
"php",
Expand Down
2 changes: 1 addition & 1 deletion config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"gitRepoBaseURL": "https://github.com",
"gitUserId": "fingerprintjs",
"gitRepoId": "php-sdk",
"artifactVersion": "7.2.0-beta.1",
"artifactVersion": "7.2.0-beta.2",
"organizationName": "Fingerprint",
"organizationUrl": "https://fingerprint.com",
"licenseName": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fingerprint/php-sdk",
"version": "7.2.0-beta.1",
"version": "7.2.0-beta.2",
"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 @@ -80,7 +80,7 @@ class FingerprintApi
/**
* @var string integration information
*/
protected string $integration_info = 'fingerprint-pro-server-php-sdk/7.2.0-beta.1';
protected string $integration_info = 'fingerprint-pro-server-php-sdk/7.2.0-beta.2';

/**
* @param Configuration $config API client configuration
Expand Down
4 changes: 2 additions & 2 deletions src/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class Configuration
/**
* Fingerprint PHP Server SDK Version.
*/
public const VERSION = '7.2.0-beta.1';
public const VERSION = '7.2.0-beta.2';

public const REGION_GLOBAL = 'https://api.fpjs.io/v4';
public const REGION_EUROPE = 'https://eu.api.fpjs.io/v4';
Expand All @@ -62,7 +62,7 @@ class Configuration
/**
* User agent of the HTTP request, set to "OpenAPI-Generator/{version}/PHP" by default.
*/
protected string $userAgent = 'fingerprint-php-sdk/7.2.0-beta.1';
protected string $userAgent = 'fingerprint-php-sdk/7.2.0-beta.2';

/**
* Debug switch (default set to false).
Expand Down
Loading