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: 2 additions & 0 deletions .changeset/old-eggs-suffer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
6 changes: 3 additions & 3 deletions packages/astro/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"nanoid": "5.0.9",
"nanostores": "0.11.3"
"nanoid": "5.1.5",
"nanostores": "1.0.1"
},
"devDependencies": {
"astro": "^5.10.1"
"astro": "^5.12.0"
},
"peerDependencies": {
"astro": "^4.15.0 || ^5.0.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@
},
"devDependencies": {
"@edge-runtime/vm": "5.0.0",
"msw": "2.10.2",
"msw": "2.10.4",
"npm-run-all": "^4.1.5",
"vitest-environment-miniflare": "2.14.4"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/chrome-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"webextension-polyfill": "~0.12.0"
},
"devDependencies": {
"@types/chrome": "*",
"@types/chrome": "^0.1.1",
"@types/webextension-polyfill": "^0.12.3",
"type-fest": "^4.41.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/clerk-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
"dequal": "2.0.3",
"qrcode.react": "4.2.0",
"regenerator-runtime": "0.14.1",
"swr": "2.3.3"
"swr": "2.3.4"
},
Comment thread
tmilewski marked this conversation as resolved.
"devDependencies": {
"@clerk/testing": "workspace:^",
Expand Down
8 changes: 4 additions & 4 deletions packages/dev-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@
"lint": "eslint src"
},
"dependencies": {
"commander": "^12.1.0",
"concurrently": "^9.0.1",
"dotenv": "^16.4.5",
"commander": "^14.0.0",
"concurrently": "^9.2.0",
"dotenv": "^17.2.0",
"globby": "^14.0.2",
"jscodeshift": "^0.16.1"
"jscodeshift": "^17.3.0"
},
"devDependencies": {},
"engines": {
Expand Down
6 changes: 3 additions & 3 deletions packages/elements/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@
"@radix-ui/primitive": "^1.1.2",
"@radix-ui/react-form": "^0.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@xstate/react": "^5.0.5",
"@xstate/react": "^6.0.0",
"client-only": "^0.0.1",
"tslib": "catalog:repo",
"xstate": "^5.19.4"
"xstate": "^5.20.1"
},
"devDependencies": {
"@statelyai/inspect": "^0.4.0",
"concurrently": "^8.2.2",
"concurrently": "^9.2.0",
"next": "14.2.30",
"type-fest": "^4.41.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/fastify/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"cookies": "0.8.0",
"cookies": "0.9.1",
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
Expand Down
5 changes: 2 additions & 3 deletions packages/remix/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,13 +79,12 @@
"@clerk/clerk-react": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"cookie": "0.7.2",
"cookie": "1.0.2",
"tslib": "catalog:repo"
},
Comment thread
tmilewski marked this conversation as resolved.
"devDependencies": {
"@remix-run/react": "^2.16.8",
"@remix-run/server-runtime": "^2.16.8",
"@types/cookie": "^0.6.0"
"@remix-run/server-runtime": "^2.16.8"
},
"peerDependencies": {
"@remix-run/react": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/remix/src/ssr/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { constants, debugRequestState } from '@clerk/backend/internal';
import { isTruthy } from '@clerk/shared/underscore';
import type { AppLoadContext, defer } from '@remix-run/server-runtime';
import { json } from '@remix-run/server-runtime';
import cookie from 'cookie';
import { parse as parseCookie } from 'cookie';

import { getEnvVariable } from '../utils/utils';
import type { RequestStateWithRedirectUrls } from './types';
Expand All @@ -22,7 +22,7 @@ export function isRedirect(res: Response): boolean {
}

export const parseCookies = (req: Request) => {
return cookie.parse(req.headers.get('cookie') || '');
return parseCookie(req.headers.get('cookie') || '');
};

export function assertValidHandlerResult(val: any, error?: string): asserts val is Record<string, unknown> | null {
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -147,14 +147,14 @@
"glob-to-regexp": "0.4.1",
"js-cookie": "3.0.5",
"std-env": "^3.9.0",
"swr": "^2.3.3"
"swr": "2.3.4"
},
"devDependencies": {
"@stripe/react-stripe-js": "3.1.1",
"@stripe/stripe-js": "5.6.0",
"@types/glob-to-regexp": "0.4.4",
"@types/js-cookie": "3.0.6",
"cross-fetch": "^4.0.0",
"cross-fetch": "^4.1.0",
"esbuild": "0.25.0"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/testing/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,11 @@
"@clerk/backend": "workspace:^",
"@clerk/shared": "workspace:^",
"@clerk/types": "workspace:^",
"dotenv": "16.4.7"
"dotenv": "17.2.0"
},
"devDependencies": {
"@playwright/test": "^1.44.0",
"cypress": "^14.5.1"
"@playwright/test": "^1.54.1",
"cypress": "^14.5.2"
},
Comment thread
tmilewski marked this conversation as resolved.
"peerDependencies": {
"@playwright/test": "^1",
Expand Down
Loading
Loading