-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/add-server-side-session-storage
- Loading branch information
Showing
27 changed files
with
4,031 additions
and
1,240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,69 @@ | ||
# Changelog | ||
|
||
|
||
## v0.5.13 | ||
|
||
[compare changes](https://github.com/atinux/nuxt-auth-utils/compare/v0.5.12...v0.5.13) | ||
|
||
### 🩹 Fixes | ||
|
||
- **bluesky:** Use local map for session storing ([#340](https://github.com/atinux/nuxt-auth-utils/pull/340)) | ||
|
||
### 🏡 Chore | ||
|
||
- **playground:** Update nuxt version ([4852cd7](https://github.com/atinux/nuxt-auth-utils/commit/4852cd7)) | ||
- Fix types ([43d7d11](https://github.com/atinux/nuxt-auth-utils/commit/43d7d11)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Neil Richter ([@noook](http://github.com/noook)) | ||
- Sébastien Chopin <[email protected]> | ||
|
||
## v0.5.12 | ||
|
||
[compare changes](https://github.com/atinux/nuxt-auth-utils/compare/v0.5.11...v0.5.12) | ||
|
||
### 🚀 Enhancements | ||
|
||
- **session:** Add generated session id ([#338](https://github.com/atinux/nuxt-auth-utils/pull/338)) | ||
- Add bluesky as a provider ([#281](https://github.com/atinux/nuxt-auth-utils/pull/281)) | ||
|
||
### 🏡 Chore | ||
|
||
- Update deps ([1d4c52c](https://github.com/atinux/nuxt-auth-utils/commit/1d4c52c)) | ||
|
||
### ❤️ Contributors | ||
|
||
- Sébastien Chopin <[email protected]> | ||
- Neil Richter <[email protected]> | ||
|
||
## v0.5.11 | ||
|
||
[compare changes](https://github.com/atinux/nuxt-auth-utils/compare/v0.5.10...v0.5.11) | ||
|
||
### 🚀 Enhancements | ||
|
||
- Set `email_verified` in `user` on GitHub provider ([#332](https://github.com/atinux/nuxt-auth-utils/pull/332)) | ||
- **composable:** Add `openInPopup(route, { width, height })` ([#336](https://github.com/atinux/nuxt-auth-utils/pull/336)) | ||
- Add Gitea Oauth Provider ([#335](https://github.com/atinux/nuxt-auth-utils/pull/335)) | ||
|
||
### 🩹 Fixes | ||
|
||
- Dammit corepack ([239f97a](https://github.com/atinux/nuxt-auth-utils/commit/239f97a)) | ||
- **microsoft:** Fix duplicated scopes ([#331](https://github.com/atinux/nuxt-auth-utils/pull/331)) | ||
|
||
### 🏡 Chore | ||
|
||
- **release:** V0.5.10 ([42a2a7a](https://github.com/atinux/nuxt-auth-utils/commit/42a2a7a)) | ||
- **ci:** Fix corepack ([be2ccaf](https://github.com/atinux/nuxt-auth-utils/commit/be2ccaf)) | ||
|
||
### ❤️ Contributors | ||
|
||
- H+ ([@justserdar](http://github.com/justserdar)) | ||
- Emmanuel Salomon ([@ManUtopiK](http://github.com/ManUtopiK)) | ||
- Sébastien Chopin ([@atinux](http://github.com/atinux)) | ||
- Alessandro Jean ([@alessandrojean](http://github.com/alessandrojean)) | ||
|
||
## v0.5.10 | ||
|
||
[compare changes](https://github.com/atinux/nuxt-auth-utils/compare/v0.5.9...v0.5.10) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
export default defineOAuthBlueskyEventHandler({ | ||
async onSuccess(event, { user }) { | ||
await setUserSession(event, { | ||
user: { | ||
bluesky: user.did, | ||
}, | ||
loggedInAt: Date.now(), | ||
}) | ||
|
||
return sendRedirect(event, '/') | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export default defineOAuthGiteaEventHandler({ | ||
config: { | ||
emailRequired: true, | ||
}, | ||
async onSuccess(event, { user }) { | ||
await setUserSession(event, { | ||
user: { | ||
gitea: user.email, | ||
}, | ||
loggedInAt: Date.now(), | ||
}) | ||
return sendRedirect(event, '/') | ||
}, | ||
|
||
}) |
Oops, something went wrong.