Skip to content

Releases: wobsoriano/vue-clerk

[email protected]

15 Nov 15:07
87015cc
Compare
Choose a tag to compare

Patch Changes

  • 8639066: Bump @clerk/backend from 1.16.3 to 1.16.4
  • 8639066: Bump @clerk/shared from 2.13.0 to 2.14.0
  • 8639066: Bump @clerk/types from 4.33.0 to 4.34.0

[email protected]

14 Nov 21:22
d77b966
Compare
Choose a tag to compare

Patch Changes

  • 18009ef: Bump @clerk/backend from 1.16.1 to 1.16.3
  • 18009ef: Bump @clerk/shared from 2.12.1 to 2.13.0
  • 18009ef: Bump @clerk/types from 4.32.0 to 4.33.0

[email protected]

13 Nov 03:55
a520942
Compare
Choose a tag to compare

Patch Changes

  • 1bae025: Bump @clerk/backend from 1.16.0 to 1.16.1
  • 1bae025: Bump @clerk/shared from 2.12.0 to 2.12.1
  • 1bae025: Bump @clerk/types from 4.31.0 to 4.32.0

[email protected]

11 Nov 19:45
5949a41
Compare
Choose a tag to compare

Patch Changes

  • 6143603: Bump @clerk/backend from 1.15.7 to 1.16.0
  • 6143603: Bump @clerk/shared from 2.11.5 to 2.12.0
  • 6143603: Bump @clerk/types from 4.30.0 to 4.31.0

[email protected]

06 Nov 17:07
eb2441a
Compare
Choose a tag to compare

Patch Changes

  • 98928ca: Bump @clerk/backend from 1.15.6 to 1.15.7
  • 98928ca: Bump @clerk/shared from 2.11.4 to 2.11.5

[email protected]

05 Nov 16:03
4b0ee31
Compare
Choose a tag to compare

Minor Changes

  • 9c2a8c1: Introduce <Waitlist /> component

Patch Changes

  • a413f2c: Bump @clerk/backend from 1.15.5 to 1.15.6
  • a413f2c: Bump @clerk/shared from 2.11.3 to 2.11.4
  • a413f2c: Bump @clerk/types from 4.29.0 to 4.30.0

[email protected]

04 Nov 16:11
d931006
Compare
Choose a tag to compare

Patch Changes

  • 8d4fe91: Bump @clerk/backend from 1.15.2 to 1.15.5
  • 8d4fe91: Bump @clerk/shared from 2.11.0 to 2.11.3
  • bd85934: Fix handleValueOrFn import

[email protected]

01 Nov 12:52
93de417
Compare
Choose a tag to compare

Patch Changes

  • ea5690a: Bump @clerk/backend from 1.15.1 to 1.15.2
  • ea5690a: Bump @clerk/shared from 2.10.1 to 2.11.0
  • ea5690a: Bump @clerk/types from 4.28.0 to 4.29.0

[email protected]

27 Oct 15:54
f9fbb3b
Compare
Choose a tag to compare

Minor Changes

  • 11ed32f: Add experimental custom server middleware. Useful for custom logic when protecting your API routes.

    Example usage:

    // server/middleware/clerk.ts
    import { clerkMiddleware } from "vue-clerk/server";
    
    export default clerkMiddleware((event) => {
      const { auth } = event.context;
    
      if (!auth.userId && event.path.startsWith("/api")) {
        throw createError({
          statusCode: 401,
          message: "Unauthorized",
        });
      }
    });

[email protected]

24 Oct 17:25
495cba2
Compare
Choose a tag to compare

Patch Changes

  • 05d3789: Bump @clerk/backend from 1.15.0 to 1.15.1
  • 05d3789: Bump @clerk/shared from 2.10.0 to 2.10.1
  • 05d3789: Bump @clerk/types from 4.27.0 to 4.28.0