Skip to content

chore(deps): bump the all group across 1 directory with 29 updates#288

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/all-95c7e90811
Closed

chore(deps): bump the all group across 1 directory with 29 updates#288
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/all-95c7e90811

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 12, 2025

Bumps the all group with 29 updates in the / directory:

Package From To
@changesets/cli 2.28.1 2.29.4
turbo 2.4.4 2.5.4
@clerk/backend 1.25.8 2.0.0
@clerk/shared 3.2.3 3.9.6
@solid-primitives/context 0.3.0 0.3.1
@solid-primitives/destructure 0.2.0 0.2.1
@solid-primitives/memo 1.4.1 1.4.2
@tanstack/solid-query 5.69.0 5.80.7
@clerk/clerk-js 5.58.1 5.68.0
@clerk/localizations 3.13.4 3.16.4
@clerk/themes 2.2.26 2.2.49
@clerk/types 4.50.1 4.60.0
@eslint/js 9.23.0 9.28.0
@types/node 22.13.14 24.0.1
eslint 9.23.0 9.28.0
expect-type 1.2.0 1.2.1
globals 16.0.0 16.2.0
jsdom 26.0.0 26.1.0
tsup 8.4.0 8.5.0
typescript 5.8.2 5.8.3
typescript-eslint 8.28.0 8.34.0
vitest 3.0.9 3.2.3
@solid-primitives/resize-observer 2.1.0 2.1.1
@solidjs/start 1.1.3 1.1.4
solid-js 1.9.5 1.9.7
postcss 8.5.3 8.5.5
solid-devtools 0.33.0 0.34.0
tailwindcss 4.0.17 4.1.10
vinxi 0.5.3 0.5.7

Updates @changesets/cli from 2.28.1 to 2.29.4

Release notes

Sourced from @​changesets/cli's releases.

@​changesets/cli@​2.29.4

Patch Changes

  • #1668 65d6632 Thanks @​Andarist! - Fixed a crash in pre mode when trying to version private packages when tagging for private package is disabled

  • Updated dependencies [65d6632]:

    • @​changesets/assemble-release-plan@​6.0.8
    • @​changesets/get-release-plan@​4.0.12

@​changesets/cli@​2.29.3

Patch Changes

@​changesets/cli@​2.29.2

Patch Changes

  • #1636 f73f84a Thanks @​Netail! - Correctly resolve new changesets with since option when the .changeset directory is not directly in the git root

  • Updated dependencies [f73f84a]:

    • @​changesets/read@​0.6.5
    • @​changesets/git@​3.0.4
    • @​changesets/get-release-plan@​4.0.10
    • @​changesets/apply-release-plan@​7.0.12

@​changesets/cli@​2.29.1

Patch Changes

  • #1620 b15e629 Thanks @​Netail! - Correctly fetch new changesets with since if the git option diff.relative has been set to true

  • Updated dependencies [b15e629]:

    • @​changesets/git@​3.0.3
    • @​changesets/apply-release-plan@​7.0.11
    • @​changesets/read@​0.6.4
    • @​changesets/get-release-plan@​4.0.9

@​changesets/cli@​2.29.0

Minor Changes

