Skip to content

Commit 69d70b7

Browse files
ci(repo): Version packages
1 parent 7076310 commit 69d70b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+284
-107
lines changed

.changeset/chilly-suns-beg.md

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

.changeset/few-news-impress.md

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

.changeset/flat-horses-battle.md

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

.changeset/giant-fans-pretend.md

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

.changeset/grumpy-kangaroos-ring.md

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

.changeset/soft-flowers-tan.md

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

.changeset/tiny-moose-appear.md

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

packages/astro/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
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+
24+
### Patch Changes
25+
26+
- Add the ability to specify an appearance for modal component usages. ([#5125](https://github.com/clerk/javascript/pull/5125)) by [@alexcarpenter](https://github.com/alexcarpenter)
27+
28+
- Updated dependencies [[`570d8386f6aa596bf7bb1659bdddb8dd4d992b1d`](https://github.com/clerk/javascript/commit/570d8386f6aa596bf7bb1659bdddb8dd4d992b1d)]:
29+
- @clerk/types@4.46.0
30+
- @clerk/backend@1.24.1
31+
- @clerk/shared@2.21.1
32+
333
## 2.1.20
434

535
### 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/backend/CHANGELOG.md

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

3+
## 1.24.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`570d8386f6aa596bf7bb1659bdddb8dd4d992b1d`](https://github.com/clerk/javascript/commit/570d8386f6aa596bf7bb1659bdddb8dd4d992b1d)]:
8+
- @clerk/types@4.46.0
9+
- @clerk/shared@2.21.1
10+
311
## 1.24.0
412

513
### Minor Changes

0 commit comments

Comments
 (0)