Skip to content

Commit

Permalink
chore(repo): Version packages (alpha-v5) (#2209)
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] authored Nov 27, 2023
1 parent eca1ec9 commit dbb6d7d
Show file tree
Hide file tree
Showing 27 changed files with 193 additions and 38 deletions.
11 changes: 11 additions & 0 deletions .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"changesets": [
"blue-ghosts-float",
"blue-lies-drop",
"brave-suits-drive",
"bright-plants-swim",
"bright-trainers-sort",
"brown-clouds-divide",
Expand Down Expand Up @@ -59,13 +60,16 @@
"flat-donuts-sleep",
"flat-pots-hear",
"fluffy-chicken-explain",
"friendly-months-film",
"friendly-tables-chew",
"friendly-vans-develop",
"funny-gifts-cough",
"fuzzy-horses-fix",
"gentle-pants-matter",
"gorgeous-baboons-float",
"gorgeous-insects-reply",
"grumpy-suns-boil",
"heavy-horses-nail",
"honest-onions-work",
"hungry-bears-allow",
"hungry-bikes-clean",
Expand All @@ -76,6 +80,7 @@
"lazy-planes-run",
"lemon-crews-do",
"lemon-kings-love",
"lemon-rockets-explode",
"little-apes-notice",
"little-numbers-jam",
"long-beds-mate",
Expand All @@ -95,12 +100,15 @@
"moody-radios-begin",
"moody-trainers-bow",
"nasty-books-tap",
"new-cougars-taste",
"new-eels-mix",
"new-points-train",
"nice-dingos-argue",
"odd-lemons-reply",
"odd-toes-develop",
"old-actors-beg",
"orange-pumpkins-poke",
"polite-kiwis-arrive",
"poor-horses-press",
"poor-kings-marry",
"popular-singers-sort",
Expand All @@ -110,6 +118,7 @@
"proud-hairs-check",
"purple-pumas-study",
"purple-rules-prove",
"quick-countries-scream",
"quick-trains-rush",
"rare-students-sell",
"real-cougars-design",
Expand All @@ -118,9 +127,11 @@
"red-monkeys-sing",
"red-worms-fetch",
"rich-actors-cross",
"rotten-ways-do",
"rude-jobs-yawn",
"rude-lamps-yawn",
"selfish-eggs-sort",
"silly-emus-boil",
"silly-icons-kick",
"silly-poems-tease",
"silver-cats-appear",
Expand Down
32 changes: 32 additions & 0 deletions packages/backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Change Log

## 1.0.0-alpha-v5.4

### Minor Changes

- Expose `totalCount` from `@clerk/backend` client responses for responses ([#2199](https://github.com/clerk/javascript/pull/2199)) by [@dimkl](https://github.com/dimkl)

containing pagination information or for responses with type `{ data: object[] }`.

Example:

```typescript
import { Clerk } from '@clerk/backend';

const clerkClient = Clerk({ secretKey: '...' });

// current
const { data } = await clerkClient.organizations.getOrganizationList();
console.log('totalCount: ', data.length);

// new
const { data, totalCount } = await clerkClient.organizations.getOrganizationList();
console.log('totalCount: ', totalCount);
```

- Re-use common pagination types for consistency across types. ([#2210](https://github.com/clerk/javascript/pull/2210)) by [@dimkl](https://github.com/dimkl)

Types introduced in `@clerk/types`:

- `ClerkPaginationRequest` : describes pagination related props in request payload
- `ClerkPaginatedResponse` : describes pagination related props in response body
- `ClerkPaginationParams` : describes pagination related props in api client method params

## 1.0.0-alpha-v5.3

### Minor 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": "1.0.0-alpha-v5.3",
"version": "1.0.0-alpha-v5.4",
"description": "Clerk Backend SDK - REST Client for Backend API & JWT verification utilities",
"homepage": "https://clerk.com/",
"bugs": {
Expand Down Expand Up @@ -54,7 +54,7 @@
"tslib": "2.4.1"
},
"devDependencies": {
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"@cloudflare/workers-types": "^3.18.0",
"@types/chai": "^4.3.3",
"@types/cookie": "^0.5.1",
Expand Down
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

## 1.0.0-alpha-v5.5

### Patch Changes

- Updated dependencies [[`043801f2a`](https://github.com/clerk/javascript/commit/043801f2ae9447fb1bb8c9bb08869d3c59cd8419), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/clerk-js@5.0.0-alpha-v5.5
- @clerk/clerk-react@5.0.0-alpha-v5.5

## 1.0.0-alpha-v5.4

### 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": "1.0.0-alpha-v5.4",
"version": "1.0.0-alpha-v5.5",
"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": "5.0.0-alpha-v5.4",
"@clerk/clerk-react": "5.0.0-alpha-v5.4"
"@clerk/clerk-js": "5.0.0-alpha-v5.5",
"@clerk/clerk-react": "5.0.0-alpha-v5.5"
},
"devDependencies": {
"@types/chrome": "*",
Expand Down
31 changes: 31 additions & 0 deletions packages/clerk-js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# Change Log

## 5.0.0-alpha-v5.5

### Major Changes

- All the components that using routing will throw a runtime error if the a path property is provided with a routing strategy other than path. ([#2208](https://github.com/clerk/javascript/pull/2208)) by [@octoper](https://github.com/octoper)

Example that will throw an error:

```tsx
<SignIn
routing='hash'
path='/sign-in'
/>
```

### Minor Changes

- Re-use common pagination types for consistency across types. ([#2210](https://github.com/clerk/javascript/pull/2210)) by [@dimkl](https://github.com/dimkl)

Types introduced in `@clerk/types`:

- `ClerkPaginationRequest` : describes pagination related props in request payload
- `ClerkPaginatedResponse` : describes pagination related props in response body
- `ClerkPaginationParams` : describes pagination related props in api client method params

### Patch Changes

- Updated dependencies [[`b8599d700`](https://github.com/clerk/javascript/commit/b8599d700c38c995183a783c505d0805fda8f5fa), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/localizations@2.0.0-alpha-v5.5
- @clerk/types@4.0.0-alpha-v5.5

## 5.0.0-alpha-v5.4

### Major 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": "5.0.0-alpha-v5.4",
"version": "5.0.0-alpha-v5.5",
"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": "2.0.0-alpha-v5.4",
"@clerk/localizations": "2.0.0-alpha-v5.5",
"@clerk/shared": "2.0.0-alpha-v5.3",
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"@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

## 1.0.0-alpha-v5.5

### Patch Changes

- Updated dependencies [[`043801f2a`](https://github.com/clerk/javascript/commit/043801f2ae9447fb1bb8c9bb08869d3c59cd8419), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/clerk-js@5.0.0-alpha-v5.5
- @clerk/clerk-react@5.0.0-alpha-v5.5

## 1.0.0-alpha-v5.4

### 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": "1.0.0-alpha-v5.4",
"version": "1.0.0-alpha-v5.5",
"description": "Clerk React Native/Expo library",
"keywords": [
"react",
Expand Down Expand Up @@ -39,13 +39,13 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/clerk-js": "5.0.0-alpha-v5.4",
"@clerk/clerk-react": "5.0.0-alpha-v5.4",
"@clerk/clerk-js": "5.0.0-alpha-v5.5",
"@clerk/clerk-react": "5.0.0-alpha-v5.5",
"@clerk/shared": "2.0.0-alpha-v5.3",
"react-native-url-polyfill": "2.0.0"
},
"devDependencies": {
"@clerk/types": "^4.0.0-alpha-v5.4",
"@clerk/types": "^4.0.0-alpha-v5.5",
"@types/node": "^18.17.0",
"@types/react": "*",
"@types/react-dom": "*",
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

## 1.0.0-alpha-v5.5

### Patch Changes

- Updated dependencies [[`03079579d`](https://github.com/clerk/javascript/commit/03079579d2b48a9a6969702814449382098d2cfb), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/backend@1.0.0-alpha-v5.4
- @clerk/types@4.0.0-alpha-v5.5

## 1.0.0-alpha-v5.4

### 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": "1.0.0-alpha-v5.4",
"version": "1.0.0-alpha-v5.5",
"description": "Clerk SDK for Fastify",
"keywords": [
"auth",
Expand Down Expand Up @@ -40,9 +40,9 @@
"test:cache:clear": "jest --clearCache --useStderr"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.3",
"@clerk/backend": "1.0.0-alpha-v5.4",
"@clerk/shared": "2.0.0-alpha-v5.3",
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"cookies": "0.8.0"
},
"devDependencies": {
Expand Down
9 changes: 9 additions & 0 deletions packages/gatsby-plugin-clerk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## 5.0.0-alpha-v5.5

### Patch Changes

- Updated dependencies [[`03079579d`](https://github.com/clerk/javascript/commit/03079579d2b48a9a6969702814449382098d2cfb), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/backend@1.0.0-alpha-v5.4
- @clerk/clerk-sdk-node@5.0.0-alpha-v5.4
- @clerk/clerk-react@5.0.0-alpha-v5.5

## 5.0.0-alpha-v5.4

### 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": "5.0.0-alpha-v5.4",
"version": "5.0.0-alpha-v5.5",
"description": "Clerk SDK for Gatsby",
"keywords": [
"clerk",
Expand Down Expand Up @@ -44,14 +44,14 @@
"publish:local": "npx yalc push --replace --sig"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.3",
"@clerk/clerk-react": "5.0.0-alpha-v5.4",
"@clerk/clerk-sdk-node": "5.0.0-alpha-v5.3",
"@clerk/backend": "1.0.0-alpha-v5.4",
"@clerk/clerk-react": "5.0.0-alpha-v5.5",
"@clerk/clerk-sdk-node": "5.0.0-alpha-v5.4",
"cookie": "0.5.0",
"tslib": "2.4.1"
},
"devDependencies": {
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"@types/cookie": "^0.5.0",
"@types/node": "^18.17.0",
"eslint-config-custom": "*",
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.0.0-alpha-v5.5

### Minor Changes

- Add support for Portuguese (Portugal) language ([#2202](https://github.com/clerk/javascript/pull/2202)) by [@SirRamboia](https://github.com/SirRamboia)

## 2.0.0-alpha-v5.4

### 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": "2.0.0-alpha-v5.4",
"version": "2.0.0-alpha-v5.5",
"description": "Localizations for the Clerk components",
"keywords": [
"react",
Expand Down Expand Up @@ -38,7 +38,7 @@
"lint": "eslint src/"
},
"devDependencies": {
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"@types/node": "^18.17.0",
"eslint-config-custom": "*",
"tsup": "*",
Expand Down
8 changes: 8 additions & 0 deletions packages/nextjs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Change Log

## 5.0.0-alpha-v5.5

### Patch Changes

- Updated dependencies [[`03079579d`](https://github.com/clerk/javascript/commit/03079579d2b48a9a6969702814449382098d2cfb), [`12962bc58`](https://github.com/clerk/javascript/commit/12962bc58e2c9caad416ba4e6d52061d00bc2feb)]:
- @clerk/backend@1.0.0-alpha-v5.4
- @clerk/clerk-react@5.0.0-alpha-v5.5

## 5.0.0-alpha-v5.4

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clerk/nextjs",
"version": "5.0.0-alpha-v5.4",
"version": "5.0.0-alpha-v5.5",
"description": "Clerk SDK for NextJS",
"keywords": [
"clerk",
Expand Down Expand Up @@ -58,13 +58,13 @@
"test:ci": "jest --maxWorkers=70%"
},
"dependencies": {
"@clerk/backend": "1.0.0-alpha-v5.3",
"@clerk/clerk-react": "5.0.0-alpha-v5.4",
"@clerk/backend": "1.0.0-alpha-v5.4",
"@clerk/clerk-react": "5.0.0-alpha-v5.5",
"@clerk/shared": "2.0.0-alpha-v5.3",
"path-to-regexp": "6.2.1"
},
"devDependencies": {
"@clerk/types": "4.0.0-alpha-v5.4",
"@clerk/types": "4.0.0-alpha-v5.5",
"@types/node": "^18.17.0",
"@types/react": "*",
"@types/react-dom": "*",
Expand Down
Loading

0 comments on commit dbb6d7d

Please sign in to comment.