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
2 changes: 0 additions & 2 deletions .changeset/afraid-humans-notice.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/cold-lemons-beg.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/cold-singers-suffer.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/friendly-dots-join.md

This file was deleted.

14 changes: 0 additions & 14 deletions .changeset/grumpy-dancers-thank.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/healthy-vans-care.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/large-carrots-roll.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/large-frogs-collect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/metal-shrimps-repeat.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/nine-ways-poke.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-trees-repeat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/polite-poems-cross.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/proud-books-switch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smart-ravens-taste.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/strange-toys-taste.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/twelve-tips-heal.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/violet-kings-care.md

This file was deleted.

18 changes: 9 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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

## 1.1.0

### Minor Changes

- Poll for active session changes allowing for synchronizing newly authenticated users after the extension has been opened. ([#3616](https://github.com/clerk/javascript/pull/3616)) by [@tmilewski](https://github.com/tmilewski)

### Patch Changes

- Updated dependencies [[`2bef41ab0`](https://github.com/clerk/javascript/commit/2bef41ab05e212cc986c0891fa065037df936a8d)]:
- @clerk/clerk-js@5.7.2

## 1.0.19

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/chrome-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/chrome-extension",
"version": "1.0.19",
"version": "1.1.0",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
"auth",
Expand Down Expand Up @@ -44,7 +44,7 @@
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html"
},
"dependencies": {
"@clerk/clerk-js": "5.7.1",
"@clerk/clerk-js": "5.7.2",
"@clerk/clerk-react": "5.2.5",
"@clerk/shared": "2.3.1",
"webextension-polyfill": "^0.10.0"
Expand Down
9 changes: 9 additions & 0 deletions packages/clerk-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 5.7.2

### Patch Changes

- Correctly use updated protocol verification in all code paths ([#3605](https://github.com/clerk/javascript/pull/3605)) by [@LekoArts](https://github.com/LekoArts)

- Updated dependencies [[`72888323b`](https://github.com/clerk/javascript/commit/72888323ba5effb53bbd50456dc9bfb5895c5b5a)]:
- @clerk/localizations@2.4.6

## 5.7.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/clerk-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-js",
"version": "5.7.1",
"version": "5.7.2",
"description": "Clerk JS library",
"keywords": [
"clerk",
Expand Down Expand Up @@ -50,7 +50,7 @@
},
"browserslist": "last 2 versions, ios_saf > 12, Safari > 12, > 1%, not dead, not ie > 0",
"dependencies": {
"@clerk/localizations": "2.4.5",
"@clerk/localizations": "2.4.6",
"@clerk/shared": "2.3.1",
"@clerk/types": "4.6.1",
"@emotion/cache": "11.11.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/elements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @clerk/elements

## 0.9.0

### Minor Changes

- Improve `<FieldState>` and re-organize some data attributes related to validity states. These changes might be breaking changes for you. ([#3594](https://github.com/clerk/javascript/pull/3594)) by [@LekoArts](https://github.com/LekoArts)

Overview of changes:

- `<form>` no longer has `data-valid` and `data-invalid` attributes. If there are global errors (same heuristics as `<GlobalError>`) then a `data-global-error` attribute will be present.
- Fixed a bug where `<Field>` could contain `data-valid` and `data-invalid` at the same time.
- The field state (accessible through e.g. `<FieldState>`) now also incorporates the field's [ValidityState](https://developer.mozilla.org/en-US/docs/Web/API/ValidityState) into its output. If the `ValidityState` is invalid, the field state will be an `error`. You can access this information in three places:
1. `<FieldState>`
2. `data-state` attribute on `<Input>`
3. `<Field>{(state) => <p>Field's state is {state}</p>}</Field>`

### Patch Changes

- Fix Sign In & Sign Up root fallbacks not rendering as expected ([#3601](https://github.com/clerk/javascript/pull/3601)) by [@tmilewski](https://github.com/tmilewski)

- Update all Radix dependencies to their June 19, 2024 release ([#3606](https://github.com/clerk/javascript/pull/3606)) by [@LekoArts](https://github.com/LekoArts)

## 0.8.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/elements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/elements",
"version": "0.8.0",
"version": "0.9.0",
"description": "Clerk Elements",
"keywords": [
"clerk",
Expand Down
7 changes: 7 additions & 0 deletions packages/expo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.2.3

### Patch Changes

- Updated dependencies [[`2bef41ab0`](https://github.com/clerk/javascript/commit/2bef41ab05e212cc986c0891fa065037df936a8d)]:
- @clerk/clerk-js@5.7.2

## 1.2.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/expo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-expo",
"version": "1.2.2",
"version": "1.2.3",
"description": "Clerk React Native/Expo library",
"keywords": [
"react",
Expand Down Expand Up @@ -39,7 +39,7 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/clerk-js": "5.7.1",
"@clerk/clerk-js": "5.7.2",
"@clerk/clerk-react": "5.2.5",
"@clerk/shared": "2.3.1",
"@clerk/types": "4.6.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/localizations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## 2.4.6

### Patch Changes

- Add Italian localizations ([#3608](https://github.com/clerk/javascript/pull/3608)) by [@mazzasaverio](https://github.com/mazzasaverio)

## 2.4.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/localizations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/localizations",
"version": "2.4.5",
"version": "2.4.6",
"description": "Localizations for the Clerk components",
"keywords": [
"react",
Expand Down
7 changes: 7 additions & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @clerk/ui

## 0.1.3

### Patch Changes

- Updated dependencies [[`25c87f693`](https://github.com/clerk/javascript/commit/25c87f6933d655f50bb49e6f5b8c9497d8913ddb), [`5aedc291c`](https://github.com/clerk/javascript/commit/5aedc291c5fa0093aa6884f093bcdc331282eedd), [`6d07aa6f3`](https://github.com/clerk/javascript/commit/6d07aa6f333f796bf09a6f1270e5480120765425)]:
- @clerk/elements@0.9.0

## 0.1.2

### Patch 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": "0.1.2",
"version": "0.1.3",
"private": true,
"license": "MIT",
"author": {
Expand Down