Skip to content

Commit 6ff4483

Browse files
authored
Merge pull request #153 from fingerprintjs/changeset-release/main
Release [changeset]
2 parents 1e5ae67 + 63e19a6 commit 6ff4483

File tree

8 files changed

+17
-20
lines changed

8 files changed

+17
-20
lines changed

.changeset/giant-buses-play.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.changeset/modern-moons-pick.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Fingerprint Pro Server Go SDK
22

3+
## 7.5.0
4+
5+
### Minor Changes
6+
7+
- Added explicit enum constant prefixes for better clarity and to avoid name collisions.
8+
The following existing enums now use prefixed constant names (all new enums will follow this convention):
9+
- `VpnConfidence`
10+
- `ErrorCode`
11+
- `BotdBotResult`
12+
Deprecated the old unprefixed constant aliases; they will be removed in the next major release. ([ee87334](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/ee873348f97f1901afbdddf557ac68aa52e4a8d0))
13+
- Add `confidence` property to the Proxy detection Smart Signal, which now supports both residential and public web proxies. ([a50ee45](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/a50ee452d6453185e20d1a42be1d2c8cb14cf90f))
14+
315
## 7.4.0
416

517
### Minor Changes

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Fingerprint Server API allows you to search, update, and delete identification e
2222
This Go package is automatically generated by the [Swagger Codegen](https://github.com/swagger-api/swagger-codegen) project:
2323

2424
- API version: 3
25-
- Package version: 7.4.0
25+
- Package version: 7.5.0
2626
- Build package: io.swagger.codegen.v3.generators.go.GoClientCodegen
2727

2828
## Requirements

config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"packageVersion": "7.4.0",
2+
"packageVersion": "7.5.0",
33
"gitRepoId": "fingerprint-pro-server-api-go-sdk",
44
"gitUserId": "fingerprintjs",
55
"packageName": "sdk",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fingerprint-pro-server-api-go-sdk",
3-
"version": "7.4.0",
3+
"version": "7.5.0",
44
"private": true,
55
"devDependencies": {
66
"@changesets/cli": "^2.27.8",

sdk/api_fingerprint.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import (
1515
"strings"
1616
)
1717

18-
const IntegrationInfo = "fingerprint-pro-server-go-sdk/7.4.0"
18+
const IntegrationInfo = "fingerprint-pro-server-go-sdk/7.5.0"
1919

2020
type FingerprintApiServiceInterface interface {
2121
/*

sdk/configuration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ func (c *Configuration) AddDefaultHeader(key string, value string) {
9393
func NewConfiguration() *Configuration {
9494
cfg := &Configuration{
9595
DefaultHeader: make(map[string]string),
96-
UserAgent: "Swagger-Codegen/7.4.0/go",
96+
UserAgent: "Swagger-Codegen/7.5.0/go",
9797
region: RegionUS,
9898
}
9999
cfg.basePath = resolveBasePath(cfg.region)

0 commit comments

Comments
 (0)