@frontegg/react 7.12.23-alpha.25866737455 → 7.13.0-alpha.25993159216
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## [7.13.0](https://github.com/frontegg/frontegg-react/compare/v7.12.22...v7.13.0) (2026-5-17)
|
|
4
|
+
|
|
5
|
+
- FR-24663 - Fixed country restriction dark theme input
|
|
6
|
+
- FR-24664 - Fixed country field background in modern theme
|
|
7
|
+
- FR-24693 - Fixed country restriction admin portal not full list of countries display for allow deny lists
|
|
8
|
+
- FR-24661 - Fixed country restriction tip counter updates
|
|
9
|
+
- FR-24667 - Added country restriction admin portal current country is not added to the list after enabling the counter restriction toggle
|
|
10
|
+
|
|
11
|
+
<!-- CURSOR_SUMMARY -->
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
> [!NOTE]
|
|
15
|
+
> **Medium Risk**
|
|
16
|
+
> Updates core Frontegg runtime dependencies, which could change Admin Portal behavior at runtime despite being a small diff. Risk is limited to upstream package changes and lockfile resolution.
|
|
17
|
+
>
|
|
18
|
+
> **Overview**
|
|
19
|
+
> Bumps `@frontegg/react`'s Frontegg dependencies to `7.107.0` by updating `@frontegg/js` and `@frontegg/react-hooks`, along with the corresponding transitive packages in `yarn.lock` (e.g., `@frontegg/redux-store`, `@frontegg/rest-api`, `@frontegg/types`).
|
|
20
|
+
>
|
|
21
|
+
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 0219802f3bad61bcc72c9dfa1b2ac7c424031aaf. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup>
|
|
22
|
+
<!-- /CURSOR_SUMMARY -->
|
|
23
|
+
- FR-24187 - Fixed CPU issues
|
|
24
|
+
|
|
25
|
+
<!-- CURSOR_SUMMARY -->
|
|
26
|
+
---
|
|
27
|
+
|
|
28
|
+
> [!NOTE]
|
|
29
|
+
> **Low Risk**
|
|
30
|
+
> Low risk: this PR only updates dependency versions and lockfile entries, with no in-repo logic changes. Behavior changes, if any, come from the upstream Frontegg packages.
|
|
31
|
+
>
|
|
32
|
+
> **Overview**
|
|
33
|
+
> Updates `packages/react` to depend on `@frontegg/js` and `@frontegg/react-hooks` `7.106.0` (from `7.105.0`).
|
|
34
|
+
>
|
|
35
|
+
> Regenerates `yarn.lock` to pull the matching `7.106.0` versions of transitive Frontegg packages (`@frontegg/types`, `@frontegg/redux-store`, `@frontegg/rest-api`).
|
|
36
|
+
>
|
|
37
|
+
> <sup>Reviewed by [Cursor Bugbot](https://cursor.com/bugbot) for commit 64810cd988f72146c20dc7e4c9069f2c1f07a991. Bugbot is set up for automated code reviews on this repo. Configure [here](https://www.cursor.com/dashboard/bugbot).</sup>
|
|
38
|
+
<!-- /CURSOR_SUMMARY -->
|
|
39
|
+
|
|
40
|
+
### React Wrapper 7.13.0:
|
|
41
|
+
- fix - e2e trigger
|
|
42
|
+
|
|
3
43
|
## [7.12.22](https://github.com/frontegg/frontegg-react/compare/v7.12.21...v7.12.22) (2026-5-5)
|
|
4
44
|
|
|
5
45
|
- FR-24187 - Fixed CPU issues
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@frontegg/react",
|
|
3
3
|
"libName": "FronteggReact",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.13.0-alpha.25993159216",
|
|
5
5
|
"author": "Frontegg LTD",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"types": "index.d.ts",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"build:watch": "rm -rf dist && mkdir dist && rollup -w -c ./rollup.config.js"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@frontegg/js": "7.107.0
|
|
23
|
-
"@frontegg/react-hooks": "7.107.0
|
|
22
|
+
"@frontegg/js": "7.107.0",
|
|
23
|
+
"@frontegg/react-hooks": "7.107.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": ">16.9.0",
|