wobsoriano / vue-clerk

Community Clerk Vue SDK.
https://vue-clerk.com
MIT License
156 stars 14 forks source link

chore(deps): bump the clerk-dependencies group with 3 updates #195

Closed dependabot[bot] closed 1 week ago

dependabot[bot] commented 1 week ago

Bumps the clerk-dependencies group with 3 updates: @clerk/backend, @clerk/types and @clerk/shared.

Updates @clerk/backend from 1.15.7 to 1.16.0

Release notes

Sourced from @​clerk/backend's releases.

@​clerk/backend@​1.16.0

Minor Changes

  • Send API version through request headers. (#4458) by @​jacekradko

  • Introduce experimental verification helpers exported from @clerk/backend/internal (#4480) by @​panteliselef

    • __experimental_reverificationMismatch
    • __experimental_reverificationMismatchResponse

Patch Changes

Changelog

Sourced from @​clerk/backend's changelog.

1.16.0

Minor Changes

  • Send API version through request headers. (#4458) by @​jacekradko

  • Introduce experimental verification helpers exported from @clerk/backend/internal (#4480) by @​panteliselef

    • __experimental_reverificationMismatch
    • __experimental_reverificationMismatchResponse

Patch Changes

Commits


Updates @clerk/types from 4.30.0 to 4.31.0

Release notes

Sourced from @​clerk/types's releases.

@​clerk/types@​4.31.0

Minor Changes

  • Introduce experimental support for passkeys in Expo (iOS, Android, and Web). (#4352) by @​AlexNti

    To use passkeys in Expo projects, pass the __experimental_passkeys object, which can be imported from @clerk/clerk-expo/passkeys, to the ClerkProvider component:

    import { ClerkProvider } from '@clerk/clerk-expo';
    import { passkeys } from '@clerk/clerk-expo/passkeys';
    

    <ClerkProvider __experimental_passkeys={passkeys}>{/* Your app here */}</ClerkProvider>;

    The API for using passkeys in Expo projects is the same as the one used in web apps:

    // passkey creation
    const { user } = useUser();
    

    const handleCreatePasskey = async () => {
    if (!user) return;
    try {
    return await user.createPasskey();
    } catch (e: any) {
    // handle error
    }
    };

    // passkey authentication
    const { signIn, setActive } = useSignIn();

    const handlePasskeySignIn = async () => {
    try {
    const signInResponse = await signIn.authenticateWithPasskey();
    await setActive({ session: signInResponse.createdSessionId });
    } catch (err: any) {
    //handle error
    }
    };

  • The Legal consent feature is now stable. (#4487) by @​octoper

    Removed the __experimental_ preffix.

Patch Changes

  • Fixes issues in ClerkRouter that were causing inaccurate pathnames within Elements flows. Also fixes a dependency issue where @clerk/elements was pulling in the wrong version of @clerk/shared. (#4513) by @​alexcarpenter

... (truncated)

Changelog

Sourced from @​clerk/types's changelog.

4.31.0

Minor Changes

  • Introduce experimental support for passkeys in Expo (iOS, Android, and Web). (#4352) by @​AlexNti

    To use passkeys in Expo projects, pass the __experimental_passkeys object, which can be imported from @clerk/clerk-expo/passkeys, to the ClerkProvider component:

    import { ClerkProvider } from '@clerk/clerk-expo';
    import { passkeys } from '@clerk/clerk-expo/passkeys';
    

    <ClerkProvider __experimental_passkeys={passkeys}>{/* Your app here */}</ClerkProvider>;

    The API for using passkeys in Expo projects is the same as the one used in web apps:

    // passkey creation
    const { user } = useUser();
    

    const handleCreatePasskey = async () => {
    if (!user) return;
    try {
    return await user.createPasskey();
    } catch (e: any) {
    // handle error
    }
    };

    // passkey authentication
    const { signIn, setActive } = useSignIn();

    const handlePasskeySignIn = async () => {
    try {
    const signInResponse = await signIn.authenticateWithPasskey();
    await setActive({ session: signInResponse.createdSessionId });
    } catch (err: any) {
    //handle error
    }
    };

  • The Legal consent feature is now stable. (#4487) by @​octoper

    Removed the __experimental_ preffix.

Patch Changes

  • Fixes issues in ClerkRouter that were causing inaccurate pathnames within Elements flows. Also fixes a dependency issue where @clerk/elements was pulling in the wrong version of @clerk/shared. (#4513) by @​alexcarpenter

... (truncated)

Commits
  • f2cb38e ci(repo): Version packages (#4504)
  • cc24c81 feat(clerk-js,elements,types,localization): Make legal consent stable (#4487)
  • 0e443ad chore(clerk-js,types): Add afterJoinWaitlistUrl to DisplayConfig resource (#4...
  • f7472e2 fix(elements): Fix elements router usage (#4513)
  • e199037 feat(clerk-expo): Support expo passkeys (#4352)
  • See full diff in compare view


Updates @clerk/shared from 2.11.5 to 2.12.0

Release notes

Sourced from @​clerk/shared's releases.

@​clerk/shared@​2.12.0

Minor Changes

  • Introduce experimental support for passkeys in Expo (iOS, Android, and Web). (#4352) by @​AlexNti

    To use passkeys in Expo projects, pass the __experimental_passkeys object, which can be imported from @clerk/clerk-expo/passkeys, to the ClerkProvider component:

    import { ClerkProvider } from '@clerk/clerk-expo';
    import { passkeys } from '@clerk/clerk-expo/passkeys';
    

    <ClerkProvider __experimental_passkeys={passkeys}>{/* Your app here */}</ClerkProvider>;

    The API for using passkeys in Expo projects is the same as the one used in web apps:

    // passkey creation
    const { user } = useUser();
    

    const handleCreatePasskey = async () => {
    if (!user) return;
    try {
    return await user.createPasskey();
    } catch (e: any) {
    // handle error
    }
    };

    // passkey authentication
    const { signIn, setActive } = useSignIn();

    const handlePasskeySignIn = async () => {
    try {
    const signInResponse = await signIn.authenticateWithPasskey();
    await setActive({ session: signInResponse.createdSessionId });
    } catch (err: any) {
    //handle error
    }
    };

Patch Changes

  • Adding missing dependencies to package.json (#4522) by @​jacekradko

  • Fixes issues in ClerkRouter that were causing inaccurate pathnames within Elements flows. Also fixes a dependency issue where @clerk/elements was pulling in the wrong version of @clerk/shared. (#4513) by @​alexcarpenter

  • Fixing the peerDependencies for react and react-dom (#4494) by @​jacekradko

... (truncated)

Changelog

Sourced from @​clerk/shared's changelog.

2.12.0

Minor Changes

  • Introduce experimental support for passkeys in Expo (iOS, Android, and Web). (#4352) by @​AlexNti

    To use passkeys in Expo projects, pass the __experimental_passkeys object, which can be imported from @clerk/clerk-expo/passkeys, to the ClerkProvider component:

    import { ClerkProvider } from '@clerk/clerk-expo';
    import { passkeys } from '@clerk/clerk-expo/passkeys';
    

    <ClerkProvider __experimental_passkeys={passkeys}>{/* Your app here */}</ClerkProvider>;

    The API for using passkeys in Expo projects is the same as the one used in web apps:

    // passkey creation
    const { user } = useUser();
    

    const handleCreatePasskey = async () => {
    if (!user) return;
    try {
    return await user.createPasskey();
    } catch (e: any) {
    // handle error
    }
    };

    // passkey authentication
    const { signIn, setActive } = useSignIn();

    const handlePasskeySignIn = async () => {
    try {
    const signInResponse = await signIn.authenticateWithPasskey();
    await setActive({ session: signInResponse.createdSessionId });
    } catch (err: any) {
    //handle error
    }
    };

Patch Changes

  • Adding missing dependencies to package.json (#4522) by @​jacekradko

  • Fixes issues in ClerkRouter that were causing inaccurate pathnames within Elements flows. Also fixes a dependency issue where @clerk/elements was pulling in the wrong version of @clerk/shared. (#4513) by @​alexcarpenter

  • Fixing the peerDependencies for react and react-dom (#4494) by @​jacekradko

... (truncated)

Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
vercel[bot] commented 1 week ago

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

Name Status Preview Comments Updated (UTC)
vue-clerk ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 11, 2024 11:52am
changeset-bot[bot] commented 1 week ago

🦋 Changeset detected

Latest commit: 6143603b0b4d18a098426fa7b1473f23fe9f5769

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 1 package | Name | Type | | --------- | ----- | | vue-clerk | Patch |

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

pkg-pr-new[bot] commented 1 week ago

Open in Stackblitz

pnpm add https://pkg.pr.new/vue-clerk@195

commit: 8ad4d83