Skip to content

Commit ae04aa1

Browse files
ci(repo): Version packages
1 parent ab06832 commit ae04aa1

File tree

11 files changed

+76
-66
lines changed

11 files changed

+76
-66
lines changed

.changeset/chilly-suns-beg.md

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

.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/astro/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @clerk/astro
22

3+
## 2.2.0
4+
5+
### Minor Changes
6+
7+
- Add support for type-safe environment variables using the [`astro:env` API](https://docs.astro.build/en/reference/configuration-reference/#env). ([#5104](https://github.com/clerk/javascript/pull/5104)) by [@wobsoriano](https://github.com/wobsoriano)
8+
9+
The integration now provides a type-safe schema for all Clerk environment variables by default. You can use the environment variables like so:
10+
11+
```js
12+
import { PUBLIC_CLERK_PUBLISHABLE_KEY } from 'astro:env/client';
13+
import { CLERK_SECRET_KEY } from 'astro:env/server';
14+
```
15+
16+
To override this behavior, you can disable the feature by setting `enableEnvSchema` to `false`:
17+
18+
```js
19+
export default defineConfig({
20+
integrations: [clerk({ enableEnvSchema: false })],
21+
});
22+
```
23+
324
## 2.1.20
425

526
### Patch Changes

packages/astro/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@clerk/astro",
3-
"version": "2.1.20",
3+
"version": "2.2.0",
44
"description": "Clerk SDK for Astro",
55
"keywords": [
66
"auth",

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

0 commit comments

Comments
 (0)