@frontegg/react 7.0.1-alpha.10356718782 → 7.0.1-alpha.10401576340

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,3 +1,49 @@
1
+ # Change Log
2
+
3
+ ## [7.0.1](https://github.com/frontegg/frontegg-react/compare/v7.0.0...v7.0.1) (2024-8-15)
4
+
5
+
6
+ ### React Wrapper 7.0.1:
7
+ - FR-17462: fix auth token
8
+ # Change Log
9
+
10
+ ## [7.0.0](https://github.com/frontegg/frontegg-react/compare/v6.0.48...v7.0.0) (2024-8-5)
11
+
12
+ ### 🚀 Major Changes
13
+ - **Store Management:**
14
+ - Replaced the existing Redux store with Valtio. This change significantly reduces the bundle size, removes the boilerplate code associated with generator functions, and enables actions to be `async/await`. The new approach provides better stack traces and allows actions to be awaited directly, eliminating the need for callback functions.
15
+
16
+ ### 🔧 Upgrades
17
+ - **TypeScript:**
18
+ - Upgraded TypeScript from version `v3.9.7` to `v5.5.4`. This update ensures compatibility with the latest TypeScript features and improves overall type-checking and developer experience.
19
+
20
+ - **Testing Framework:**
21
+ - Upgraded Jest to version `v29`. This upgrade includes performance improvements, new features, and bug fixes, ensuring more reliable and faster tests.
22
+
23
+ - **UI Dependencies:**
24
+ - Upgraded Material UI, Emotion, and Stylis to their latest versions, enhancing UI component performance, styling flexibility, and overall user experience.
25
+
26
+ - **Node.js:**
27
+ - Upgraded Node.js from version `16` to `18.18`, ensuring compatibility with the latest features and security updates.
28
+
29
+ ### 🛠 Enhancements
30
+ - **Refactor:**
31
+ - Refactored code to use nested imports in Material UI, which helps reduce bundle size.
32
+
33
+ - **MFA (Multi-Factor Authentication):**
34
+ - Changed the MFA code input to auto-submit upon completion for a smoother user experience.
35
+
36
+ - **Dependencies:**
37
+ - Incremented various dependencies, Node.js, and TypeScript to align with the latest standards and ensure better performance and security.
38
+
39
+ - **New Feature:**
40
+ - Added a "Resend Invitation Email" action to the users table on the "All Accounts" page, improving user management capabilities.
41
+
42
+ ### ⚠️ Breaking Changes
43
+ - **Permissions & Privacy Page:**
44
+ - Removed permissions from the privacy page. The user privacy page will now be displayed for all users in the admin portal.
45
+
46
+
1
47
  # Change Log
2
48
 
3
49
  ## [6.0.48](https://github.com/frontegg/frontegg-react/compare/v6.0.47...v6.0.48) (2024-7-22)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@frontegg/react",
3
3
  "libName": "FronteggReact",
4
- "version": "7.0.1-alpha.10356718782",
4
+ "version": "7.0.1-alpha.10401576340",
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.2.0-alpha.3",
23
- "@frontegg/react-hooks": "7.2.0-alpha.3"
22
+ "@frontegg/js": "7.2.0",
23
+ "@frontegg/react-hooks": "7.2.0"
24
24
  },
25
25
  "peerDependencies": {
26
26
  "react": ">16.9.0",