Skip to content

Commit

Permalink
chore(repo): Version packages (#2330)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
clerk-cookie and github-actions[bot] committed Dec 13, 2023
1 parent 96b9bb5 commit ff2fb69
Show file tree
Hide file tree
Showing 31 changed files with 246 additions and 87 deletions.
5 changes: 0 additions & 5 deletions .changeset/angry-clocks-attend.md

This file was deleted.

2 changes: 0 additions & 2 deletions .changeset/friendly-parrots-nail.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/long-dancers-whisper.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/short-eagles-search.md

This file was deleted.

16 changes: 0 additions & 16 deletions .changeset/thirty-chicken-divide.md

This file was deleted.

23 changes: 23 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# Change Log

## 0.36.0

### Minor Changes

- Introduce Protect for authorization. ([#2309](https://github.com/clerk/javascript/pull/2309)) by [@panteliselef](https://github.com/panteliselef)

Changes in public APIs:

- Rename Gate to Protect
- Support for permission checks. (Previously only roles could be used)
- Remove the `experimental` tags and prefixes
- Drop `some` from the `has` utility and Protect. Protect now accepts a `condition` prop where a function is expected with the `has` being exposed as the param.
- Protect can now be used without required props. In this case behaves as `<SignedIn>`, if no authorization props are passed.
- `has` will throw an error if neither `permission` or `role` is passed.
- `auth().protect()` for Nextjs App Router. Allow per page protection in app router. This utility will automatically throw a 404 error if user is not authorized or authenticated.
- inside a page or layout file it will render the nearest `not-found` component set by the developer
- inside a route handler it will return empty response body with a 404 status code

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0

## 0.35.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/backend",
"version": "0.35.1",
"version": "0.36.0",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
Expand Down Expand Up @@ -56,7 +56,7 @@
},
"dependencies": {
"@clerk/shared": "1.1.1",
"@clerk/types": "3.59.0",
"@clerk/types": "3.60.0",
"@peculiar/webcrypto": "1.4.1",
"@types/node": "16.18.6",
"cookie": "0.5.0",
Expand Down
24 changes: 24 additions & 0 deletions packages/chrome-extension/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Change Log

## 0.6.0

### Minor Changes

- Introduce Protect for authorization. ([#2309](https://github.com/clerk/javascript/pull/2309)) by [@panteliselef](https://github.com/panteliselef)

Changes in public APIs:

- Rename Gate to Protect
- Support for permission checks. (Previously only roles could be used)
- Remove the `experimental` tags and prefixes
- Drop `some` from the `has` utility and Protect. Protect now accepts a `condition` prop where a function is expected with the `has` being exposed as the param.
- Protect can now be used without required props. In this case behaves as `<SignedIn>`, if no authorization props are passed.
- `has` will throw an error if neither `permission` or `role` is passed.
- `auth().protect()` for Nextjs App Router. Allow per page protection in app router. This utility will automatically throw a 404 error if user is not authorized or authenticated.
- inside a page or layout file it will render the nearest `not-found` component set by the developer
- inside a route handler it will return empty response body with a 404 status code

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/clerk-js@4.67.0
- @clerk/clerk-react@4.30.0

## 0.5.8

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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": "0.5.8",
"version": "0.6.0",
"description": "Clerk SDK for Chrome extensions",
"keywords": [
"auth",
Expand Down Expand Up @@ -45,8 +45,8 @@
"test:coverage": "jest --collectCoverage && open coverage/lcov-report/index.html"
},
"dependencies": {
"@clerk/clerk-js": "4.66.0",
"@clerk/clerk-react": "4.29.0"
"@clerk/clerk-js": "4.67.0",
"@clerk/clerk-react": "4.30.0"
},
"devDependencies": {
"@types/chrome": "*",
Expand Down
26 changes: 26 additions & 0 deletions packages/clerk-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Change Log

## 4.67.0

### Minor Changes

- Introduce Protect for authorization. ([#2309](https://github.com/clerk/javascript/pull/2309)) by [@panteliselef](https://github.com/panteliselef)

Changes in public APIs:

- Rename Gate to Protect
- Support for permission checks. (Previously only roles could be used)
- Remove the `experimental` tags and prefixes
- Drop `some` from the `has` utility and Protect. Protect now accepts a `condition` prop where a function is expected with the `has` being exposed as the param.
- Protect can now be used without required props. In this case behaves as `<SignedIn>`, if no authorization props are passed.
- `has` will throw an error if neither `permission` or `role` is passed.
- `auth().protect()` for Nextjs App Router. Allow per page protection in app router. This utility will automatically throw a 404 error if user is not authorized or authenticated.
- inside a page or layout file it will render the nearest `not-found` component set by the developer
- inside a route handler it will return empty response body with a 404 status code

### Patch Changes

- Update `@zxcvbn-ts/core` from `2.2.1` to `3.0.4`. Update `@zxcvbn-ts/language-common` from `3.0.2` to `3.0.4`. ([#2332](https://github.com/clerk/javascript/pull/2332)) by [@clerk-cookie](https://github.com/clerk-cookie)

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0
- @clerk/localizations@1.26.13

## 4.66.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 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": "4.66.0",
"version": "4.67.0",
"description": "Clerk JS library",
"keywords": [
"clerk",
Expand Down Expand Up @@ -50,9 +50,9 @@
},
"browserslist": "last 2 versions, ios_saf > 12, Safari > 12, > 1%, not dead, not ie > 0",
"dependencies": {
"@clerk/localizations": "1.26.12",
"@clerk/localizations": "1.26.13",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.59.0",
"@clerk/types": "3.60.0",
"@emotion/cache": "11.11.0",
"@emotion/react": "11.11.1",
"@floating-ui/react": "0.25.4",
Expand Down
8 changes: 8 additions & 0 deletions packages/expo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.19.25

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/clerk-js@4.67.0
- @clerk/clerk-react@4.30.0

## 0.19.24

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/expo/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/clerk-expo",
"version": "0.19.24",
"version": "0.19.25",
"description": "Clerk React Native/Expo library",
"keywords": [
"react",
Expand Down Expand Up @@ -39,14 +39,14 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/clerk-js": "4.66.0",
"@clerk/clerk-react": "4.29.0",
"@clerk/clerk-js": "4.67.0",
"@clerk/clerk-react": "4.30.0",
"@clerk/shared": "1.1.1",
"base-64": "1.0.0",
"react-native-url-polyfill": "2.0.0"
},
"devDependencies": {
"@clerk/types": "^3.59.0",
"@clerk/types": "^3.60.0",
"@types/base-64": "^1.0.0",
"@types/node": "^16.11.55",
"@types/react": "*",
Expand Down
8 changes: 8 additions & 0 deletions packages/fastify/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 0.6.27

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0
- @clerk/backend@0.36.0

## 0.6.26

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/fastify/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/fastify",
"version": "0.6.26",
"version": "0.6.27",
"description": "Clerk SDK for Fastify",
"keywords": [
"auth",
Expand Down Expand Up @@ -40,9 +40,9 @@
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/backend": "0.35.1",
"@clerk/backend": "0.36.0",
"@clerk/shared": "1.1.1",
"@clerk/types": "3.59.0",
"@clerk/types": "3.60.0",
"cookies": "0.8.0"
},
"devDependencies": {
Expand Down
10 changes: 10 additions & 0 deletions packages/gatsby-plugin-clerk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Change Log

## 4.4.29

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0
- @clerk/backend@0.36.0
- @clerk/clerk-react@4.30.0
- @clerk/clerk-sdk-node@4.13.2

## 4.4.28

### Patch Changes
Expand Down
10 changes: 5 additions & 5 deletions packages/gatsby-plugin-clerk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-plugin-clerk",
"version": "4.4.28",
"version": "4.4.29",
"description": "Clerk SDK for Gatsby",
"keywords": [
"clerk",
Expand Down Expand Up @@ -44,10 +44,10 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "0.35.1",
"@clerk/clerk-react": "4.29.0",
"@clerk/clerk-sdk-node": "4.13.1",
"@clerk/types": "3.59.0",
"@clerk/backend": "0.36.0",
"@clerk/clerk-react": "4.30.0",
"@clerk/clerk-sdk-node": "4.13.2",
"@clerk/types": "3.60.0",
"cookie": "0.5.0",
"tslib": "2.4.1"
},
Expand Down
7 changes: 7 additions & 0 deletions packages/localizations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log

## 1.26.13

### Patch Changes

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0

## 1.26.12

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/localizations/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/localizations",
"version": "1.26.12",
"version": "1.26.13",
"description": "Localizations for the Clerk components",
"keywords": [
"react",
Expand Down Expand Up @@ -38,7 +38,7 @@
"lint": "eslint src/"
},
"dependencies": {
"@clerk/types": "3.59.0"
"@clerk/types": "3.60.0"
},
"devDependencies": {
"tsup": "*",
Expand Down
39 changes: 39 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Change Log

## 4.28.0

### Minor Changes

- Introduce Protect for authorization. ([#2309](https://github.com/clerk/javascript/pull/2309)) by [@panteliselef](https://github.com/panteliselef)

Changes in public APIs:

- Rename Gate to Protect
- Support for permission checks. (Previously only roles could be used)
- Remove the `experimental` tags and prefixes
- Drop `some` from the `has` utility and Protect. Protect now accepts a `condition` prop where a function is expected with the `has` being exposed as the param.
- Protect can now be used without required props. In this case behaves as `<SignedIn>`, if no authorization props are passed.
- `has` will throw an error if neither `permission` or `role` is passed.
- `auth().protect()` for Nextjs App Router. Allow per page protection in app router. This utility will automatically throw a 404 error if user is not authorized or authenticated.
- inside a page or layout file it will render the nearest `not-found` component set by the developer
- inside a route handler it will return empty response body with a 404 status code

### Patch Changes

- Accept `redirectUrl` as an option for `auth().protect()`. ([#2333](https://github.com/clerk/javascript/pull/2333)) by [@panteliselef](https://github.com/panteliselef)

For example:

```ts
// Authorization
auth().protect({ role: 'org:admin' }, { redirectUrl: '/any-page' });
auth().protect({ permission: 'org:settings:manage' }, { redirectUrl: '/any-page' });

// Authentication
auth().protect({ redirectUrl: '/any-page' });
```

- Updated dependencies [[`b4868ab8f`](https://github.com/clerk/javascript/commit/b4868ab8fdb84144d2016b49e67e7fdd2c348316), [`2dc93d4d8`](https://github.com/clerk/javascript/commit/2dc93d4d8dcdc5f83c21576400ae6d6f43705847)]:
- @clerk/types@3.60.0
- @clerk/backend@0.36.0
- @clerk/clerk-react@4.30.0
- @clerk/clerk-sdk-node@4.13.2

## 4.27.7

### Patch Changes
Expand Down
Loading

0 comments on commit ff2fb69

Please sign in to comment.