Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/calm-taxis-paste.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/calm-taxis-return.md

This file was deleted.

8 changes: 8 additions & 0 deletions packages/chrome-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 3.1.63

### Patch Changes

- Updated dependencies [[`f6091c5`](https://github.com/clerk/javascript/commit/f6091c5be0587884f6b1c744827f62bd58db413c)]:
- @clerk/ui@1.27.1
- @clerk/react@6.12.9

## 3.1.62

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/chrome-extension",
"version": "3.1.62",
"version": "3.1.63",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
"auth",
Expand Down
19 changes: 19 additions & 0 deletions packages/electron/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @clerk/electron

## 0.0.24

### Patch Changes

- Forward OAuth deep-link callbacks to the primary Electron process on Windows and Linux, and bring the ([#9278](https://github.com/clerk/javascript/pull/9278)) by [@jeremy-clerk](https://github.com/jeremy-clerk)

signing-in window to the front when the callback arrives.

Delivering those callbacks requires Electron's single-instance lock, so `createClerkBridge` now
acquires it on Windows and Linux whenever `renderer` is configured, and quits secondary processes
after forwarding their arguments. Applications that previously ran side-by-side instances on those
platforms will become single-instance. macOS is unaffected. Two new escape hatches: the returned
bridge exposes `isPrimaryInstance` so the application can stop its own bootstrap in a secondary
process, and `manageSingleInstanceLock: false` leaves the lock to applications that manage it
themselves.

- Updated dependencies []:
- @clerk/react@6.12.9

## 0.0.23

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/electron/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/electron",
"version": "0.0.23",
"version": "0.0.24",
"description": "Clerk SDK for Electron",
"keywords": [
"clerk",
Expand Down
7 changes: 7 additions & 0 deletions packages/swingset/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @clerk/swingset

## 0.0.27

### Patch Changes

- Updated dependencies [[`f6091c5`](https://github.com/clerk/javascript/commit/f6091c5be0587884f6b1c744827f62bd58db413c)]:
- @clerk/ui@1.27.1

## 0.0.26

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/swingset/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/swingset",
"version": "0.0.26",
"version": "0.0.27",
"private": true,
"type": "module",
"scripts": {
Expand Down
6 changes: 6 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @clerk/ui

## 1.27.1

### Patch Changes

- Prevent phone number and multi-email fields from crashing when they receive paste events without clipboard data. ([#9274](https://github.com/clerk/javascript/pull/9274)) by [@brkalow](https://github.com/brkalow)

## 1.27.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/ui",
"version": "1.27.0",
"version": "1.27.1",
"description": "Internal package that contains the UI components for the Clerk frontend SDKs",
"repository": {
"type": "git",
Expand Down
Loading