From b0ae4931f3cbf88b89d973b539032078a2cfba25 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Wed, 26 Jun 2024 11:48:21 +0000 Subject: [PATCH] chore(release): 6.0.0-test.2 [skip ci] ## [6.0.0-test.2](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v6.0.0-test.1...v6.0.0-test.2) (2024-06-26) ### Bug Fixes * allow passing `nil` configuration to `NewAPIClient` ([2e8f03a](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/2e8f03adfb484232d80a7c72d98b670a54e1831a)) * use correct error type for `incognito`, `rawDeviceAttributes` and `tampering` in the `GetEvent` method ([1487938](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/1487938f431c8032689599ed2bca07d970eb88fb)) --- CHANGELOG.md | 8 ++++++++ README.md | 2 +- config.json | 2 +- sdk/api_fingerprint.go | 2 +- sdk/configuration.go | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a6a8ca9..4370cdf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [6.0.0-test.2](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v6.0.0-test.1...v6.0.0-test.2) (2024-06-26) + + +### Bug Fixes + +* allow passing `nil` configuration to `NewAPIClient` ([2e8f03a](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/2e8f03adfb484232d80a7c72d98b670a54e1831a)) +* use correct error type for `incognito`, `rawDeviceAttributes` and `tampering` in the `GetEvent` method ([1487938](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/1487938f431c8032689599ed2bca07d970eb88fb)) + ## [6.0.0-test.1](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/compare/v5.0.2...v6.0.0-test.1) (2024-06-21) diff --git a/README.md b/README.md index 5ae6671..04d9cdd 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Fingerprint Pro Server API allows you to get information about visitors and abou This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project: - API version: 3 -- Package version: 6.0.0-test.1 +- Package version: 6.0.0-test.2 - Build package: io.swagger.codegen.v3.generators.go.GoClientCodegen ## Requirements diff --git a/config.json b/config.json index 436b97c..3a0bcfe 100644 --- a/config.json +++ b/config.json @@ -1,5 +1,5 @@ { - "packageVersion": "6.0.0-test.1", + "packageVersion": "6.0.0-test.2", "gitRepoId": "fingerprint-pro-server-api-go-sdk", "gitUserId": "fingerprintjs", "packageName": "sdk", diff --git a/sdk/api_fingerprint.go b/sdk/api_fingerprint.go index be8d08e..af0e4d6 100644 --- a/sdk/api_fingerprint.go +++ b/sdk/api_fingerprint.go @@ -15,7 +15,7 @@ import ( "strings" ) -const IntegrationInfo = "fingerprint-pro-server-go-sdk/6.0.0-test.1" +const IntegrationInfo = "fingerprint-pro-server-go-sdk/6.0.0-test.2" type FingerprintApiServiceInterface interface { /* diff --git a/sdk/configuration.go b/sdk/configuration.go index 3ac0e71..3a258a0 100644 --- a/sdk/configuration.go +++ b/sdk/configuration.go @@ -93,7 +93,7 @@ func (c *Configuration) AddDefaultHeader(key string, value string) { func NewConfiguration() *Configuration { cfg := &Configuration{ DefaultHeader: make(map[string]string), - UserAgent: "Swagger-Codegen/6.0.0-test.1/go", + UserAgent: "Swagger-Codegen/6.0.0-test.2/go", region: RegionUS, } cfg.basePath = resolveBasePath(cfg.region)