Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci(repo): Version packages #3460

Merged
merged 1 commit into from
Jun 5, 2024
Merged

ci(repo): Version packages #3460

merged 1 commit into from
Jun 5, 2024

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented May 28, 2024

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@clerk/clerk-js@5.6.0

Minor Changes

  • Add descriptor for formatted dates in tables. Those elements can be identified by the cl-formattedDate__tableCell css class. (#3465) by @panteliselef

Patch Changes

  • In some instances your application logo (shown at the top of the sign-in/sign-up form of the prebuilt components) might have been distorted in browsers like Firefox. By applying object-fit: contain to the image's CSS the logo now fills its bounding box without being distorted. (#3501) by @LekoArts

  • Support remounting ClerkProvider multiple times by making sure that the updateProps call during the loading phase does not override any defaults set by Clerk.load() for values that are missing (#3455) by @nikosdouvlis

  • Sms phone code verification lists available phone numbers on cancel. (#3479) by @panteliselef

  • Only render active sessions in the active devices section. Fixes the bug where a device with no information would render upon revoking. (#3497) by @desiprisg

  • Fixed a bug where Clerk components rendered in modals were wrapped with aria-hidden. (#3508) by @BRKalow

  • Bug fix: statically loading a resource would result in an increase in bundle size for clerk.browser.js. (#3519) by @panteliselef

  • Updated dependencies [86a27f693, 478c49b41, 02bed2e00, cd424c590, 73e5d61e2, 68f247444, b8e46328d]:

    • @clerk/shared@2.2.2
    • @clerk/localizations@2.4.4
    • @clerk/types@4.6.0

@clerk/elements@0.6.0

Minor Changes

    • Adds virtual router to support modal scenarios (#3461) by @tmilewski

    • Adds routing prop to SignIn.Root and SignUp.Root for handling virtual routing

    • Better support for Account Portal redirect callback flows

Patch Changes

  • Fix forms unable to submit upon re-mounting (#3473) by @tmilewski

  • Set @clerk/types as a dependency for packages that had it as a dev dependency. (#3450) by @desiprisg

  • Ensure missing passwordSettings don't throw an error (#3474) by @tmilewski

  • Display hard to catch errors inside the sign-in verification step during development (when NODE_ENV is set to development). (#3517) by @LekoArts

  • Updated dependencies [73e5d61e2, b8e46328d]:

    • @clerk/types@4.6.0

@clerk/clerk-expo@1.2.0

Minor Changes

  • Introduce getClerkInstance() to avoid importing the Clerk class from clerk-js manually. (#3420) by @panteliselef

    This enables developers to create and access a Clerk instance in their application outside of React.

    import { ClerkProvider, getClerkInstance } from "@clerk/expo"
    
    const clerkInstance = getClerkInstance({ publishableKey: 'xxxx' })
    
    // Always pass the `publishableKey` to `ClerkProvider`
    <ClerkProvider publishableKey={'xxxx'}>
        ...
    </ClerkProvider>
    
    // Somewhere in your code, outside of React you can do
    const token = await clerkInstance.session?.getToken();
    fetch('http://example.com/', {headers: {Authorization: token })
    import { ClerkProvider, getClerkInstance } from "@clerk/expo"
    
    // Always pass the `publishableKey` to `ClerkProvider`
    <ClerkProvider publishableKey={'xxxx'}>
        ...
    </ClerkProvider>
    
    // If you sure that this code will run after the ClerkProvider has rendered then you can use `getClerkIntance` without options
    const token = await getClerkInstance().session?.getToken();
    fetch('http://example.com/', {headers: {Authorization: token })

    Attention: If getClerkInstance is called without a publishable key, and ClerkProvider has not rendered yet, an error will be thrown

Patch Changes

@clerk/remix@4.1.0

Minor Changes

  • Support new redirect urls as environment variables or options to rootAuthLoader (#3442) by @panteliselef

    As options

    • signInForceRedirectUrl
    • signUpForceRedirectUrl
    • signInFallbackRedirectUrl
    • signUpFallbackRedirectUrl

    As environment variables

    • CLERK_SIGN_IN_FORCE_REDIRECT_URL
    • CLERK_SIGN_UP_FORCE_REDIRECT_URL
    • CLERK_SIGN_IN_FALLBACK_REDIRECT_URL
    • CLERK_SIGN_UP_FALLBACK_REDIRECT_URL

Patch Changes

@clerk/types@4.6.0

Minor Changes

  • Add descriptor for formatted dates in tables. Those elements can be identified by the cl-formattedDate__tableCell css class. (#3465) by @panteliselef

Patch Changes

@clerk/backend@1.2.2

Patch Changes

@clerk/chrome-extension@1.0.17

Patch Changes

@clerk/express@0.0.11

Patch Changes

@clerk/fastify@1.0.13

Patch Changes

@clerk/localizations@2.4.4

Patch Changes

@clerk/nextjs@5.1.4

Patch Changes

@clerk/clerk-react@5.2.3

Patch Changes

  • Update SignUpButton and SignInButton to respect forceRedirect and fallbackRedirect props. Previously, these were getting ignored and successful completions of the flows would fallback to the default redirect URL. (#3508) by @BRKalow

  • Updated dependencies [86a27f693, 02bed2e00, 73e5d61e2, b8e46328d]:

    • @clerk/shared@2.2.2
    • @clerk/types@4.6.0

@clerk/clerk-sdk-node@5.0.10

Patch Changes

@clerk/shared@2.2.2

Patch Changes

  • Update js-cookie from 3.0.1 to 3.0.5. Update swr from 2.2.0 to 2.2.5. (#3493) by @renovate

  • Set @clerk/types as a dependency for packages that had it as a dev dependency. (#3450) by @desiprisg

  • Updated dependencies [73e5d61e2, b8e46328d]:

    • @clerk/types@4.6.0

@clerk/testing@1.1.6

Patch Changes

@clerk/themes@2.1.9

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch 3 times, most recently from 667c2fb to 23cb518 Compare May 29, 2024 09:02
@nikosdouvlis nikosdouvlis reopened this May 29, 2024
@github-actions github-actions bot force-pushed the changeset-release/main branch 2 times, most recently from 4d9f567 to ad37ebc Compare May 29, 2024 21:22
Copy link

vercel bot commented May 29, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
theme-builder ❌ Failed (Inspect) May 29, 2024 9:22pm

@github-actions github-actions bot force-pushed the changeset-release/main branch from ad37ebc to 8bc4850 Compare May 29, 2024 22:04
@github-actions github-actions bot force-pushed the changeset-release/main branch 15 times, most recently from 0b21a64 to 1f4195b Compare June 3, 2024 11:56
@github-actions github-actions bot force-pushed the changeset-release/main branch 9 times, most recently from dc7164c to 85324c7 Compare June 5, 2024 13:42
@nikosdouvlis nikosdouvlis merged commit 3175b76 into main Jun 5, 2024
13 checks passed
@nikosdouvlis nikosdouvlis deleted the changeset-release/main branch June 5, 2024 17:53
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants