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

chore(deps): update dependency @clerk/clerk-react to v4.32.4 #11

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 24, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@clerk/clerk-react (source) 4.15.4 -> 4.32.4 age adoption passing confidence

Release Notes

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

v4.32.4

Compare Source

Patch Changes

v4.32.3

Compare Source

Patch Changes

v4.32.2

Compare Source

Patch Changes

v4.32.1

Compare Source

Patch Changes

v4.32.0

Compare Source

Minor Changes
React component
-   `<GoogleOneTap/>`

Customize the UX of the prompt

```tsx
<GoogleOneTap
  cancelOnTapOutside={false}
  itpSupport={false}
  fedCmSupport={false}
/>
```
Patch Changes

v4.31.1

Compare Source

Patch Changes

v4.31.0

Compare Source

Minor Changes
  • Introduce experimental support for Google One Tap (#​3196) by @​panteliselef

    • React Component <__experimental_GoogleOneTap/>
    • JS clerk.__experimental_mountGoogleOneTap(node,props)
Patch Changes

v4.30.10

Compare Source

Patch Changes

v4.30.9

Compare Source

Patch Changes

v4.30.8

Compare Source

Patch Changes

v4.30.7

Compare Source

Patch Changes

v4.30.6

Compare Source

Patch Changes

v4.30.5

Compare Source

Patch Changes

v4.30.4

Compare Source

Patch Changes

v4.30.3

Compare Source

Patch Changes

v4.30.2

Compare Source

Patch Changes

v4.30.1

Compare Source

Patch Changes

v4.30.0

Compare Source

Minor Changes
  • Introduce Protect for authorization. (#​2309) by @​panteliselef

    Changes in public APIs:

    • Rename Gate to Protect
    • Support for permission checks. (Previously only roles could be used)
    • Remove the experimental tags and prefixes
    • Drop some from the has utility and Protect. Protect now accepts a condition prop where a function is expected with the has being exposed as the param.
    • Protect can now be used without required props. In this case behaves as <SignedIn>, if no authorization props are passed.
    • has will throw an error if neither permission or role is passed.
    • auth().protect() for Nextjs App Router. Allow per page protection in app router. This utility will automatically throw a 404 error if user is not authorized or authenticated.
      • inside a page or layout file it will render the nearest not-found component set by the developer
      • inside a route handler it will return empty response body with a 404 status code
Patch Changes

v4.29.0

Compare Source

Minor Changes
Patch Changes

v4.28.3

Compare Source

Patch Changes

v4.28.2

Compare Source

Patch Changes
  • Sync IsomorphicClerk with the clerk singleton and the LoadedClerk interface. IsomorphicClerk now extends from LoadedClerk. (#​2233) by @​panteliselef

v4.28.1

Compare Source

Patch Changes

v4.28.0

Compare Source

Minor Changes
Patch Changes

v4.27.2

Compare Source

Patch Changes

v4.27.1

Compare Source

Patch Changes

v4.27.0

Compare Source

Minor Changes
  • Introduce customization in UserProfile and OrganizationProfile (#​1822) by @​anagstef

    The <UserProfile /> component now allows the addition of custom pages and external links to the navigation sidebar. Custom pages can be created using the <UserProfile.Page> component, and external links can be added using the <UserProfile.Link> component. The default routes, such as Account and Security, can be reordered.

    Example React API usage:

    <UserProfile>
      <UserProfile.Page
        label='Custom Page'
        url='custom'
        labelIcon={<CustomIcon />}
      >
        <MyCustomPageContent />
      </UserProfile.Page>
      <UserProfile.Link
        label='External'
        url='/home'
        labelIcon={<Icon />}
      />
      <UserProfile.Page label='account' />
      <UserProfile.Page label='security' />
    </UserProfile>

    Custom pages and links should be provided as children using the <UserButton.UserProfilePage> and <UserButton.UserProfileLink> components when using the UserButton component.

    The <OrganizationProfile /> component now supports the addition of custom pages and external links to the navigation sidebar. Custom pages can be created using the <OrganizationProfile.Page> component, and external links can be added using the <OrganizationProfile.Link> component. The default routes, such as Members and Settings, can be reordered.

    Example React API usage:

    <OrganizationProfile>
      <OrganizationProfile.Page
        label='Custom Page'
        url='custom'
        labelIcon={<CustomIcon />}
      >
        <MyCustomPageContent />
      </OrganizationProfile.Page>
      <OrganizationProfile.Link
        label='External'
        url='/home'
        labelIcon={<Icon />}
      />
      <OrganizationProfile.Page label='members' />
      <OrganizationProfile.Page label='settings' />
    </OrganizationProfile>

    Custom pages and links should be provided as children using the <OrganizationSwitcher.OrganizationProfilePage> and <OrganizationSwitcher.OrganizationProfileLink> components when using the OrganizationSwitcher component.

Patch Changes

v4.26.6

Compare Source

Patch Changes

v4.26.5

Compare Source

Patch Changes

v4.26.4

Compare Source

Patch Changes

v4.26.3

Compare Source

Patch Changes

v4.26.2

Compare Source

Patch Changes

v4.26.1

Compare Source

Patch Changes
  • Refactor our script loading logic to use a versionSelector helper function. No change in behavior should occur. This internal change allows versions tagged with snapshot and staging to use the exact corresponding NPM version of @clerk/clerk-js. (#​1780) by @​LekoArts

  • Updated dependencies [cecf74d79]:

v4.26.0

Compare Source

Minor Changes
  • <SignIn/>, <SignUp/>, <RedirectToSignin/>, <RedirectToSignUp/>, clerk.redirectToSignIn() and clerk.redirectToSignUp() now accept the initialValues option, which will prefill the appropriate form fields with the values provided. (#​1701) by @​desiprisg
Patch Changes

v4.25.2

Compare Source

Patch Changes

v4.25.1

Compare Source

Patch Changes

v4.25.0

Compare Source

Minor Changes
  • Introduce the new brand-new component OrganizationList (#​1692) by @​panteliselef

    • Lists all the memberships, invitations or suggestions an active user may have
    • Powered by our useOrganizationList react hook
Patch Changes

v4.24.2

Compare Source

Patch Changes

v4.24.1

Compare Source

Patch Changes
  • Support swapping the Clerk publishableKey at runtime to allow users to toggle the instance being used. (#​1655) by @​BRKalow

v4.24.0

Compare Source

Minor Changes
  • Introduces userInvitations from useOrganizationList (#​1520) by @​panteliselef

    userInvitations is a paginated list of data. It can be used to create Paginated tables or Infinite lists.

Patch Changes

v4.23.2

Compare Source

Patch Changes

v4.23.1

Compare Source

Patch Changes

v4.23.0

Compare Source

Minor Changes
Patch Changes

v4.22.1

Compare Source

Patch Changes

v4.22.0

Compare Source

Minor Changes
  • Update IsomorphicClerk#addListener to correctly return an unsubscribe method (#​1452) by @​dimkl

v4.21.1

Compare Source

Patch Changes

v4.21.0

Compare Source

Minor Changes
  • Fix global is not defined error when using Vite + React by @​anagstef

v4.20.6

Compare Source

Patch Changes

v4.20.5

Compare Source

Patch Changes

v4.20.4

Compare Source

Patch Changes

v4.20.3

Compare Source

Patch Changes

v4.20.2

Compare Source

Patch Changes

v4.20.1

Compare Source

Patch Changes

v4.20.0

Compare Source

Minor Changes
  • Export error helpers from the shared package to the framework specific packages (#​1308) by @​desiprisg
Patch Changes

v4.19.0

Compare Source

Minor Changes
  • ESM/CJS support for @clerk/clerk-react by @​nikosdouvlis

    Changes that should affect users and OS contributors:

    • Better source map support for @clerk/clerk-react, @clerk/shared. This affects anyone developing in our monorepo or anyone using a debugger with Clerk installed in their app.
    • Easier node_modules debugging as @clerk/clerk-react, @clerk/shared and @clerk/nextjs are no longer getting bundled as a single-file package. This also improves error logging in nextjs a lot, as nextjs usually logs the line that threw the error - a minified, single-file package, usually consists of a very long single-line module, so logging error in NextJS wasn't ideal.
    • Headless clerk-js bundle size reduced by ~10kb, normal clerk-ks by ~6kb
    • A new clerkJSVersion prop has been added on ClerkProvider allowing to fetch a specific clerk-js version.
Patch Changes

v4.18.0

Compare Source

Note: Version bump only for package @​clerk/clerk-react

v4.17.0

Compare Source

Note: Version bump only for package @​clerk/clerk-react

4.16.3 (2023-05-23)

Note: Version bump only for package @​clerk/clerk-react

4.16.2 (2023-05-18)

Note: Version bump only for package @​clerk/clerk-react

4.16.1 (2023-05-17)

Note: Version bump only for package @​clerk/clerk-react

v4.16.3

Compare Source

Note: Version bump only for package @​clerk/clerk-react

v4.16.2

Compare Source

Note: Version bump only for package @​clerk/clerk-react

v4.16.1

Compare Source

Note: Version bump only for package @​clerk/clerk-react

v4.16.0

Compare Source

Note: Version bump only for package @​clerk/clerk-react

4.15.4 (2023-05-04)

Note: Version bump only for package @​clerk/clerk-react

4.15.4-staging.5 (2023-05-04)

Note: Version bump only for package @​clerk/clerk-react

4.15.4-staging.3 (2023-05-02)

Note: Version bump only for package @​clerk/clerk-react

4.15.3 (2023-04-19)

Note: Version bump only for package @​clerk/clerk-react

4.15.2 (2023-04-19)

Note: Version bump only for package @​clerk/clerk-react

4.15.1 (2023-04-12)

Note: Version bump only for package @​clerk/clerk-react

v4.15.5

Compare Source


Configuration

📅 Schedule: 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 is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates 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-clerk-react-4.x branch from 1768a87 to f7ab727 Compare October 18, 2024 02:51
@renovate renovate bot changed the title chore(deps): update dependency @clerk/clerk-react to v4.32.3 chore(deps): update dependency @clerk/clerk-react to v4.32.4 Oct 18, 2024
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