Skip to content

Commit

Permalink
Revert "chore(repo): Version packages (#1831)"
Browse files Browse the repository at this point in the history
This reverts commit 2ab0f75.
  • Loading branch information
nikosdouvlis committed Oct 6, 2023
1 parent 2ab0f75 commit 1136c7c
Show file tree
Hide file tree
Showing 28 changed files with 65 additions and 135 deletions.
7 changes: 7 additions & 0 deletions .changeset/dull-gifts-yawn.md
@@ -0,0 +1,7 @@
---
"@clerk/clerk-react": patch
"@clerk/remix": patch
"@clerk/shared": patch
---

Make `types` the first key in all `exports` maps defined in our packages' `package.json`. The [TypeScript docs](https://www.typescriptlang.org/docs/handbook/esm-node.html#packagejson-exports-imports-and-self-referencing) recommends so, as the the `exports` map is order-based.
5 changes: 5 additions & 0 deletions .changeset/empty-donuts-walk.md
@@ -0,0 +1,5 @@
---
'@clerk/shared': patch
---

Revert the removal of the `clerkError` property from `ClerkAPIError` class.
5 changes: 5 additions & 0 deletions .changeset/moody-coats-serve.md
@@ -0,0 +1,5 @@
---
'@clerk/backend': patch
---

Remove deprecation warning that is logging more than intended and not actionable for users of our SDKs.
5 changes: 5 additions & 0 deletions .changeset/real-zebras-perform.md
@@ -0,0 +1,5 @@
---
'@clerk/clerk-js': patch
---

Fixes an issue where the phone number value was not properly copied onto the input when pasting on the email or username field in the `<SignIn/>` component after autoswitching to the phone number field. The issue was introduced with the changes for the Prefill `<SignIn/>` and `<SignUp/>` feature.
5 changes: 5 additions & 0 deletions .changeset/stupid-jeans-flash.md
@@ -0,0 +1,5 @@
---
"@clerk/nextjs": patch
---

Add deprecation warning for `@clerk/nextjs/app-beta` export. Use the `@clerk/nextjs` instead.
7 changes: 7 additions & 0 deletions .changeset/sweet-bottles-watch.md
@@ -0,0 +1,7 @@
---
'@clerk/backend': patch
'@clerk/nextjs': patch
'@clerk/shared': patch
---

