Skip to content

Commit 1c35f3a

Browse files
ci(repo): Version packages
1 parent 9b6102c commit 1c35f3a

File tree

8 files changed

+54
-45
lines changed

8 files changed

+54
-45
lines changed

.changeset/flat-horses-battle.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/grumpy-kangaroos-ring.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

packages/expo/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Change Log
22

3+
## 2.7.7
4+
5+
### Patch Changes
6+
7+
- Accept custom `redirectURL` for SSO callback via `startSSOFlow` ([#5102](https://github.com/clerk/javascript/pull/5102)) by [@LauraBeatris](https://github.com/LauraBeatris)
8+
9+
Usage:
10+
11+
```ts
12+
await startSSOFlow({
13+
strategy: 'oauth_google',
14+
redirectUrl: AuthSession.makeRedirectUri({
15+
path: 'dashboard',
16+
}),
17+
});
18+
```
19+
320
## 2.7.6
421

522
### Patch Changes

packages/expo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/clerk-expo",
3-
"version": "2.7.6",
3+
"version": "2.7.7",
44
"description": "Clerk React Native/Expo library",
55
"keywords": [
66
"react",

packages/nuxt/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @clerk/nuxt
22

3+
## 1.1.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`9b6102c551dcd5500e29e3a3de9e6483796f6686`](https://github.com/clerk/javascript/commit/9b6102c551dcd5500e29e3a3de9e6483796f6686)]:
8+
- @clerk/vue@1.1.12
9+
310
## 1.1.3
411

512
### Patch Changes

packages/nuxt/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/nuxt",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"description": "Clerk SDK for Nuxt",
55
"keywords": [
66
"clerk",

packages/vue/CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
11
# @clerk/vue
22

3+
## 1.1.12
4+
5+
### Patch Changes
6+
7+
- Adds ability to render custom `<UserProfile>` links inside `<UserButton>` component. ([#5128](https://github.com/clerk/javascript/pull/5128)) by [@wobsoriano](https://github.com/wobsoriano)
8+
9+
Example:
10+
11+
```vue
12+
<script setup>
13+
import { UserButton } from '@clerk/vue';
14+
</script>
15+
16+
<template>
17+
<UserButton>
18+
<UserButton.UserProfileLink
19+
label="Homepage"
20+
url="/"
21+
>
22+
<template #labelIcon>
23+
<div>Icon</div>
24+
</template>
25+
</UserButton.UserProfileLink>
26+
</UserButton>
27+
</template>
28+
```
29+
330
## 1.1.11
431

532
### Patch Changes

packages/vue/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/vue",
3-
"version": "1.1.11",
3+
"version": "1.1.12",
44
"description": "Clerk SDK for Vue",
55
"keywords": [
66
"clerk",

0 commit comments

Comments
 (0)