Skip to content

Commit a0ee321

Browse files
Merge remote-tracking branch 'origin/test' into feature/INTER-1708-agent-v4
# Conflicts: # package.json
2 parents 1b6ca6e + 60a42ca commit a0ee321

5 files changed

Lines changed: 34 additions & 4 deletions

File tree

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Reset Prerelease Branch
2+
on:
3+
workflow_dispatch:
4+
5+
jobs:
6+
reset-feature-branch:
7+
uses: fingerprintjs/dx-team-toolkit/.github/workflows/reset-prerelease-branch.yml@v1
8+
with:
9+
branch_name: 'test'
10+
appId: ${{ vars.APP_ID }}
11+
secrets:
12+
APP_PRIVATE_KEY: ${{ secrets.APP_PRIVATE_KEY }}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## [3.0.0-test.2](https://github.com/fingerprintjs/fingerprintjs-pro-react/compare/v3.0.0-test.1...v3.0.0-test.2) (2026-01-06)
2+
3+
4+
### Features
5+
6+
* bump @fingerprint/agent to 4.0.0-beta.5 ([c5d217d](https://github.com/fingerprintjs/fingerprintjs-pro-react/commit/c5d217d36c08fddcf955e2f4b198ff5e37320f4f))
7+
8+
## [3.0.0-test.1](https://github.com/fingerprintjs/fingerprintjs-pro-react/compare/v2.7.1...v3.0.0-test.1) (2025-12-19)
9+
10+
11+
### ⚠ BREAKING CHANGES
12+
13+
* The SDK api has changed to match changes introduced in V4 version of the agent.
14+
15+
### Features
16+
17+
* migrate to v4 version of the agent ([36a26ba](https://github.com/fingerprintjs/fingerprintjs-pro-react/commit/36a26ba6a2c035e1b3b8dc52b8371a3ed1883b7b))
18+
119
## [2.7.1](https://github.com/fingerprintjs/fingerprintjs-pro-react/compare/v2.7.0...v2.7.1) (2025-09-15)
220

321

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fingerprint/react",
3-
"version": "2.7.1",
3+
"version": "3.0.0-test.2",
44
"description": "FingerprintJS Pro React SDK",
55
"main": "dist/fp-react.js",
66
"module": "dist/fp-react.mjs",

src/components/fp-provider.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { usePromiseStore } from '../utils/use-promise-store'
99

1010
export interface FpProviderOptions extends StartOptions {
1111
/**
12-
* If set to `true`, will force FpjsClient to be rebuilt with the new options. Should be used with caution
12+
* If set to `true`, will force the agent to be rebuilt with the new options. Should be used with caution
1313
* since it can be triggered too often (e.g. on every render) and negatively affect performance of the JS agent.
1414
*/
1515
forceRebuild?: boolean
@@ -111,7 +111,7 @@ function ProviderWithEnv({
111111

112112
useEffect(() => {
113113
// By default, the client is always initialized once during the first render and won't be updated
114-
// if the configuration changes. Use `forceRebuilt` flag to disable this behaviour.
114+
// if the configuration changes. Use `forceRebuild` flag to disable this behaviour.
115115
if (!clientRef.current || forceRebuild) {
116116
clientRef.current = createClient()
117117
}

src/use-visitor-data.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export function useVisitorData(
8585
isLoading: false,
8686
isFetched: false,
8787
data: undefined,
88-
error: error,
88+
error,
8989
})
9090

9191
throw error

0 commit comments

Comments
 (0)