Retry the implemented changes from [#1767](https://github.com/clerkinc/javascript/pull/1767) which were reverted in [#1806](https://github.com/clerkinc/javascript/pull/1806) due to RSC related errors (not all uses components had the `use client` directive). Restore the original PR and add additional `use client` directives to ensure it works correctly.
11 changes: 0 additions & 11 deletions packages/backend/CHANGELOG.md
@@ -1,16 +1,5 @@
# Change Log

## 0.30.3

### Patch Changes

- Remove deprecation warning that is logging more than intended and not actionable for users of our SDKs. ([#1841](https://github.com/clerkinc/javascript/pull/1841)) by [@BRKalow](https://github.com/BRKalow)

- Retry the implemented changes from [#1767](https://github.com/clerkinc/javascript/pull/1767) which were reverted in [#1806](https://github.com/clerkinc/javascript/pull/1806) due to RSC related errors (not all uses components had the `use client` directive). Restore the original PR and add additional `use client` directives to ensure it works correctly. ([#1807](https://github.com/clerkinc/javascript/pull/1807)) by [@dimkl](https://github.com/dimkl)

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/shared@0.24.3

## 0.30.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/backend",
"version": "0.30.3",
"version": "0.30.2",
"license": "MIT",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"types": "./dist/types/index.d.ts",
Expand Down Expand Up @@ -44,7 +44,7 @@
"test:cloudflare-workerd": "tests/cloudflare-workerd/run.sh"
},
"dependencies": {
"@clerk/shared": "0.24.3",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"@peculiar/webcrypto": "1.4.1",
"@types/node": "16.18.6",
Expand Down
8 changes: 0 additions & 8 deletions packages/chrome-extension/CHANGELOG.md
@@ -1,13 +1,5 @@
# Change Log

## 0.4.6

### Patch Changes

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`66ea30225`](https://github.com/clerkinc/javascript/commit/66ea302258269a59764da98b12639c83c53e1098)]:
- @clerk/clerk-react@4.26.3
- @clerk/clerk-js@4.60.1

## 0.4.5

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/chrome-extension/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/chrome-extension",
"version": "0.4.6",
"version": "0.4.5",
"license": "MIT",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
Expand Down Expand Up @@ -32,8 +32,8 @@
"prepublishOnly": "npm run build"
},
"dependencies": {
"@clerk/clerk-js": "4.60.1",
"@clerk/clerk-react": "4.26.3"
"@clerk/clerk-js": "4.60.0",
"@clerk/clerk-react": "4.26.2"
},
"devDependencies": {
"@types/chrome": "*",
Expand Down
9 changes: 0 additions & 9 deletions packages/clerk-js/CHANGELOG.md
@@ -1,14 +1,5 @@
# Change Log

## 4.60.1

### Patch Changes

- Fixes an issue where the phone number value was not properly copied onto the input when pasting on the email or username field in the `<SignIn/>` component after autoswitching to the phone number field. The issue was introduced with the changes for the Prefill `<SignIn/>` and `<SignUp/>` feature. ([#1824](https://github.com/clerkinc/javascript/pull/1824)) by [@desiprisg](https://github.com/desiprisg)

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/shared@0.24.3

## 4.60.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/clerk-js/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-js",
"version": "4.60.1",
"version": "4.60.0",
"license": "MIT",
"description": "Clerk JS library",
"keywords": [
Expand Down Expand Up @@ -41,7 +41,7 @@
},
"dependencies": {
"@clerk/localizations": "1.26.3",
"@clerk/shared": "0.24.3",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"@emotion/cache": "11.10.5",
"@emotion/react": "11.10.5",
Expand Down
8 changes: 0 additions & 8 deletions packages/expo/CHANGELOG.md
@@ -1,13 +1,5 @@
# Change Log

## 0.19.8

### Patch Changes

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`66ea30225`](https://github.com/clerkinc/javascript/commit/66ea302258269a59764da98b12639c83c53e1098)]:
- @clerk/clerk-react@4.26.3
- @clerk/clerk-js@4.60.1

## 0.19.7

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/expo/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-expo",
"version": "0.19.8",
"version": "0.19.7",
"license": "MIT",
"description": "Clerk React Native/Expo library",
"keywords": [
Expand All @@ -27,8 +27,8 @@
"lint": "eslint src/"
},
"dependencies": {
"@clerk/clerk-js": "4.60.1",
"@clerk/clerk-react": "4.26.3",
"@clerk/clerk-js": "4.60.0",
"@clerk/clerk-react": "4.26.2",
"base-64": "1.0.0",
"react-native-url-polyfill": "2.0.0"
},
Expand Down
8 changes: 0 additions & 8 deletions packages/fastify/CHANGELOG.md
@@ -1,13 +1,5 @@
# Change Log

## 0.6.13

### Patch Changes

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`c38241110`](https://github.com/clerkinc/javascript/commit/c382411107391f0d0ecf1918295638af0ceb2b38), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/shared@0.24.3
- @clerk/backend@0.30.3

## 0.6.12

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/fastify/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/fastify",
"version": "0.6.13",
"version": "0.6.12",
"license": "MIT",
"description": "Clerk SDK for Fastify",
"keywords": [
Expand All @@ -27,8 +27,8 @@
"test": "jest"
},
"dependencies": {
"@clerk/backend": "0.30.3",
"@clerk/shared": "0.24.3",
"@clerk/backend": "0.30.2",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"cookies": "0.8.0"
},
Expand Down
9 changes: 0 additions & 9 deletions packages/gatsby-plugin-clerk/CHANGELOG.md
@@ -1,14 +1,5 @@
# Change Log

## 4.4.14

### Patch Changes

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`c38241110`](https://github.com/clerkinc/javascript/commit/c382411107391f0d0ecf1918295638af0ceb2b38), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/clerk-react@4.26.3
- @clerk/backend@0.30.3
- @clerk/clerk-sdk-node@4.12.12

## 4.4.13

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/gatsby-plugin-clerk/package.json
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-clerk",
"version": "4.4.14",
"version": "4.4.13",
"license": "MIT",
"description": "Clerk SDK for Gatsby",
"keywords": [
Expand Down Expand Up @@ -32,9 +32,9 @@
"lint": "eslint src/"
},
"dependencies": {
"@clerk/backend": "0.30.3",
"@clerk/clerk-react": "4.26.3",
"@clerk/clerk-sdk-node": "4.12.12",
"@clerk/backend": "0.30.2",
"@clerk/clerk-react": "4.26.2",
"@clerk/clerk-sdk-node": "4.12.11",
"@clerk/types": "3.54.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
Expand Down
14 changes: 0 additions & 14 deletions packages/nextjs/CHANGELOG.md
@@ -1,19 +1,5 @@
# Change Log

## 4.25.3

### Patch Changes

- Add deprecation warning for `@clerk/nextjs/app-beta` export. Use the `@clerk/nextjs` instead. ([#1829](https://github.com/clerkinc/javascript/pull/1829)) by [@dimkl](https://github.com/dimkl)

- Retry the implemented changes from [#1767](https://github.com/clerkinc/javascript/pull/1767) which were reverted in [#1806](https://github.com/clerkinc/javascript/pull/1806) due to RSC related errors (not all uses components had the `use client` directive). Restore the original PR and add additional `use client` directives to ensure it works correctly. ([#1807](https://github.com/clerkinc/javascript/pull/1807)) by [@dimkl](https://github.com/dimkl)

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`c38241110`](https://github.com/clerkinc/javascript/commit/c382411107391f0d0ecf1918295638af0ceb2b38), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/clerk-react@4.26.3
- @clerk/shared@0.24.3
- @clerk/backend@0.30.3
- @clerk/clerk-sdk-node@4.12.12

## 4.25.2

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/nextjs/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/nextjs",
"version": "4.25.3",
"version": "4.25.2",
"license": "MIT",
"description": "Clerk SDK for NextJS",
"keywords": [
Expand Down Expand Up @@ -75,10 +75,10 @@
"test:ci": "jest --maxWorkers=50%"
},
"dependencies": {
"@clerk/backend": "0.30.3",
"@clerk/clerk-react": "4.26.3",
"@clerk/clerk-sdk-node": "4.12.12",
"@clerk/shared": "0.24.3",
"@clerk/backend": "0.30.2",
"@clerk/clerk-react": "4.26.2",
"@clerk/clerk-sdk-node": "4.12.11",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"path-to-regexp": "6.2.1",
"tslib": "2.4.1"
Expand Down
9 changes: 0 additions & 9 deletions packages/react/CHANGELOG.md
@@ -1,14 +1,5 @@
# Change Log

## 4.26.3

### Patch Changes

- Make `types` the first key in all `exports` maps defined in our packages' `package.json`. The [TypeScript docs](https://www.typescriptlang.org/docs/handbook/esm-node.html#packagejson-exports-imports-and-self-referencing) recommends so, as the the `exports` map is order-based. ([#1835](https://github.com/clerkinc/javascript/pull/1835)) by [@nikosdouvlis](https://github.com/nikosdouvlis)

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/shared@0.24.3

## 4.26.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/react/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-react",
"version": "4.26.3",
"version": "4.26.2",
"license": "MIT",
"description": "Clerk React library",
"keywords": [
Expand Down Expand Up @@ -44,7 +44,7 @@
"test:ci": "jest --maxWorkers=50%"
},
"dependencies": {
"@clerk/shared": "0.24.3",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"tslib": "2.4.1"
},
Expand Down
11 changes: 0 additions & 11 deletions packages/remix/CHANGELOG.md
@@ -1,16 +1,5 @@
# Change Log

## 3.0.5

### Patch Changes

- Make `types` the first key in all `exports` maps defined in our packages' `package.json`. The [TypeScript docs](https://www.typescriptlang.org/docs/handbook/esm-node.html#packagejson-exports-imports-and-self-referencing) recommends so, as the the `exports` map is order-based. ([#1835](https://github.com/clerkinc/javascript/pull/1835)) by [@nikosdouvlis](https://github.com/nikosdouvlis)

- Updated dependencies [[`7636abc10`](https://github.com/clerkinc/javascript/commit/7636abc105c9436bc6ada93df3fa7da2b53ca340), [`bf66d7322`](https://github.com/clerkinc/javascript/commit/bf66d73228e404a36ea04426d95c2e084d81f2e4), [`c38241110`](https://github.com/clerkinc/javascript/commit/c382411107391f0d0ecf1918295638af0ceb2b38), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/clerk-react@4.26.3
- @clerk/shared@0.24.3
- @clerk/backend@0.30.3

## 3.0.4

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/remix/package.json
@@ -1,6 +1,6 @@
{
"name": "@clerk/remix",
"version": "3.0.5",
"version": "3.0.4",
"license": "MIT",
"description": "Clerk SDK for Remix",
"keywords": [
Expand Down Expand Up @@ -56,9 +56,9 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "0.30.3",
"@clerk/clerk-react": "4.26.3",
"@clerk/shared": "0.24.3",
"@clerk/backend": "0.30.2",
"@clerk/clerk-react": "4.26.2",
"@clerk/shared": "0.24.2",
"@clerk/types": "3.54.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
Expand Down
7 changes: 0 additions & 7 deletions packages/sdk-node/CHANGELOG.md
@@ -1,12 +1,5 @@
# Change Log

## 4.12.12

### Patch Changes

- Updated dependencies [[`c38241110`](https://github.com/clerkinc/javascript/commit/c382411107391f0d0ecf1918295638af0ceb2b38), [`7d3cbcb7d`](https://github.com/clerkinc/javascript/commit/7d3cbcb7d5ef954a89a62e051a493a0abf438e43)]:
- @clerk/backend@0.30.3

## 4.12.11

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sdk-node/package.json
@@ -1,5 +1,5 @@
{
"version": "4.12.12",
"version": "4.12.11",
"license": "MIT",
"type": "commonjs",
"main": "./dist/cjs/index.js",
Expand Down Expand Up @@ -58,7 +58,7 @@
"typescript": "*"
},
"dependencies": {
"@clerk/backend": "0.30.3",
"@clerk/backend": "0.30.2",
"@clerk/types": "3.54.0",
"@types/cookies": "0.7.7",
"@types/express": "4.17.14",
Expand Down
10 changes: 0 additions & 10 deletions packages/shared/CHANGELOG.md
@@ -1,15 +1,5 @@
# Change Log

## 0.24.3

### Patch Changes

- Make `types` the first key in all `exports` maps defined in our packages' `package.json`. The [TypeScript docs](https://www.typescriptlang.org/docs/handbook/esm-node.html#packagejson-exports-imports-and-self-referencing) recommends so, as the the `exports` map is order-based. ([#1835](https://github.com/clerkinc/javascript/pull/1835)) by [@nikosdouvlis](https://github.com/nikosdouvlis)

- Revert the removal of the `clerkError` property from `ClerkAPIError` class. ([#1839](https://github.com/clerkinc/javascript/pull/1839)) by [@panteliselef](https://github.com/panteliselef)

- Retry the implemented changes from [#1767](https://github.com/clerkinc/javascript/pull/1767) which were reverted in [#1806](https://github.com/clerkinc/javascript/pull/1806) due to RSC related errors (not all uses components had the `use client` directive). Restore the original PR and add additional `use client` directives to ensure it works correctly. ([#1807](https://github.com/clerkinc/javascript/pull/1807)) by [@dimkl](https://github.com/dimkl)

## 0.24.2

### Patch Changes
Expand Down

0 comments on commit 1136c7c

Please sign in to comment.