From d7157cfc1541d651d47158af5d808e48648cc1f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20=C5=BBydek?= Date: Thu, 29 Jan 2026 14:48:48 +0100 Subject: [PATCH 1/2] chore: revert release --- CHANGELOG.md | 19 ------------------- package.json | 2 +- 2 files changed, 1 insertion(+), 20 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf9f22d0..388922b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,22 +1,3 @@ -## [3.0.0](https://github.com/fingerprintjs/react/compare/v2.7.1...v3.0.0) (2026-01-29) - - -### ⚠ BREAKING CHANGES - -* The SDK api has changed to match changes introduced in V4 version of the agent. - -### Features - -* add usePromiseStore to prevent duplicate async requests ([fb59d7f](https://github.com/fingerprintjs/react/commit/fb59d7fafc7890e29678e2dae53a9f8c549f0acf)) -* bump @fingerprint/agent to 4.0.0-beta.5 ([c5d217d](https://github.com/fingerprintjs/react/commit/c5d217d36c08fddcf955e2f4b198ff5e37320f4f)) -* migrate to v4 version of the agent ([36a26ba](https://github.com/fingerprintjs/react/commit/36a26ba6a2c035e1b3b8dc52b8371a3ed1883b7b)) -* rename package to `@fingerprint/react` ([4714fdf](https://github.com/fingerprintjs/react/commit/4714fdf8526e1b62ab3ad4d84404672c02440da3)) - - -### Build System - -* **deps:** use stable 4.0.0 version of the @fingerprint/agent ([76a2fec](https://github.com/fingerprintjs/react/commit/76a2fec8341cefdcfd323ca69ca80780d68a5c89)) - ## [2.7.1](https://github.com/fingerprintjs/fingerprintjs-pro-react/compare/v2.7.0...v2.7.1) (2025-09-15) diff --git a/package.json b/package.json index 1d889cec..78535be3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fingerprint/react", - "version": "3.0.0", + "version": "3.0.0-test.2", "description": "FingerprintJS Pro React SDK", "main": "dist/fingerprint-react.js", "module": "dist/fingerprint-react.mjs", From 8732de161290e2b160529bd85ad4920f906259a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemys=C5=82aw=20=C5=BBydek?= Date: Thu, 29 Jan 2026 14:49:01 +0100 Subject: [PATCH 2/2] chore: add permissions for Trusted Publishing in release workflow --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 17b6b4b4..af35d074 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,6 +5,10 @@ on: - main - test +permissions: + id-token: write # Required for Trusted Publishing: https://docs.npmjs.com/trusted-publishers + contents: read + jobs: build-and-release: name: 'Build project, run CI checks and publish new release'