Skip to content

Commit 2af7155

Browse files
authored
Merge pull request #158 from fingerprintjs/changeset-release/main
Release [changeset] (test)
2 parents ecf7238 + fa3161c commit 2af7155

File tree

7 files changed

+21
-6
lines changed

7 files changed

+21
-6
lines changed

.changeset/pre.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
"initialVersions": {
55
"fingerprint-pro-server-api-go-sdk": "7.6.0"
66
},
7-
"changesets": []
7+
"changesets": [
8+
"dark-dogs-play",
9+
"sharp-facts-boil",
10+
"ten-plums-tickle"
11+
]
812
}

CHANGELOG.md

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

3+
## 7.7.0-test.0
4+
5+
### Minor Changes
6+
7+
- Mark `replayed` field required in the `identification` product schema. This field will always be present. ([e1387da](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/e1387da86f10cecbcaf4fdc57a9cd08fca6dfe62))
8+
- Add `sdk` field with platform metadata to `identification` ([e1387da](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/e1387da86f10cecbcaf4fdc57a9cd08fca6dfe62))
9+
10+
### Patch Changes
11+
12+
- Deprecate the Remote Control Detection Smart Signal. This signal is no longer available. ([e1387da](https://github.com/fingerprintjs/fingerprint-pro-server-api-go-sdk/commit/e1387da86f10cecbcaf4fdc57a9cd08fca6dfe62))
13+
314
## 7.6.0
415

516
### 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.6.0
25+
- Package version: 7.7.0-test.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.6.0",
2+
"packageVersion": "7.7.0-test.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.6.0",
3+
"version": "7.7.0-test.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.6.0"
18+
const IntegrationInfo = "fingerprint-pro-server-go-sdk/7.7.0-test.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.6.0/go",
96+
UserAgent: "Swagger-Codegen/7.7.0-test.0/go",
9797
region: RegionUS,
9898
}
9999
cfg.basePath = resolveBasePath(cfg.region)

0 commit comments

Comments
 (0)