Commits
  • b962929 Version Packages (#1669)
  • 65d6632 Fixed a crash in pre mode when trying to version private packages when taggin...
  • 5ca6271 Enable publishing with provenance (#1659)
  • d23598a Version Packages (#1641)
  • de8bebc Fixed a crash in prerelease mode when a package misses the version field in i...
  • f15b0d0 docs: adds spectrum css and spectrum web components (#1627)
  • c1e8a78 Support ../ in publishConfig.directory when publishing packages (#1619)
  • 6dcc237 docs: fix examples (#1630)
  • baa9d45 Version Packages (#1637)
  • f73f84a Correctly resolve new changesets with since option when the .changeset di...
  • Additional commits viewable in compare view

Updates turbo from 2.4.4 to 2.5.4

Release notes

Sourced from turbo's releases.

Turborepo v2.5.4

What's Changed

Docs

turbo-ignore

eslint

@​turbo/repository

Examples

Changelog

... (truncated)

Commits

Updates @clerk/backend from 1.25.8 to 2.0.0

Release notes

Sourced from @​clerk/backend's releases.

@​clerk/backend@​2.0.0

Major Changes

  • Introduces machine authentication, supporting four token types: api_key, oauth_token, machine_token, and session_token. For backwards compatibility, session_token remains the default when no token type is specified. This enables machine-to-machine authentication and use cases such as API keys and OAuth integrations. Existing applications continue to work without modification. (#5689) by @​wobsoriano

    You can specify which token types are allowed by using the acceptsToken option in the authenticateRequest() function. This option can be set to a specific type, an array of types, or 'any' to accept all supported tokens.

    Example usage:

    import express from 'express';
    import { clerkClient } from '@clerk/backend';
    const app = express();
    app.use(async (req, res, next) => {
    const requestState = await clerkClient.authenticateRequest(req, {
    acceptsToken: 'any',
    });
    if (!requestState.isAuthenticated) {
    // do something for unauthenticated requests
    }
    const authObject = requestState.toAuth();
    if (authObject.tokenType === 'session_token') {
    console.log('this is session token from a user');
    } else {
    console.log('this is some other type of machine token');
    console.log('more specifically, a ' + authObject.tokenType);
    }
    // Attach the auth object to locals so downstream handlers
    // and middleware can access it
    res.locals.auth = authObject;
    next();
    });

Minor Changes

  • The svix dependency is no longer needed when using the verifyWebhook() function. verifyWebhook() was refactored to not rely on svix anymore while keeping the same functionality and behavior. (#6059) by @​royanger

    If you previously installed svix to use verifyWebhook() you can uninstall it now:

    npm uninstall svix

... (truncated)

Changelog

Sourced from @​clerk/backend's changelog.

2.0.0

Major Changes

  • Introduces machine authentication, supporting four token types: api_key, oauth_token, machine_token, and session_token. For backwards compatibility, session_token remains the default when no token type is specified. This enables machine-to-machine authentication and use cases such as API keys and OAuth integrations. Existing applications continue to work without modification. (#5689) by @​wobsoriano

    You can specify which token types are allowed by using the acceptsToken option in the authenticateRequest() function. This option can be set to a specific type, an array of types, or 'any' to accept all supported tokens.

    Example usage:

    import express from 'express';
    import { clerkClient } from '@clerk/backend';
    const app = express();
    app.use(async (req, res, next) => {
    const requestState = await clerkClient.authenticateRequest(req, {
    acceptsToken: 'any',
    });
    if (!requestState.isAuthenticated) {
    // do something for unauthenticated requests
    }
    const authObject = requestState.toAuth();
    if (authObject.tokenType === 'session_token') {
    console.log('this is session token from a user');
    } else {
    console.log('this is some other type of machine token');
    console.log('more specifically, a ' + authObject.tokenType);
    }
    // Attach the auth object to locals so downstream handlers
    // and middleware can access it
    res.locals.auth = authObject;
    next();
    });

Minor Changes

  • The svix dependency is no longer needed when using the verifyWebhook() function. verifyWebhook() was refactored to not rely on svix anymore while keeping the same functionality and behavior. (#6059) by @​royanger

    If you previously installed svix to use verifyWebhook() you can uninstall it now:

    npm uninstall svix

... (truncated)

Commits
  • 5f645bc ci(repo): Version packages (#6031)
  • c656270 fix(backend): Remove peerDep of svix for verifyWebhook() (#6059)
  • 918e2e0 fix(backend): JSDoc for verifyWebook & verifyToken (#6060)
  • 795d09a chore(backend): Add JSDoc comments to resources (#6049)
  • 4f93634 chore(backend,nextjs,astro): Introduce getAuthObjectFromJwt as internal uti...
  • acb146c chore(backend): Update [DEV] minor & patch dependencies (#6038)
  • ea622ba feat(backend,nextjs): Introduce machine authentication (#5689)
  • 94be195 ci(repo): Version packages (#6015)
  • 1c97fd0 feat(backend): Add notifyPrimaryEmailAddressChanged to updateUser params ...
  • 5421421 feat(backend): Add getInstanceOrganizationMembershipList (#6022)
  • Additional commits viewable in compare view

Updates @clerk/shared from 3.2.3 to 3.9.6

Release notes

Sourced from @​clerk/shared's releases.

@​clerk/shared@​3.9.6

Patch Changes

@​clerk/shared@​3.9.5

Patch Changes

  • Bug fix: In createCheckAuthorization allow for old org_role format in JWT v1 where org: is missing. (#5988) by @​panteliselef

    Example session claims:

    {
      "org_id": "org_xxxx",
      "org_permissions": [],
      "org_role": "admin",
      "org_slug": "test"
    }

    Code

    authObject.has({ role: 'org:admin' }); // -> true
    authObject.has({ role: 'admin' }); // -> true
  • Updated dependencies [2c6a0cc, 71e6a1f]:

    • @​clerk/types@​4.59.3

@​clerk/shared@​3.9.4

Patch Changes

@​clerk/shared@​3.9.3

Patch Changes

@​clerk/shared@​3.9.2

Patch Changes

Changelog

Sourced from @​clerk/shared's changelog.

3.9.6

Patch Changes

3.9.5

Patch Changes

  • Bug fix: In createCheckAuthorization allow for old org_role format in JWT v1 where org: is missing. (#5988) by @​panteliselef

    Example session claims:

    {
      "org_id": "org_xxxx",
      "org_permissions": [],
      "org_role": "admin",
      "org_slug": "test"
    }

    Code

    authObject.has({ role: 'org:admin' }); // -> true
    authObject.has({ role: 'admin' }); // -> true
  • Updated dependencies [2c6a0cc, 71e6a1f]:

    • @​clerk/types@​4.59.3

3.9.4

Patch Changes

3.9.3

Patch Changes

3.9.2

Patch Changes

... (truncated)

Commits

Updates @solid-primitives/context from 0.3.0 to 0.3.1

Release notes

Sourced from @​solid-primitives/context's releases.

@​solid-primitives/context@​0.3.1

Patch Changes

  • 53f08cc: fix: Move "@solid-primitives/source" export condition under import in package.json (Fixes #774, Fixes #749)
Commits
  • 0037773 Version Packages (#789)
  • fe7cffd Version Packages
  • dcff410 Update pnpm to 10.9.0
  • 53f08cc fix: Move @​solid-primitives/source export condition under import in package.json
  • 00ad5e4 Version Packages (#782)
  • 469f860 Version Packages
  • df736b6 fix: repeat must not mutate its result object in place (#785) (#787)
  • 0192f34 fix: repeat does not use fallback on initial length 0
  • b3d3815 fix: repeat must not mutate its result object in place (#785)
  • a37052d Typo makes getPositionToScreen buggy (#777)
  • Additional commits viewable in compare view

Updates @solid-primitives/destructure from 0.2.0 to 0.2.1

Release notes

Sourced from @​solid-primitives/destructure's releases.

@​solid-primitives/destructure@​0.2.1

Patch Changes

  • 53f08cc: fix: Move "@solid-primitives/source" export condition under import in package.json (Fixes #774, Fixes #749)
  • Updated dependencies [53f08cc]
    • @​solid-primitives/utils@​6.3.1
Commits
  • 0037773 Version Packages (#789)
  • fe7cffd Version Packages
  • dcff410 Update pnpm to 10.9.0
  • 53f08cc fix: Move @​solid-primitives/source export condition under import in package.json
  • 00ad5e4 Version Packages (#782)
  • 469f860 Version Packages
  • df736b6 fix: repeat must not mutate its result object in place (#785) (#787)
  • 0192f34 fix: repeat does not use fallback on initial length 0
  • b3d3815 fix: repeat must not mutate its result object in place (#785)
  • a37052d Typo makes getPositionToScreen buggy (#777)
  • Additional commits viewable in compare view

Updates @solid-primitives/memo from 1.4.1 to 1.4.2

Release notes

Sourced from @​solid-primitives/memo's releases.

@​solid-primitives/memo@​1.4.2

Patch Changes

  • 53f08cc: fix: Move "@solid-primitives/source" export condition under import in package.json (Fixes #774, Fixes #749)
  • Updated dependencies [53f08cc]
    • @​solid-primitives/scheduled@​1.5.1
    • @​solid-primitives/utils@​6.3.1
Commits
  • 0037773 Version Packages (#789)
  • fe7cffd Version Packages
  • dcff410 Update pnpm to 10.9.0
  • 53f08cc fix: Move @​solid-primitives/source export condition under import in package.json
  • 00ad5e4 Version Packages (#782)
  • 469f860 Version Packages
  • df736b6 fix: repeat must not mutate its result object in place (#785) (#787)
  • 0192f34 fix: repeat does not use fallback on initial length 0
  • b3d3815 fix: repeat must not mutate its result object in place (#785)
  • a37052d Typo makes getPositionToScreen buggy (#777)
  • Additional commits viewable in compare view

Updates @tanstack/solid-query from 5.69.0 to 5.80.7

Release notes

Sourced from @​tanstack/solid-query's releases.

v5.80.7

Version 5.80.7 - 6/11/25, 11:51 PM

Changes

Fix

  • solid-query-devtools: client-side code instantiating prematurely server-side (#9163) (bd3ac49) by Wesley LeMahieu

Chore

  • deps: update autofix-ci/action digest to 635ffb0 (#9263) (641ec86) by renovate[bot]

Test

  • add callback return type tests for mutation callbacks (#9252) (2b9b122) by Braden Wong

Docs

  • fix relative links (#9262) (cba46b5) by Collin Stevens
  • Remove superfluous text from mutations.md (#9256) (10b4c2f) by H. C. Kruse
  • Replace accidentally-deleted content in mutations.md (#9254) (eae7bde) by Christina Martinez

Packages

  • @​tanstack/query-core@​5.80.7
  • @​tanstack/solid-query-devtools@​5.80.7
  • @​tanstack/query-broadcast-client-experimental@​5.80.7
  • @​tanstack/query-persist-client-core@​5.80.7
  • @​tanstack/query-sync-storage-persister@​5.80.7
  • @​tanstack/react-query@​5.80.7
  • @​tanstack/react-query-devtools@​5.80.7
  • @​tanstack/react-query-persist-client@​5.80.7
  • @​tanstack/react-query-next-experimental@​5.80.7
  • @​tanstack/solid-query@​5.80.7
  • @​tanstack/solid-query-persist-client@​5.80.7
  • @​tanstack/svelte-query@​5.80.7
  • @​tanstack/svelte-query-devtools@​5.80.7
  • @​tanstack/svelte-query-persist-client@​5.80.7
  • @​tanstack/vue-query@​5.80.7
  • @​tanstack/vue-query-devtools@​5.80.7
  • @​tanstack/angular-query-experimental@​5.80.7
  • @​tanstack/query-async-storage-persister@​5.80.7
  • @​tanstack/angular-query-devtools-experimental@​5.80.7

v5.80.6

Version 5.80.6 - 6/5/25, 1:09 PM

Changes

... (truncated)

Commits

Updates @clerk/clerk-js from 5.58.1 to 5.68.0

Release notes

Sourced from @​clerk/clerk-js's releases.

@​clerk/clerk-js@​5.68.0

Minor Changes

  • Introduce cssLayerName option to allow users to opt Clerk styles into a native CSS layer. (#5552) by @​alexcarpenter

Patch Changes

  • Get payment_method_order for Stripe payment elements from backend (#6034) by @​aeliox

  • Use the is_removable flag on a payment source to determine if it can be removed. (#6033) by @​aeliox

  • Clean up layout and logic of the PlanDetails drawer (#5928) by @​aeliox

  • Initiate enterprise SSO from ticket flows, such as organization invitations. (#6009) by @​LauraBeatris

  • Introduce internal <OAuthConsent /> component to be used internally in the machine auth OAuth flow in account portal. (#6021) by @​alexcarpenter

  • feat(types,clerk-js): Update types; RoleSelect allows fallbackLabel (#6037) by @​thiskevinwang

    • this updates OrganizationInvitation and OrganizationMembership resource+types to include roleName which is already present on frontend-api responses, as role_name.
    • this updates RoleSelect to allow rendering a fallbackLabel in the event that value does not map to any of the supplied roles
  • Updated dependencies [d8fa5d9, be2e89c, 85f3db4, 5644d94, b578225, 8838120]:

    • @​clerk/types@​4.60.0
    • @​clerk/localizations@​3.16.4
    • @​clerk/shared@​3.9.6

@​clerk/clerk-js@​5.67.5

Patch Changes

  • Fixes a bug where the session cookie was getting incorrectly set from tabs that do not reflect the active session. (#5989) by @​brkalow

  • Fix an issue where clerk-js was incorrectly emitting the new session's token during session switching. This impacts some applications that rely on Clerk's multi-session behavior. (#5986) by @​brkalow

  • Fix issue where the combined flow wouldn't trigger if a phone number was used as an identifier while set as an optional field. (#5992) by @​dstaley

  • Add "Past Due" amount on checkout flow when applicable (#6014) by @​octoper

  • Handle missing publicUserData in OrganizationMembership (#6016) by @​tmilewski

  • Add support for the signup_rate_limit_exceeded error on OAuth flows (#6028) by @​anagstef

  • Updated dependencies [f897773, 2c6a0cc, 71e6a1f]:

    • @​clerk/shared@​3.9.5
    • @​clerk/localizations@​3.16.3
    • @​clerk/types@​4.59.3

@​clerk/clerk-js@​5.67.4

Patch Changes

... (truncated)

Changelog

Sourced from @​clerk/clerk-js's changelog.

5.68.0

Minor Changes

  • Introduce cssLayerName option to allow users to opt Clerk styles into a native CSS layer. (#5552) by @​alexcarpenter

Patch Changes

  • Get payment_method_order for Stripe payment elements from backend (#6034) by @​aeliox

  • Use the is_removable flag on a payment source to determine if it can be removed. (#6033) by @​aeliox

  • Clean up layout and logic of the PlanDetails drawer (#5928) by @​aeliox

  • Initiate enterprise SSO from ticket flows, such as organization invitations. (#6009) by @​LauraBeatris

  • Introduce internal <OAuthConsent /> component to be used internally in the machine auth OAuth flow in account portal. (#6021) by

Bumps the all group with 29 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@changesets/cli](https://github.com/changesets/changesets) | `2.28.1` | `2.29.4` |
| [turbo](https://github.com/vercel/turborepo) | `2.4.4` | `2.5.4` |
| [@clerk/backend](https://github.com/clerk/javascript/tree/HEAD/packages/backend) | `1.25.8` | `2.0.0` |
| [@clerk/shared](https://github.com/clerk/javascript/tree/HEAD/packages/shared) | `3.2.3` | `3.9.6` |
| [@solid-primitives/context](https://github.com/solidjs-community/solid-primitives) | `0.3.0` | `0.3.1` |
| [@solid-primitives/destructure](https://github.com/solidjs-community/solid-primitives) | `0.2.0` | `0.2.1` |
| [@solid-primitives/memo](https://github.com/solidjs-community/solid-primitives) | `1.4.1` | `1.4.2` |
| [@tanstack/solid-query](https://github.com/TanStack/query/tree/HEAD/packages/solid-query) | `5.69.0` | `5.80.7` |
| [@clerk/clerk-js](https://github.com/clerk/javascript/tree/HEAD/packages/clerk-js) | `5.58.1` | `5.68.0` |
| [@clerk/localizations](https://github.com/clerk/javascript/tree/HEAD/packages/localizations) | `3.13.4` | `3.16.4` |
| [@clerk/themes](https://github.com/clerk/javascript/tree/HEAD/packages/themes) | `2.2.26` | `2.2.49` |
| [@clerk/types](https://github.com/clerk/javascript/tree/HEAD/packages/types) | `4.50.1` | `4.60.0` |
| [@eslint/js](https://github.com/eslint/eslint/tree/HEAD/packages/js) | `9.23.0` | `9.28.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.13.14` | `24.0.1` |
| [eslint](https://github.com/eslint/eslint) | `9.23.0` | `9.28.0` |
| [expect-type](https://github.com/mmkal/expect-type) | `1.2.0` | `1.2.1` |
| [globals](https://github.com/sindresorhus/globals) | `16.0.0` | `16.2.0` |
| [jsdom](https://github.com/jsdom/jsdom) | `26.0.0` | `26.1.0` |
| [tsup](https://github.com/egoist/tsup) | `8.4.0` | `8.5.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.8.2` | `5.8.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.28.0` | `8.34.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `3.0.9` | `3.2.3` |
| [@solid-primitives/resize-observer](https://github.com/solidjs-community/solid-primitives) | `2.1.0` | `2.1.1` |
| [@solidjs/start](https://github.com/solidjs/solid-start/tree/HEAD/packages/start) | `1.1.3` | `1.1.4` |
| [solid-js](https://github.com/solidjs/solid) | `1.9.5` | `1.9.7` |
| [postcss](https://github.com/postcss/postcss) | `8.5.3` | `8.5.5` |
| [solid-devtools](https://github.com/thetarnav/solid-devtools) | `0.33.0` | `0.34.0` |
| [tailwindcss](https://github.com/tailwindlabs/tailwindcss/tree/HEAD/packages/tailwindcss) | `4.0.17` | `4.1.10` |
| [vinxi](https://github.com/nksaraf/vinxi/tree/HEAD/packages/vinxi) | `0.5.3` | `0.5.7` |



Updates `@changesets/cli` from 2.28.1 to 2.29.4
- [Release notes](https://github.com/changesets/changesets/releases)
- [Changelog](https://github.com/changesets/changesets/blob/main/docs/modifying-changelog-format.md)
- [Commits](https://github.com/changesets/changesets/compare/@changesets/cli@2.28.1...@changesets/cli@2.29.4)

Updates `turbo` from 2.4.4 to 2.5.4
- [Release notes](https://github.com/vercel/turborepo/releases)
- [Changelog](https://github.com/vercel/turborepo/blob/main/release.md)
- [Commits](vercel/turborepo@v2.4.4...v2.5.4)

Updates `@clerk/backend` from 1.25.8 to 2.0.0
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/backend/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/backend@2.0.0/packages/backend)

Updates `@clerk/shared` from 3.2.3 to 3.9.6
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/shared/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/shared@3.9.6/packages/shared)

Updates `@solid-primitives/context` from 0.3.0 to 0.3.1
- [Release notes](https://github.com/solidjs-community/solid-primitives/releases)
- [Commits](https://github.com/solidjs-community/solid-primitives/compare/@solid-primitives/context@0.3.0...@solid-primitives/context@0.3.1)

Updates `@solid-primitives/destructure` from 0.2.0 to 0.2.1
- [Release notes](https://github.com/solidjs-community/solid-primitives/releases)
- [Commits](https://github.com/solidjs-community/solid-primitives/compare/@solid-primitives/destructure@0.2.0...@solid-primitives/destructure@0.2.1)

Updates `@solid-primitives/memo` from 1.4.1 to 1.4.2
- [Release notes](https://github.com/solidjs-community/solid-primitives/releases)
- [Commits](https://github.com/solidjs-community/solid-primitives/compare/@solid-primitives/memo@1.4.1...@solid-primitives/memo@1.4.2)

Updates `@tanstack/solid-query` from 5.69.0 to 5.80.7
- [Release notes](https://github.com/TanStack/query/releases)
- [Commits](https://github.com/TanStack/query/commits/v5.80.7/packages/solid-query)

Updates `@clerk/clerk-js` from 5.58.1 to 5.68.0
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/clerk-js/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/clerk-js@5.68.0/packages/clerk-js)

Updates `@clerk/localizations` from 3.13.4 to 3.16.4
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/localizations/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/localizations@3.16.4/packages/localizations)

Updates `@clerk/themes` from 2.2.26 to 2.2.49
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/themes/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/themes@2.2.49/packages/themes)

Updates `@clerk/types` from 4.50.1 to 4.60.0
- [Release notes](https://github.com/clerk/javascript/releases)
- [Changelog](https://github.com/clerk/javascript/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/clerk/javascript/commits/@clerk/types@4.60.0/packages/types)

Updates `@eslint/js` from 9.23.0 to 9.28.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/commits/v9.28.0/packages/js)

Updates `@types/node` from 22.13.14 to 24.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `eslint` from 9.23.0 to 9.28.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v9.23.0...v9.28.0)

Updates `expect-type` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/mmkal/expect-type/releases)
- [Commits](mmkal/expect-type@v1.2.0...v1.2.1)

Updates `globals` from 16.0.0 to 16.2.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v16.0.0...v16.2.0)

Updates `jsdom` from 26.0.0 to 26.1.0
- [Release notes](https://github.com/jsdom/jsdom/releases)
- [Changelog](https://github.com/jsdom/jsdom/blob/main/Changelog.md)
- [Commits](jsdom/jsdom@26.0.0...26.1.0)

Updates `tsup` from 8.4.0 to 8.5.0
- [Release notes](https://github.com/egoist/tsup/releases)
- [Commits](egoist/tsup@v8.4.0...v8.5.0)

Updates `typescript` from 5.8.2 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.8.2...v5.8.3)

Updates `typescript-eslint` from 8.28.0 to 8.34.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.34.0/packages/typescript-eslint)

Updates `vitest` from 3.0.9 to 3.2.3
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v3.2.3/packages/vitest)

Updates `@solid-primitives/resize-observer` from 2.1.0 to 2.1.1
- [Release notes](https://github.com/solidjs-community/solid-primitives/releases)
- [Commits](https://github.com/solidjs-community/solid-primitives/compare/@solid-primitives/resize-observer@2.1.0...@solid-primitives/resize-observer@2.1.1)

Updates `@solidjs/start` from 1.1.3 to 1.1.4
- [Release notes](https://github.com/solidjs/solid-start/releases)
- [Changelog](https://github.com/solidjs/solid-start/blob/main/packages/start/CHANGELOG.md)
- [Commits](https://github.com/solidjs/solid-start/commits/@solidjs/start@1.1.4/packages/start)

Updates `solid-js` from 1.9.5 to 1.9.7
- [Release notes](https://github.com/solidjs/solid/releases)
- [Changelog](https://github.com/solidjs/solid/blob/main/CHANGELOG.md)
- [Commits](solidjs/solid@v1.9.5...v1.9.7)

Updates `postcss` from 8.5.3 to 8.5.5
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.3...8.5.5)

Updates `solid-devtools` from 0.33.0 to 0.34.0
- [Release notes](https://github.com/thetarnav/solid-devtools/releases)
- [Commits](https://github.com/thetarnav/solid-devtools/compare/solid-devtools@0.33.0...solid-devtools@0.34.0)

Updates `tailwindcss` from 4.0.17 to 4.1.10
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/main/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/commits/v4.1.10/packages/tailwindcss)

Updates `vinxi` from 0.5.3 to 0.5.7
- [Release notes](https://github.com/nksaraf/vinxi/releases)
- [Changelog](https://github.com/nksaraf/vinxi/blob/main/packages/vinxi/CHANGELOG.md)
- [Commits](https://github.com/nksaraf/vinxi/commits/vinxi@0.5.7/packages/vinxi)

---
updated-dependencies:
- dependency-name: "@changesets/cli"
  dependency-version: 2.29.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: turbo
  dependency-version: 2.5.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@clerk/backend"
  dependency-version: 2.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: "@clerk/shared"
  dependency-version: 3.9.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@solid-primitives/context"
  dependency-version: 0.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@solid-primitives/destructure"
  dependency-version: 0.2.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@solid-primitives/memo"
  dependency-version: 1.4.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@tanstack/solid-query"
  dependency-version: 5.80.7
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@clerk/clerk-js"
  dependency-version: 5.68.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@clerk/localizations"
  dependency-version: 3.16.4
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@clerk/themes"
  dependency-version: 2.2.49
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@clerk/types"
  dependency-version: 4.60.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@eslint/js"
  dependency-version: 9.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@types/node"
  dependency-version: 24.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: eslint
  dependency-version: 9.28.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: expect-type
  dependency-version: 1.2.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: globals
  dependency-version: 16.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: jsdom
  dependency-version: 26.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tsup
  dependency-version: 8.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript-eslint
  dependency-version: 8.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vitest
  dependency-version: 3.2.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@solid-primitives/resize-observer"
  dependency-version: 2.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@solidjs/start"
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: solid-js
  dependency-version: 1.9.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss
  dependency-version: 8.5.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: solid-devtools
  dependency-version: 0.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: tailwindcss
  dependency-version: 4.1.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vinxi
  dependency-version: 0.5.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 12, 2025
@changeset-bot
Copy link

changeset-bot bot commented Jun 12, 2025

⚠️ No Changeset found

Latest commit: 222b794

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 23, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 23, 2025
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-95c7e90811 branch June 23, 2025 20:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants