Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v6.0.43 #1153

Merged
merged 2 commits into from
Jul 4, 2024
Merged

v6.0.43 #1153

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 46 additions & 39 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,43 +1,50 @@
# Change Log

## [6.0.42](https://github.com/frontegg/frontegg-react/compare/v6.0.41...v6.0.42) (2024-7-2)

- FR-16704 - fix password meter unsuspended async component



## [6.0.41](https://github.com/frontegg/frontegg-react/compare/v6.0.40...v6.0.41) (2024-6-30)

FR-15484 - Fix update tenant state after account settings change
FR-16613 - Add automatic sub-account access in MSP



## [6.0.40](https://github.com/frontegg/frontegg-react/compare/v6.0.39...v6.0.40) (2024-6-3)

- FR-16513 - Show client id on all tokens in API tokens table



## [6.0.39](https://github.com/frontegg/frontegg-react/compare/v6.0.38...v6.0.39) (2024-5-28)

- FR-16341 - Support hiding columns in admin portal users table



## [6.0.38](https://github.com/frontegg/frontegg-react/compare/v6.0.37...v6.0.38) (2024-5-27)

# Change Log

## [6.0.43](https://github.com/frontegg/frontegg-react/compare/v6.0.42...v6.0.43) (2024-7-4)

- FR-16881 - Fixed hosted login redirect url when using basename
- FR-16812 - Fixed dark theme disabled input palette



## [6.0.42](https://github.com/frontegg/frontegg-react/compare/v6.0.41...v6.0.42) (2024-7-2)

- FR-16704 - Fixed password meter unsuspended async component



## [6.0.41](https://github.com/frontegg/frontegg-react/compare/v6.0.40...v6.0.41) (2024-6-30)

- FR-15484 - Fixed update tenant state after account settings change
- FR-16613 - Added automatic sub-account access in MSP



## [6.0.40](https://github.com/frontegg/frontegg-react/compare/v6.0.39...v6.0.40) (2024-6-3)

- FR-16513 - Show client id on all tokens in API tokens table



## [6.0.39](https://github.com/frontegg/frontegg-react/compare/v6.0.38...v6.0.39) (2024-5-28)

- FR-16341 - Support hiding columns in admin portal users table



## [6.0.38](https://github.com/frontegg/frontegg-react/compare/v6.0.37...v6.0.38) (2024-5-27)

- FR-16463 - Removed domain restrictions validation when invite user from All Accounts page
- FR-16421 - Fixed error handling in edit phone number dialog


## [6.0.37](https://github.com/frontegg/frontegg-react/compare/v6.0.36...v6.0.37) (2024-5-2)

- FR-15124 - Store redirectUri before social-login as oauth2 state and restore it after successfully redirect
- FR-16117 - avoid showing apps without name in users table

- FR-16165 - Added switch tenant functionality for VanillaJS SDK

- FR-16421 - Fixed error handling in edit phone number dialog
## [6.0.37](https://github.com/frontegg/frontegg-react/compare/v6.0.36...v6.0.37) (2024-5-2)
- FR-15124 - Store redirectUri before social-login as oauth2 state and restore it after successfully redirect
- FR-16117 - avoid showing apps without name in users table
- FR-16165 - Added switch tenant functionality for VanillaJS SDK
# Change Log

## [6.0.36](https://github.com/frontegg/frontegg-react/compare/v6.0.35...v6.0.36) (2024-4-21)
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "6.0.42",
"version": "6.0.43",
"npmClient": "yarn",
"useWorkspaces": true,
"publishConfig": {
Expand Down
4 changes: 2 additions & 2 deletions packages/demo-saas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frontegg/demo-saas",
"version": "6.0.42",
"version": "6.0.43",
"private": true,
"author": "Frontegg LTD",
"scripts": {
Expand All @@ -12,7 +12,7 @@
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@frontegg/react": "^6.0.42",
"@frontegg/react": "^6.0.43",
"@mui/icons-material": "5.11.0",
"@mui/material": "5.0.3",
"react": "^17.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontegg/react",
"libName": "FronteggReact",
"version": "6.0.42",
"version": "6.0.43",
"author": "Frontegg LTD",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/sdkVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default { version: '6.0.42' };
export default { version: '6.0.43' };
2 changes: 1 addition & 1 deletion packages/sanity-check/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "frontegg-react-sanity-check",
"private": true,
"version": "6.0.42",
"version": "6.0.43",
"scripts": {
"build": "docker-compose build test",
"build:dev": "docker-compose build test --no-cache",
Expand Down
Loading