Skip to content

Update dependency @clerk/tanstack-react-start to v1 - #280

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/clerk-tanstack-react-start-1.x
Open

Update dependency @clerk/tanstack-react-start to v1#280
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/clerk-tanstack-react-start-1.x

Conversation

@renovate

@renovate renovate Bot commented Mar 4, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@clerk/tanstack-react-start (source) ^0.29.14^1.4.29 age confidence

Release Notes

clerk/javascript (@​clerk/tanstack-react-start)

v1.4.29

Patch Changes

v1.4.28

Patch Changes

v1.4.26

Compare Source

Patch Changes

v1.4.25

Compare Source

Patch Changes

v1.4.24

Compare Source

Patch Changes

v1.4.23

Compare Source

Patch Changes

v1.4.22

Compare Source

Patch Changes

v1.4.21

Compare Source

Patch Changes

v1.4.20

Compare Source

Patch Changes

v1.4.19

Compare Source

Patch Changes

v1.4.18

Compare Source

Patch Changes

v1.4.17

Compare Source

Patch Changes

v1.4.16

Compare Source

Patch Changes

v1.4.15

Compare Source

Patch Changes

v1.4.14

Compare Source

Patch Changes

v1.4.13

Compare Source

Patch Changes

v1.4.12

Compare Source

Patch Changes

v1.4.11

Patch Changes

v1.4.10

Patch Changes

v1.4.9

Compare Source

Patch Changes

v1.4.8

Compare Source

Patch Changes

v1.4.7

Patch Changes

v1.4.6

Patch Changes

v1.4.5

Patch Changes

v1.4.4

Patch Changes

v1.4.3

Compare Source

Patch Changes

v1.4.2

Compare Source

Patch Changes

v1.4.1

Compare Source

Patch Changes

v1.4.0

Compare Source

