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

v8.0.7 #293

Merged
merged 2 commits into from
Nov 21, 2023
Merged
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
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## [8.0.7](https://github.com/frontegg/frontegg-nextjs/compare/v8.0.6...v8.0.7) (2023-11-20)

FR-14201 - Fixed login with SMS resend code action
FR-13913 - Let tenants and users set an expiry on client credentials API tokens
FR-14099 - Fix load custom login routes only when necessary
FR-13605 - Support adding a phone number field to the signup page and control his required state
FR-13123 - Added support to provide scopes for social logins

# Change Log

## [8.0.6](https://github.com/frontegg/frontegg-nextjs/compare/v8.0.5...v8.0.6) (2023-10-24)

- FR-13772 - Fixed issue on edit user roles modal - at least 1 role is required
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": "8.0.6",
"version": "8.0.7",
"npmClient": "yarn",
"publishConfig": {
"registry": "https://registry.npmjs.org",
Expand Down
2 changes: 1 addition & 1 deletion packages/example-app-directory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frontegg/example-app-directory",
"version": "8.0.6",
"version": "8.0.7",
"private": true,
"scripts": {
"clean": "rm -rf ./node_modules && rm -rf ./.next",
Expand Down
2 changes: 1 addition & 1 deletion packages/example-pages/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@frontegg/example-pages",
"version": "8.0.6",
"version": "8.0.7",
"private": true,
"scripts": {
"clean": "rm -rf ./node_modules && rm -rf ./.next",
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@frontegg/nextjs",
"libName": "FronteggNextJs",
"version": "8.0.6",
"version": "8.0.7",
"author": "Frontegg LTD",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/src/sdkVersion.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export default { version: '8.0.6' };
export default { version: '8.0.7' };
Loading