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.19 #1090

Merged
merged 2 commits into from
Jan 3, 2024
Merged

v6.0.19 #1090

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
92 changes: 49 additions & 43 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,46 +1,52 @@
# Change Log

## [6.0.18](https://github.com/frontegg/frontegg-react/compare/v6.0.17...v6.0.18) (2023-12-31)

- FR-14228 - Added Step Up feature to allow a second layer of authentication for sensitive actions


- FR-14578 - Fixed custom login without tenant alias
- FR-14638 - Missing exp on user interface
- FR-14560 - added temporary users feature



## [6.0.17](https://github.com/frontegg/frontegg-react/compare/v6.0.16...v6.0.17) (2023-12-21)

- FR-14644 - Fixed enroll authenticator app missing error message when code is wrong



## [6.0.16](https://github.com/frontegg/frontegg-react/compare/v6.0.15...v6.0.16) (2023-12-20)

- FR-14219 - Step up - Embedded flow

- FR-14324 - Fix direct login custom social login



## [6.0.15](https://github.com/frontegg/frontegg-react/compare/v6.0.14...v6.0.15) (2023-12-17)

- FR-10692 - Remove the ability to select a full category on webhooks page



## [6.0.14](https://github.com/frontegg/frontegg-react/compare/v6.0.13...v6.0.14) (2023-12-12)

- FR-14324 - Fix android native module and add option for direct social login


## [6.0.13](https://github.com/frontegg/frontegg-react/compare/v6.0.12...v6.0.13) (2023-12-10)

- FR-14287 - Fix grammar of 1 day expiry of api tokens


# Change Log

## [6.0.19](https://github.com/frontegg/frontegg-react/compare/v6.0.18...v6.0.19) (2024-1-3)

- FR-14753 - Fixed step up key removing when user does not finish step up flow



## [6.0.18](https://github.com/frontegg/frontegg-react/compare/v6.0.17...v6.0.18) (2023-12-31)

- FR-14228 - Added Step Up feature to allow a second layer of authentication for sensitive actions


- FR-14578 - Fixed custom login without tenant alias
- FR-14638 - Missing exp on user interface
- FR-14560 - added temporary users feature



## [6.0.17](https://github.com/frontegg/frontegg-react/compare/v6.0.16...v6.0.17) (2023-12-21)

- FR-14644 - Fixed enroll authenticator app missing error message when code is wrong



## [6.0.16](https://github.com/frontegg/frontegg-react/compare/v6.0.15...v6.0.16) (2023-12-20)

- FR-14219 - Step up - Embedded flow

- FR-14324 - Fix direct login custom social login



## [6.0.15](https://github.com/frontegg/frontegg-react/compare/v6.0.14...v6.0.15) (2023-12-17)

- FR-10692 - Remove the ability to select a full category on webhooks page



## [6.0.14](https://github.com/frontegg/frontegg-react/compare/v6.0.13...v6.0.14) (2023-12-12)

- FR-14324 - Fix android native module and add option for direct social login


## [6.0.13](https://github.com/frontegg/frontegg-react/compare/v6.0.12...v6.0.13) (2023-12-10)

- FR-14287 - Fix grammar of 1 day expiry of api tokens


# Change Log

## [6.0.12](https://github.com/frontegg/frontegg-react/compare/v6.0.11...v6.0.12) (2023-11-30)
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.18",
"version": "6.0.19",
"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.18",
"version": "6.0.19",
"private": true,
"author": "Frontegg LTD",
"scripts": {
Expand All @@ -10,7 +10,7 @@
"test": "echo 'No Unit Tests'"
},
"dependencies": {
"@frontegg/react": "^6.0.18",
"@frontegg/react": "^6.0.19",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.3.3"
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.18",
"version": "6.0.19",
"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.18' };
export default { version: '6.0.19' };
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.18",
"version": "6.0.19",
"scripts": {
"build": "docker-compose build test",
"build:dev": "docker-compose build test --no-cache",
Expand Down
Loading