Minor Changes
  • Remove the <ConfigureSSO /> component from the public API in favor of usage within OrganizationProfile (#​8779) by @​LauraBeatris

    Removing these exports has no breaking changes impact on production applications, as was never released as a GA component

Patch Changes

v1.3.3

Compare Source

Patch Changes

v1.3.2

Compare Source

Patch Changes

v1.3.1

Compare Source

Patch Changes

v1.3.0

Compare Source

Minor Changes
Patch Changes

v1.2.7

Patch Changes

v1.2.6

Patch Changes

v1.2.5

Compare Source

Patch Changes

v1.2.4

Compare Source

Patch Changes

v1.2.3

Compare Source

Patch Changes

v1.2.2

Compare Source

Patch Changes

v1.2.1

Compare Source

Patch Changes

v1.2.0

Compare Source

Minor Changes
  • Add an env-var shortcut for unsafe_disableDevelopmentModeConsoleWarning across the Astro, Nuxt, React Router, and TanStack Start integrations so the development-keys console warning can be suppressed without threading the option through <ClerkProvider> manually: (#​8402) by @​jacekradko

    • Astro: PUBLIC_CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING
    • Nuxt: NUXT_PUBLIC_CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING
    • React Router: VITE_CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING (or CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING)
    • TanStack Start: VITE_CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING (or CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING)

    The Next.js equivalent (NEXT_PUBLIC_CLERK_UNSAFE_DISABLE_DEVELOPMENT_MODE_CONSOLE_WARNING) already existed; the JSDoc on unsafe_disableDevelopmentModeConsoleWarning now lists every framework's env-var shortcut and clarifies that suppressing the warning at source also keeps it from being mirrored to the dev-server terminal (e.g. Next.js with experimental.browserDebugInfoInTerminal).

  • Expose OAuthConsent as a public component export across React-based SDKs. (#​8381) by @​wobsoriano

    Example:

    import { OAuthConsent } from '@clerk/react';
    
    export default function Page() {
      return <OAuthConsent />;
    }
Patch Changes

v1.1.9

Compare Source

Patch Changes

v1.1.8

Compare Source

Patch Changes
  • Fix Request cloning and outbound fetch to omit cross-realm AbortSignal. Node 24's bundled undici tightened the instanceof AbortSignal check on RequestInit.signal, which broke: (#​8351) by @​jacekradko

    • Cloning framework-specific requests such as NextRequest in @clerk/backend's ClerkRequest.
    • Subclassed Requests passed through patchRequest in @clerk/react-router and @clerk/tanstack-react-start.
    • Frontend API proxying in @clerk/backend's clerkFrontendApiProxy, which forwarded the inbound request's signal to the upstream fetch. Abort propagation will be restored in a follow-up via an in-realm AbortController bridge.
  • Updated dependencies [9b57986, a9f9b29, e0a63f9]:

v1.1.7

Patch Changes

v1.1.6

Patch Changes

v1.1.5

Patch Changes

v1.1.4

Patch Changes

v1.1.3

Compare Source

Patch Changes

v1.1.2

Compare Source

Patch Changes

v1.1.1

Patch Changes

v1.1.0

Minor Changes
  • Introduce internal <OAuthConsent /> component for rendering a zero-config OAuth consent screen on an OAuth authorize redirect page. (#​8289) by @​wobsoriano

    Usage example:

    import { OAuthConsent } from '@clerk/nextjs';
    
    export default function OAuthConsentPage() {
      return <OAuthConsent />;
    }
Patch Changes

v1.0.13

Compare Source

Patch Changes

v1.0.12

Compare Source

Patch Changes

v1.0.11

Compare Source

Patch Changes

v1.0.8

Compare Source

Patch Changes

v1.0.7

Compare Source

Patch Changes

v1.0.6

Compare Source

Patch Changes

v1.0.5

Compare Source

Patch Changes

v1.0.4

Compare Source

Patch Changes

v1.0.2

Compare Source

Patch Changes

v1.0.1

Compare Source

Patch Changes

v1.0.0

Compare Source

Major Changes
  • Require Node.js 20.9.0 in all packages (#​7262) by @​jacekradko

  • Remove clerkJSUrl, clerkJSVersion, clerkUIUrl, and clerkUIVersion props from all SDKs. To pin a specific version of @clerk/clerk-js, import the Clerk constructor from @clerk/clerk-js and pass it to ClerkProvider via the Clerk prop. To pin a specific version of @clerk/ui, import ui from @clerk/ui and pass it via the ui prop. This bundles the modules directly with your application instead of loading them from the CDN. (#​7879) by @​jacekradko

  • Introduce <Show when={...}> as the cross-framework authorization control component and remove <Protect>, <SignedIn>, and <SignedOut> in favor of <Show>. (#​7373) by @​jacekradko

  • getToken() now throws ClerkOfflineError instead of returning null when the client is offline. (#​7598) by @​bratsos

    This makes it explicit that a token fetch failure was due to network conditions, not authentication state. Previously, returning null could be misinterpreted as "user is signed out," potentially causing the cached token to be cleared.

    To handle this change, catch ClerkOfflineError from `ge

Note

PR body was truncated to here.


Configuration

📅 Schedule: (in timezone America/Los_Angeles)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 3 times, most recently from 2be8ff2 to 5d48999 Compare March 11, 2026 04:14
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 2 times, most recently from a419d2a to f6cc750 Compare March 20, 2026 13:27
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 2 times, most recently from 1424a22 to 5898280 Compare April 1, 2026 05:07
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 4 times, most recently from 9db8a59 to 270b049 Compare April 13, 2026 20:43
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 5 times, most recently from 90ab0ab to dd06391 Compare April 21, 2026 00:05
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 6 times, most recently from 84fb481 to d56bd1d Compare April 24, 2026 22:50
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 5 times, most recently from cdac34b to 314dcc4 Compare May 15, 2026 20:34
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 3 times, most recently from 74c75d6 to f926a45 Compare May 23, 2026 00:56
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 5 times, most recently from ce50842 to 2434419 Compare June 30, 2026 22:10
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 4 times, most recently from 81102ac to 3f6bbb7 Compare July 8, 2026 19:50
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 5 times, most recently from a990412 to b4b7388 Compare July 18, 2026 00:45
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 4 times, most recently from 6f79e64 to f40a3a0 Compare July 23, 2026 20:37
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 4 times, most recently from 40fc50b to 2675f61 Compare August 3, 2026 22:52
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 4 times, most recently from 13f12c0 to fea0d57 Compare August 11, 2026 23:46
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch 2 times, most recently from a8e87b5 to 63b4b95 Compare August 13, 2026 13:56
@renovate
renovate Bot force-pushed the renovate/clerk-tanstack-react-start-1.x branch from 63b4b95 to 2378f37 Compare August 14, 2026 19:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants