Skip to content

Commit bf02841

Browse files
committed
chore: release v0.3.7
1 parent 6bbe538 commit bf02841

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [0.3.7](https://github.com/xiaoluoboding/auth-ui-vue/compare/v0.3.6...v0.3.7) (2024-05-02)
2+
3+
4+
### Features
5+
6+
* add anonymous sign-ins ([6bbe538](https://github.com/xiaoluoboding/auth-ui-vue/commit/6bbe538012761072e02733e9e192b1cb0b330e38))
7+
8+
9+
110
## [0.3.6](https://github.com/xiaoluoboding/auth-ui-vue/compare/v0.3.5...v0.3.6) (2023-12-26)
211

312

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Customizable authentication UI component with custom themes and extensible style
3636
- [Social Providers](#social-providers)
3737
- [Options](#options)
3838
- [Supported Views](#supported-views)
39-
- [Anonymous User](#anonymous-user)
39+
- [Anonymous Sign-ins](#anonymous-sign-ins)
4040
- [Customization](#customization)
4141
- [Predefined themes](#predefined-themes)
4242
- [Switch theme variations](#switch-theme-variations)
@@ -210,6 +210,7 @@ The Auth component is currently shipped with the following views:
210210
- [Social Login](https://supabase.com/docs/guides/auth/social-login)
211211
- [Update password](https://supabase.com/docs/guides/auth/auth-password-reset#update-password)
212212
- [Forgotten password](https://supabase.com/docs/guides/auth/auth-password-reset#sending-password-reset-email)
213+
- [Anonymous Sign-ins](https://supabase.com/docs/guides/auth/auth-anonymous)
213214

214215
```html
215216
<template>
@@ -232,10 +233,11 @@ const redirectTo = computed(() => {
232233
</script>
233234

234235
```
235-
### Anonymous User
236+
237+
### Anonymous Sign-ins
236238

237239
The Auth component is currently support [Anonymous user login](https://supabase.com/docs/guides/auth/auth-anonymous#sign-in-anonymously).
238-
For this you need to create an anonymous user
240+
For this you need to create an anonymous user
239241

240242
```js
241243
const { data, error } = await supabase.auth.signInAnonymously()
@@ -244,8 +246,7 @@ const { data, error } = await supabase.auth.signInAnonymously()
244246
[Enable manual linking](https://supabase.com/dashboard/project/_/settings/auth) in supabase
245247

246248
Currently works for magic link and social login.
247-
If you use password login, you need user to update password after he
248-
249+
If you use password login, you need user to update password after he
249250

250251
## Customization
251252

0 commit comments

Comments
 (0)