@mastra/auth-auth0 0.0.0-ai-v5-20250729181825 → 0.0.0-cloud-storage-adapter-20251106204059

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,68 @@
1
1
  # @mastra/auth-auth0
2
2
 
3
- ## 0.0.0-ai-v5-20250729181825
3
+ ## 0.0.0-cloud-storage-adapter-20251106204059
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
+ ## 1.0.0-beta.0
14
+
15
+ ### Major Changes
16
+
17
+ - Bump minimum required Node.js version to 22.13.0 ([#9706](https://github.com/mastra-ai/mastra/pull/9706))
18
+
19
+ - Experimental auth -> auth ([#9660](https://github.com/mastra-ai/mastra/pull/9660))
20
+
21
+ - Mark as stable ([`83d5942`](https://github.com/mastra-ai/mastra/commit/83d5942669ce7bba4a6ca4fd4da697a10eb5ebdc))
22
+
23
+ ## 0.10.5
24
+
25
+ ### Patch Changes
26
+
27
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
28
+
29
+ ## 0.10.5-alpha.0
30
+
31
+ ### Patch Changes
32
+
33
+ - Update package.json and README ([#7886](https://github.com/mastra-ai/mastra/pull/7886))
34
+
35
+ ## 0.10.4
36
+
37
+ ### Patch Changes
38
+
39
+ - de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
40
+
41
+ ## 0.10.4-alpha.0
42
+
43
+ ### Patch Changes
44
+
45
+ - [#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`.
46
+
47
+ ## 0.10.3
48
+
49
+ ### Patch Changes
50
+
51
+ - [`c6113ed`](https://github.com/mastra-ai/mastra/commit/c6113ed7f9df297e130d94436ceee310273d6430) Thanks [@wardpeet](https://github.com/wardpeet)! - Fix peerdpes for @mastra/core
52
+
53
+ ## 0.10.2
54
+
55
+ ### Patch Changes
56
+
57
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
58
+
59
+ ## 0.10.2-alpha.0
60
+
61
+ ### Patch Changes
62
+
63
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
64
+
65
+ ## 0.10.1
4
66
 
5
67
  ### Patch Changes
6
68
 
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