@mastra/auth-auth0 0.0.0-ai-v5-20250729181825 → 0.0.0-client-js-listmessages-agentid-fix-20251119175531

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,80 @@
1
1
  # @mastra/auth-auth0
2
2
 
3
- ## 0.0.0-ai-v5-20250729181825
3
+ ## 0.0.0-client-js-listmessages-agentid-fix-20251119175531
4
+
5
+ ### Major Changes
6
+
7
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
8
+
9
+ - Experimental auth -> auth ([#9660](https://github.com/mastra-ai/mastra/pull/9660))
10
+
11
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
12
+
13
+ ### Patch Changes
14
+
15
+ - dependencies updates: ([#10132](https://github.com/mastra-ai/mastra/pull/10132))
16
+ - Updated dependency [`jose@^6.1.1` ↗︎](https://www.npmjs.com/package/jose/v/6.1.1) (from `^6.0.12`, in `dependencies`)
17
+
18
+ ## 1.0.0-beta.1
19
+
20
+ ### Patch Changes
21
+
22
+ - dependencies updates: ([#10132](https://github.com/mastra-ai/mastra/pull/10132))
23
+ - Updated dependency [`jose@^6.1.1` ↗︎](https://www.npmjs.com/package/jose/v/6.1.1) (from `^6.0.12`, in `dependencies`)
24
+
25
+ ## 1.0.0-beta.0
26
+
27
+ ### Major Changes
28
+
29
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
30
+
31
+ - Experimental auth -> auth ([#9660](https://github.com/mastra-ai/mastra/pull/9660))
32
+
33
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
34
+
35
+ ## 0.10.5
36
+
37
+ ### Patch Changes
38
+
39
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
40
+
41
+ ## 0.10.5-alpha.0
42
+
43
+ ### Patch Changes
44
+
45
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
46
+
47
+ ## 0.10.4
48
+
49
+ ### Patch Changes
50
+
51
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
52
+
53
+ ## 0.10.4-alpha.0
54
+
55
+ ### Patch Changes
56
+
57
+ - [#7343](https://github.com/mastra-ai/mastra/pull/7343) [`de3cbc6`](https://github.com/mastra-ai/mastra/commit/de3cbc61079211431bd30487982ea3653517278e) Thanks [@LekoArts](https://github.com/LekoArts)! - Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
58
+
59
+ ## 0.10.3
60
+
61
+ ### Patch Changes
62
+
63
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
64
+
65
+ ## 0.10.2
66
+
67
+ ### Patch Changes
68
+
69
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
70
+
71
+ ## 0.10.2-alpha.0
72
+
73
+ ### Patch Changes
74
+
75
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
76
+
77
+ ## 0.10.1
4
78
 
5
79
  ### Patch Changes
6
80
 
package/README.md CHANGED
@@ -15,7 +15,7 @@ pnpm add @mastra/auth-auth0
15
15
  ## Usage
16
16
 
17
17
  ```typescript
18
- import { Mastra } from '@mastra/core';
18
+ import { Mastra } from '@mastra/core/mastra';
19
19
  import { MastraAuthAuth0 } from '@mastra/auth-auth0';
20
20
 
21
21
  // Initialize with options
@@ -31,7 +31,7 @@ const auth0Provider = new MastraAuthAuth0();
31
31
  const mastra = new Mastra({
32
32
  ...
33
33
  server: {
34
- experimental_auth: auth0Provider,
34
+ auth: auth0Provider,
35
35
  },
36
36
  });
37
37
  ```
@@ -83,7 +83,3 @@ const isAuthorized = await auth0Provider.authorizeUser(user);
83
83
  - Node.js 16 or higher
84
84
  - Auth0 account and configured application
85
85
  - Valid Auth0 domain and API identifier
86
-
87
- ## License
88
-
89
- MIT