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

Version Packages (alpha-v5) #2238

Merged
merged 1 commit into from
Dec 6, 2023
Merged

Version Packages (alpha-v5) #2238

merged 1 commit into from
Dec 6, 2023

Conversation

clerk-cookie
Copy link
Collaborator

@clerk-cookie clerk-cookie commented Nov 30, 2023

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.

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@clerk/clerk-js@5.0.0-alpha-v5.8

Major Changes

  • Change the default behavior of afterSignOutUrl, afterSignIn and afterSignUp props to be redirected to / instead of the Account Portal defined URL. (#2020) by @octoper

Patch Changes

  • Drop org:sys_domains:delete and org:sys_memberships:delete as those have now been merged with the respective manage ones. (#2256) by @panteliselef

  • Hide "Add domain" button inside <OrganizationProfile/> when user is missing the org:sys_domains:manage permission. (#2240) by @panteliselef

  • Add setter for sdkMetadata on Clerk to address issues arising from older versions of the SDK. (#2237) by @BRKalow

  • Updated dependencies [6a33709cc, 2d383e413, d30ea1faa]:

    • @clerk/types@4.0.0-alpha-v5.8
    • @clerk/localizations@2.0.0-alpha-v5.6
    • @clerk/shared@2.0.0-alpha-v5.5

@clerk/backend@1.0.0-alpha-v5.6

Minor Changes

    • Added the User.last_active_at timestamp field which stores the latest date of session activity, with day precision. For further details, please consult the Backend API documentation. (#2261) by @georgepsarakis

    • Added the last_active_at_since filtering parameter for the Users listing request. The new parameter can be used to retrieve users that have displayed session activity since the given date. For further details, please consult the Backend API documentation.

    • Added the last_active_at available options for the orderBy parameter of the Users listing request. For further details, please consult the Backend API documentation.

Patch Changes

  • Drop the introduction of OrganizationRole and OrganizationPermission resources fro BAPI. (#2252) by @panteliselef

  • Set correct information on required Node.js and React versions in README (#2264) by @LekoArts

  • Updated dependencies [d30ea1faa]:

    • @clerk/shared@2.0.0-alpha-v5.5

@clerk/chrome-extension@1.0.0-alpha-v5.8

Patch Changes

@clerk/clerk-expo@1.0.0-alpha-v5.8

Patch Changes

@clerk/fastify@1.0.0-alpha-v5.8

Patch Changes

gatsby-plugin-clerk@5.0.0-alpha-v5.8

Patch Changes

  • Set correct information on required Node.js and React versions in README (#2264) by @LekoArts

  • Updated dependencies [93d05c868, a6b893d28, 2e77cd737]:

    • @clerk/clerk-sdk-node@5.0.0-alpha-v5.6
    • @clerk/backend@1.0.0-alpha-v5.6
    • @clerk/clerk-react@5.0.0-alpha-v5.8

@clerk/localizations@2.0.0-alpha-v5.6

Patch Changes

  • The package now allows for subpath exports. You can now import specific languages like so: (#2236) by @dimkl

    # Single language
    - import { frFR } from "@clerk/localizations"
    + import { frFR } from "@clerk/localizations/fr-FR"
    
    # Multiple languages
    - import { enUS, esES } from "@clerk/localizations"
    + import { enUS } from "@clerk/localizations/en-US"
    + import { esES } from "@clerk/localizations/es-ES"

    This helps with tree-shaking and will reduce your total bundle size in most cases.

    You can continue to use the top-level @clerk/localizations import as this is a non-breaking change. You can gradually opt-in to this optimization.

@clerk/nextjs@5.0.0-alpha-v5.8

Patch Changes

  • Drop the introduction of OrganizationRole and OrganizationPermission resources fro BAPI. (#2252) by @panteliselef

  • Set correct information on required Node.js and React versions in README (#2264) by @LekoArts

  • Ensure that cookies set inside Next.js Middleware are correctly passed through while using authMiddleware. (#2244) by @LekoArts

  • Updated dependencies [93d05c868, a6b893d28, 2e77cd737, d30ea1faa]:

    • @clerk/backend@1.0.0-alpha-v5.6
    • @clerk/clerk-react@5.0.0-alpha-v5.8
    • @clerk/shared@2.0.0-alpha-v5.5

@clerk/clerk-react@5.0.0-alpha-v5.8

Patch Changes

  • Set correct information on required Node.js and React versions in README (#2264) by @LekoArts

  • Updated dependencies [6a33709cc, d30ea1faa]:

    • @clerk/types@4.0.0-alpha-v5.8
    • @clerk/shared@2.0.0-alpha-v5.5

@clerk/remix@4.0.0-alpha-v5.8

Patch Changes

  • Set correct information on required Node.js and React versions in README (#2264) by @LekoArts

  • Updated dependencies [93d05c868, a6b893d28, 2e77cd737, d30ea1faa]:

    • @clerk/backend@1.0.0-alpha-v5.6
    • @clerk/clerk-react@5.0.0-alpha-v5.8
    • @clerk/shared@2.0.0-alpha-v5.5

@clerk/clerk-sdk-node@5.0.0-alpha-v5.6

Patch Changes

@clerk/shared@2.0.0-alpha-v5.5

Patch Changes

  • Change the default behavior of afterSignOutUrl, afterSignIn and afterSignUp props to be redirected to / instead of the Account Portal defined URL. (#2020) by @octoper

@clerk/types@4.0.0-alpha-v5.8

Patch Changes

  • Drop org:sys_domains:delete and org:sys_memberships:delete as those have now been merged with the respective manage ones. (#2256) by @panteliselef

@dimkl dimkl closed this Dec 6, 2023
@dimkl dimkl reopened this Dec 6, 2023
@dimkl dimkl added this pull request to the merge queue Dec 6, 2023
Merged via the queue into main with commit 3b4f1c2 Dec 6, 2023
8 checks passed
@dimkl dimkl deleted the changeset-release/main branch December 6, 2023 11: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