Skip to content

Commit a0cb577

Browse files
committed
Merge remote-tracking branch 'origin/main' into fredrik/user-4666-fix-transitive-state-when-switching-orgs
2 parents 68c42f2 + fade95c commit a0cb577

File tree

145 files changed

+2380
-328
lines changed

Some content is hidden

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

145 files changed

+2380
-328
lines changed

.changeset/cuddly-ends-wait.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
---
2+
'@clerk/ui': minor
3+
---
4+
5+
Improve RTL support by converting physical CSS properties (margins, padding, text alignment, borders) to logical equivalents and adding direction-aware arrow icons
6+
7+
The changes included:
8+
9+
- Positioning (left → insetInlineStart)
10+
- Margins (marginLeft/Right → marginInlineStart/End)
11+
- Padding (paddingLeft/Right → paddingInlineStart/End)
12+
- Text alignment (left/right → start/end)
13+
- Border radius (borderTopLeftRadius → borderStartStartRadius)
14+
- Arrow icon flipping with scaleX(-1) in RTL
15+
- Animation direction adjustments

.changeset/cute-crabs-agree.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@clerk/clerk-js': minor
3+
'@clerk/shared': minor
4+
---
5+
6+
Add `username` field into `PublicUserData` object.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
'@clerk/ui': patch
3+
'@clerk/upgrade': patch
4+
---
5+
6+
Export `Appearance` type from `@clerk/ui` root entry

.changeset/fast-ways-notice.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/nextjs': patch
3+
---
4+
5+
Fixed an issue where the CSP nonce generated by `clerkMiddleware({ contentSecurityPolicy: { strict: true } })` was not forwarded as a request header. Server components can now access the nonce via `headers()`, allowing `ClerkProvider` and Next.js to apply it to `<script>` tags.

.changeset/lazy-eagles-lay.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
'@clerk/clerk-js': minor
3+
'@clerk/shared': minor
4+
'@clerk/react': minor
5+
---
6+
7+
Add support for resetting a password via phone code.

.changeset/metal-buckets-occur.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
'@clerk/astro': major
3+
---
4+
5+
Remove deprecated `as` prop from unstyled button components (`SignInButton`, `SignUpButton`, `SignOutButton`, `CheckoutButton`, `PlanDetailsButton`, `SubscriptionDetailsButton`). Use the `asChild` prop with a custom element in the default slot instead.
6+
7+
**Before:**
8+
9+
```astro
10+
<SignInButton as="a" href="/sign-in">
11+
Sign in
12+
</SignInButton>
13+
```
14+
15+
**After:**
16+
17+
```astro
18+
<SignInButton asChild>
19+
<a href="/sign-in">Sign in</a>
20+
</SignInButton>
21+
```

.changeset/old-sides-check.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/nextjs': major
3+
---
4+
5+
Return 401 instead of 404 for unauthenticated server action requests in `auth.protect()`

.changeset/soft-wings-flow.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@clerk/ui': minor
3+
---
4+
5+
Introduce `<Collapsible />` component and update `<CardAlert />` implementation to fix enter/exit animations.

0 commit comments

Comments
 (0)