Skip to content

ci(repo): Version packages#3830

Merged
nikosdouvlis merged 1 commit intomainfrom
changeset-release/main
Aug 1, 2024
Merged

ci(repo): Version packages#3830
nikosdouvlis merged 1 commit intomainfrom
changeset-release/main

Conversation

@clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Jul 26, 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/backend@1.5.0

Minor Changes

Patch Changes

@clerk/clerk-js@5.11.0

Minor Changes

  • Introduce support for custom menu items in <UserButton/>. (#3784) by @nikospapcom

    • Use <UserButton.MenuItems> as a child component to wrap custom menu items.
    • Use <UserButton.Link/> for creating external or internal links.
    • Use <UserButton.Action/> for opening a specific custom page of "UserProfile" or to trigger your own custom logic via onClick.
    • If needed, reorder existing items like manageAccount and signOut

    New usage example:

    <UserButton>
      <UserButton.MenuItems>
        <UserButton.Link label="Terms" labelIcon={<Icon />} href="/terms" />
        <UserButton.Action label="Help" labelIcon={<Icon />} open="help" /> //
        Navigate to `/help` page when UserProfile opens as a modal. (Requires a
        custom page to have been set in `/help`)
        <UserButton.Action label="manageAccount" labelIcon={<Icon />} />
        <UserButton.Action
          label="Chat Modal"
          labelIcon={<Icon />}
          onClick={() => setModal(true)}
        />
      </UserButton.MenuItems>
    </UserButton>

Patch Changes

@clerk/elements@0.11.0

Minor Changes

Patch Changes

  • Fixes issue where the incorrect sign in first factor strategy was being returned during sign in. (#3828) by @alexcarpenter

  • Ensure correct supported strategies are rendered based on first or second factor needs. (#3843) by @alexcarpenter

  • Updated dependencies [aa06f3ba7, 80e647731]:

    • @clerk/types@4.10.0

@clerk/clerk-react@5.3.0

Minor Changes

  • Introduce support for custom menu items in <UserButton/>. (#3784) by @nikospapcom

    • Use <UserButton.MenuItems> as a child component to wrap custom menu items.
    • Use <UserButton.Link/> for creating external or internal links.
    • Use <UserButton.Action/> for opening a specific custom page of "UserProfile" or to trigger your own custom logic via onClick.
    • If needed, reorder existing items like manageAccount and signOut

    New usage example:

    <UserButton>
      <UserButton.MenuItems>
        <UserButton.Link label="Terms" labelIcon={<Icon />} href="/terms" />
        <UserButton.Action label="Help" labelIcon={<Icon />} open="help" /> //
        Navigate to `/help` page when UserProfile opens as a modal. (Requires a
        custom page to have been set in `/help`)
        <UserButton.Action label="manageAccount" labelIcon={<Icon />} />
        <UserButton.Action
          label="Chat Modal"
          labelIcon={<Icon />}
          onClick={() => setModal(true)}
        />
      </UserButton.MenuItems>
    </UserButton>

Patch Changes

@clerk/types@4.10.0

Minor Changes

  • Introduce support for custom menu items in <UserButton/>. (#3784) by @nikospapcom

    • Use <UserButton.MenuItems> as a child component to wrap custom menu items.
    • Use <UserButton.Link/> for creating external or internal links.
    • Use <UserButton.Action/> for opening a specific custom page of "UserProfile" or to trigger your own custom logic via onClick.
    • If needed, reorder existing items like manageAccount and signOut

    New usage example:

    <UserButton>
      <UserButton.MenuItems>
        <UserButton.Link label="Terms" labelIcon={<Icon />} href="/terms" />
        <UserButton.Action label="Help" labelIcon={<Icon />} open="help" /> //
        Navigate to `/help` page when UserProfile opens as a modal. (Requires a
        custom page to have been set in `/help`)
        <UserButton.Action label="manageAccount" labelIcon={<Icon />} />
        <UserButton.Action
          label="Chat Modal"
          labelIcon={<Icon />}
          onClick={() => setModal(true)}
        />
      </UserButton.MenuItems>
    </UserButton>

Patch Changes

  • Introduce ability to set an active organization by slug (#3825) by @wobsoriano

@clerk/astro@1.0.5

Patch Changes

  • Fixed a bug where the <Protect /> component would not validate any properties passed (#3846) by @wobsoriano

  • Updated dependencies [fde5b5e7e, aa06f3ba7, 80e647731]:

    • @clerk/backend@1.5.0
    • @clerk/clerk-js@5.11.0
    • @clerk/types@4.10.0
    • @clerk/shared@2.4.2

@clerk/chrome-extension@1.1.8

Patch Changes

  • Updated dependencies [aa06f3ba7, 80e647731]:
    • @clerk/clerk-js@5.11.0
    • @clerk/clerk-react@5.3.0
    • @clerk/shared@2.4.2

@clerk/dev-cli@0.0.4

Patch Changes

  • Use configured monorepo root when calculating Clerk packages (#3856) by @dstaley

@clerk/clerk-expo@2.0.1

Patch Changes

  • Updated dependencies [aa06f3ba7, 80e647731]:
    • @clerk/clerk-js@5.11.0
    • @clerk/clerk-react@5.3.0
    • @clerk/types@4.10.0
    • @clerk/shared@2.4.2

@clerk/express@0.0.22

Patch Changes

@clerk/fastify@1.0.24

Patch Changes

@clerk/localizations@2.5.3

Patch Changes

@clerk/nextjs@5.2.9

Patch Changes

  • Updated dependencies [fde5b5e7e, aa06f3ba7, 80e647731]:
    • @clerk/backend@1.5.0
    • @clerk/clerk-react@5.3.0
    • @clerk/types@4.10.0
    • @clerk/shared@2.4.2

@clerk/remix@4.2.8

Patch Changes

  • Fixed a bug that was caused when the request body has already been read (#3839) by @octoper

  • Updated dependencies [fde5b5e7e, aa06f3ba7, 80e647731]:

    • @clerk/backend@1.5.0
    • @clerk/clerk-react@5.3.0
    • @clerk/types@4.10.0
    • @clerk/shared@2.4.2

@clerk/clerk-sdk-node@5.0.21

Patch Changes

@clerk/shared@2.4.2

Patch Changes

@clerk/tanstack-start@0.1.12

Patch Changes

  • Updated dependencies [fde5b5e7e, aa06f3ba7, 80e647731]:
    • @clerk/backend@1.5.0
    • @clerk/clerk-react@5.3.0
    • @clerk/types@4.10.0
    • @clerk/shared@2.4.2

@clerk/testing@1.2.4

Patch Changes

@clerk/themes@2.1.15

Patch Changes

@github-actions github-actions bot force-pushed the changeset-release/main branch 6 times, most recently from a8c88c4 to 465b7e7 Compare July 31, 2024 20:58
@nikosdouvlis nikosdouvlis reopened this Aug 1, 2024
@github-actions github-actions bot force-pushed the changeset-release/main branch from 465b7e7 to 9cceddb Compare August 1, 2024 08:51
@nikosdouvlis nikosdouvlis reopened this Aug 1, 2024
@github-actions github-actions bot force-pushed the changeset-release/main branch from 9cceddb to 134c0b3 Compare August 1, 2024 09:24
@nikosdouvlis nikosdouvlis merged commit b90fafa into main Aug 1, 2024
@nikosdouvlis nikosdouvlis deleted the changeset-release/main branch August 1, 2024 09:36
wobsoriano pushed a commit that referenced this pull request Aug 1, 2024
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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