@mastra/mcp-docs-server 1.0.0-beta.7 → 1.0.0-beta.8
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/.docs/organized/changelogs/%40mastra%2Fagent-builder.md +12 -12
- package/.docs/organized/changelogs/%40mastra%2Fai-sdk.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fclickhouse.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Fclient-js.md +8 -8
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare-d1.md +18 -18
- package/.docs/organized/changelogs/%40mastra%2Fcloudflare.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Fconvex.md +16 -0
- package/.docs/organized/changelogs/%40mastra%2Fcore.md +21 -21
- package/.docs/organized/changelogs/%40mastra%2Fdeployer-cloud.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fdeployer.md +13 -13
- package/.docs/organized/changelogs/%40mastra%2Fdynamodb.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Flance.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Flibsql.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Floggers.md +29 -29
- package/.docs/organized/changelogs/%40mastra%2Fmcp-docs-server.md +8 -8
- package/.docs/organized/changelogs/%40mastra%2Fmemory.md +10 -10
- package/.docs/organized/changelogs/%40mastra%2Fmongodb.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Fmssql.md +17 -17
- package/.docs/organized/changelogs/%40mastra%2Fpg.md +21 -21
- package/.docs/organized/changelogs/%40mastra%2Fplayground-ui.md +11 -11
- package/.docs/organized/changelogs/%40mastra%2Freact.md +7 -0
- package/.docs/organized/changelogs/%40mastra%2Fserver.md +8 -8
- package/.docs/organized/changelogs/%40mastra%2Fupstash.md +17 -17
- package/.docs/raw/guides/build-your-ui/ai-sdk-ui.mdx +381 -431
- package/.docs/raw/guides/getting-started/quickstart.mdx +11 -0
- package/.docs/raw/guides/migrations/upgrade-to-v1/workflows.mdx +31 -0
- package/.docs/raw/reference/ai-sdk/chat-route.mdx +127 -0
- package/.docs/raw/reference/ai-sdk/handle-chat-stream.mdx +117 -0
- package/.docs/raw/reference/ai-sdk/handle-network-stream.mdx +64 -0
- package/.docs/raw/reference/ai-sdk/handle-workflow-stream.mdx +116 -0
- package/.docs/raw/reference/ai-sdk/network-route.mdx +99 -0
- package/.docs/raw/reference/ai-sdk/to-ai-sdk-stream.mdx +289 -0
- package/.docs/raw/reference/ai-sdk/workflow-route.mdx +110 -0
- package/.docs/raw/server-db/custom-api-routes.mdx +5 -5
- package/.docs/raw/workflows/workflow-state.mdx +4 -5
- package/CHANGELOG.md +7 -0
- package/package.json +3 -3
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# @mastra/agent-builder
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix install step validation error by making targetPath optional in InstallInputSchema. This resolves the "expected string, received undefined" error when running the agent builder template workflow without explicitly providing a targetPath parameter. ([#10922](https://github.com/mastra-ai/mastra/pull/10922))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`9f2c5b1`](https://github.com/mastra-ai/mastra/commit/9f2c5b163e959b0cd08e2f399fb0ff927a3dba91), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
10
|
+
- @mastra/core@1.0.0-beta.8
|
|
11
|
+
- @mastra/memory@1.0.0-beta.4
|
|
12
|
+
|
|
3
13
|
## 1.0.0-beta.3
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
|
@@ -488,15 +498,5 @@
|
|
|
488
498
|
- Updated dependencies [8387952]
|
|
489
499
|
- Updated dependencies [7f3b8da]
|
|
490
500
|
- Updated dependencies [905352b]
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
- Updated dependencies [3412597]
|
|
494
|
-
- Updated dependencies [5eca5d2]
|
|
495
|
-
- Updated dependencies [f2cda47]
|
|
496
|
-
- Updated dependencies [5de1555]
|
|
497
|
-
- Updated dependencies [cfd377a]
|
|
498
|
-
- Updated dependencies [1ed5a3e]
|
|
499
|
-
- @mastra/core@0.15.3
|
|
500
|
-
- @mastra/memory@0.14.3
|
|
501
|
-
|
|
502
|
-
... 55 more lines hidden. See full changelog in package directory.
|
|
501
|
+
|
|
502
|
+
... 65 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/ai-sdk
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Improve JSDoc comments ([#10877](https://github.com/mastra-ai/mastra/pull/10877))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
10
|
+
- @mastra/core@1.0.0-beta.8
|
|
11
|
+
|
|
3
12
|
## 1.0.0-beta.5
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -490,13 +499,4 @@
|
|
|
490
499
|
|
|
491
500
|
- fix: result object type inference when using structuredOutput and unify output/structuredOutput types with single OUTPUT generic ([#7969](https://github.com/mastra-ai/mastra/pull/7969))
|
|
492
501
|
|
|
493
|
-
|
|
494
|
-
- @mastra/core@0.17.2-alpha.0
|
|
495
|
-
|
|
496
|
-
## 0.0.3
|
|
497
|
-
|
|
498
|
-
### Patch Changes
|
|
499
|
-
|
|
500
|
-
- Update peerdep of @mastra/core ([#7619](https://github.com/mastra-ai/mastra/pull/7619))
|
|
501
|
-
|
|
502
|
-
... 105 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 114 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/clickhouse
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.3
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -482,21 +498,5 @@
|
|
|
482
498
|
|
|
483
499
|
- 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
|
|
484
500
|
- Updated dependencies [fd83526]
|
|
485
|
-
- Updated dependencies [d0b90ab]
|
|
486
|
-
- Updated dependencies [6f5eb7a]
|
|
487
|
-
- Updated dependencies [a01cf14]
|
|
488
|
-
- Updated dependencies [a9e50ee]
|
|
489
|
-
- Updated dependencies [5397eb4]
|
|
490
|
-
- Updated dependencies [c9f4e4a]
|
|
491
|
-
- Updated dependencies [0acbc80]
|
|
492
|
-
- @mastra/core@0.16.0-alpha.0
|
|
493
|
-
|
|
494
|
-
## 0.14.3
|
|
495
|
-
|
|
496
|
-
### Patch Changes
|
|
497
|
-
|
|
498
|
-
- de3cbc6: Update the `package.json` file to include additional fields like `repository`, `homepage` or `files`.
|
|
499
|
-
- f0dfcac: updated core peerdep
|
|
500
|
-
- Updated dependencies [ab48c97]
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 1260 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/client-js
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
8
|
+
- @mastra/core@1.0.0-beta.8
|
|
9
|
+
|
|
3
10
|
## 1.0.0-beta.7
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -492,11 +499,4 @@
|
|
|
492
499
|
|
|
493
500
|
## 0.16.3
|
|
494
501
|
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
- Updated dependencies []:
|
|
498
|
-
- @mastra/core@0.22.1
|
|
499
|
-
|
|
500
|
-
## 0.16.3-alpha.0
|
|
501
|
-
|
|
502
|
-
... 3238 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 3245 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/cloudflare-d1
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.3
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -482,21 +498,5 @@
|
|
|
482
498
|
- Updated dependencies [f643c65]
|
|
483
499
|
- Updated dependencies [00c74e7]
|
|
484
500
|
- Updated dependencies [fef7375]
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
- Updated dependencies [9eee594]
|
|
488
|
-
- Updated dependencies [7149d8d]
|
|
489
|
-
- Updated dependencies [822c2e8]
|
|
490
|
-
- Updated dependencies [979912c]
|
|
491
|
-
- Updated dependencies [7dcf4c0]
|
|
492
|
-
- Updated dependencies [4106a58]
|
|
493
|
-
- Updated dependencies [ad78bfc]
|
|
494
|
-
- Updated dependencies [0302f50]
|
|
495
|
-
- Updated dependencies [6ac697e]
|
|
496
|
-
- Updated dependencies [74db265]
|
|
497
|
-
- Updated dependencies [0ce418a]
|
|
498
|
-
- Updated dependencies [af90672]
|
|
499
|
-
- Updated dependencies [8387952]
|
|
500
|
-
- Updated dependencies [7f3b8da]
|
|
501
|
-
|
|
502
|
-
... 985 more lines hidden. See full changelog in package directory.
|
|
501
|
+
|
|
502
|
+
... 1001 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/cloudflare
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.4
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -482,21 +498,5 @@
|
|
|
482
498
|
### Patch Changes
|
|
483
499
|
|
|
484
500
|
- 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
|
|
485
|
-
- Updated dependencies [8fbf79e]
|
|
486
|
-
- Updated dependencies [fd83526]
|
|
487
|
-
- Updated dependencies [d0b90ab]
|
|
488
|
-
- Updated dependencies [6f5eb7a]
|
|
489
|
-
- Updated dependencies [a01cf14]
|
|
490
|
-
- Updated dependencies [a9e50ee]
|
|
491
|
-
- Updated dependencies [5397eb4]
|
|
492
|
-
- Updated dependencies [c9f4e4a]
|
|
493
|
-
- Updated dependencies [0acbc80]
|
|
494
|
-
- @mastra/core@0.16.0
|
|
495
|
-
|
|
496
|
-
## 0.12.0-alpha.1
|
|
497
|
-
|
|
498
|
-
### Minor Changes
|
|
499
|
-
|
|
500
|
-
- 376913a: Update peerdeps of @mastra/core
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 1230 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/convex
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 0.1.0-beta.1
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @mastra/core
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- `setState` is now async ([#10944](https://github.com/mastra-ai/mastra/pull/10944))
|
|
17
|
+
- `setState` must now be awaited: `await setState({ key: value })`
|
|
18
|
+
- State updates are merged automatically—no need to spread the previous state
|
|
19
|
+
- State data is validated against the step's `stateSchema` when `validateInputs` is enabled (default: `true`)
|
|
20
|
+
|
|
21
|
+
- Add human-in-the-loop support for workflows used in agent ([#10871](https://github.com/mastra-ai/mastra/pull/10871))
|
|
22
|
+
|
|
3
23
|
## 1.0.0-beta.7
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|
|
@@ -478,25 +498,5 @@
|
|
|
478
498
|
|
|
479
499
|
// Dynamic discovery mode
|
|
480
500
|
export const mastra = new Mastra({
|
|
481
|
-
gateways: [
|
|
482
|
-
new AzureOpenAIGateway({
|
|
483
|
-
resourceName: process.env.AZURE_RESOURCE_NAME!,
|
|
484
|
-
apiKey: process.env.AZURE_API_KEY!,
|
|
485
|
-
management: {
|
|
486
|
-
tenantId: process.env.AZURE_TENANT_ID!,
|
|
487
|
-
clientId: process.env.AZURE_CLIENT_ID!,
|
|
488
|
-
clientSecret: process.env.AZURE_CLIENT_SECRET!,
|
|
489
|
-
subscriptionId: process.env.AZURE_SUBSCRIPTION_ID!,
|
|
490
|
-
resourceGroup: 'my-resource-group',
|
|
491
|
-
},
|
|
492
|
-
}),
|
|
493
|
-
],
|
|
494
|
-
});
|
|
495
|
-
|
|
496
|
-
// Use Azure OpenAI models
|
|
497
|
-
const agent = new Agent({
|
|
498
|
-
model: 'azure-openai/gpt-4-deployment',
|
|
499
|
-
instructions: 'You are a helpful assistant',
|
|
500
|
-
});
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 5936 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/deployer-cloud
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`38c98bc`](https://github.com/mastra-ai/mastra/commit/38c98bca79aa028d6ac324073779483ace4d665b), [`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`2a54120`](https://github.com/mastra-ai/mastra/commit/2a541203a7ede20c7b4dca11adaed387e717d6e0), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
8
|
+
- @mastra/loggers@1.0.0-beta.3
|
|
9
|
+
- @mastra/core@1.0.0-beta.8
|
|
10
|
+
- @mastra/deployer@1.0.0-beta.8
|
|
11
|
+
|
|
3
12
|
## 1.0.0-beta.7
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
|
@@ -489,14 +498,5 @@
|
|
|
489
498
|
|
|
490
499
|
## 0.17.1-alpha.0
|
|
491
500
|
|
|
492
|
-
### Patch Changes
|
|
493
|
-
|
|
494
|
-
- Updated dependencies [[`fd00e63`](https://github.com/mastra-ai/mastra/commit/fd00e63759cbcca3473c40cac9843280b0557cff), [`ab610f6`](https://github.com/mastra-ai/mastra/commit/ab610f6f41dbfe6c9502368671485ca7a0aac09b), [`e6bda5f`](https://github.com/mastra-ai/mastra/commit/e6bda5f954ee8493ea18adc1a883f0a5b785ad9b)]:
|
|
495
|
-
- @mastra/core@0.17.1-alpha.0
|
|
496
|
-
- @mastra/deployer@0.17.1-alpha.0
|
|
497
|
-
|
|
498
|
-
## 0.17.0
|
|
499
|
-
|
|
500
|
-
### Minor Changes
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 471 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @mastra/deployer
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix tsconfig.json parsing when file contains JSONC comments ([#10952](https://github.com/mastra-ai/mastra/pull/10952))
|
|
8
|
+
|
|
9
|
+
The `hasPaths()` function now uses `strip-json-comments` to properly parse tsconfig.json files that contain comments. Previously, `JSON.parse()` would fail silently on JSONC comments, causing path aliases like `@src/*` to be incorrectly treated as npm scoped packages.
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
12
|
+
- @mastra/core@1.0.0-beta.8
|
|
13
|
+
- @mastra/server@1.0.0-beta.8
|
|
14
|
+
|
|
3
15
|
## 1.0.0-beta.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
|
@@ -486,17 +498,5 @@
|
|
|
486
498
|
|
|
487
499
|
### Patch Changes
|
|
488
500
|
|
|
489
|
-
- Get agent registered on a parent agent via API ([#9106](https://github.com/mastra-ai/mastra/pull/9106))
|
|
490
|
-
|
|
491
|
-
- Updated dependencies [[`69ff5d5`](https://github.com/mastra-ai/mastra/commit/69ff5d58e4bc4054ce76bbb25a8fa5d3177c49ea)]:
|
|
492
|
-
- @mastra/server@0.22.1-alpha.0
|
|
493
|
-
- @mastra/core@0.22.1-alpha.0
|
|
494
|
-
|
|
495
|
-
## 0.22.0
|
|
496
|
-
|
|
497
|
-
### Minor Changes
|
|
498
|
-
|
|
499
|
-
- Consolidate streamVNext logic into stream, move old stream function into streamLegacy ([#9092](https://github.com/mastra-ai/mastra/pull/9092))
|
|
500
|
-
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 5101 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/dynamodb
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.3
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -483,20 +499,4 @@
|
|
|
483
499
|
|
|
484
500
|
## 0.15.0
|
|
485
501
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
- 376913a: Update peerdeps of @mastra/core
|
|
489
|
-
|
|
490
|
-
### Patch Changes
|
|
491
|
-
|
|
492
|
-
- 6f5eb7a: Throw if an empty or whitespace-only threadId is passed when getting messages
|
|
493
|
-
- 376913a: Update peerdeps
|
|
494
|
-
- Updated dependencies [8fbf79e]
|
|
495
|
-
- Updated dependencies [fd83526]
|
|
496
|
-
- Updated dependencies [d0b90ab]
|
|
497
|
-
- Updated dependencies [6f5eb7a]
|
|
498
|
-
- Updated dependencies [a01cf14]
|
|
499
|
-
- Updated dependencies [a9e50ee]
|
|
500
|
-
- Updated dependencies [5397eb4]
|
|
501
|
-
|
|
502
|
-
... 832 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 848 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/lance
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.4
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -482,21 +498,5 @@
|
|
|
482
498
|
|
|
483
499
|
## 0.2.11
|
|
484
500
|
|
|
485
|
-
### Patch Changes
|
|
486
501
|
|
|
487
|
-
|
|
488
|
-
- f0dfcac: updated core peerdep
|
|
489
|
-
- Updated dependencies [ab48c97]
|
|
490
|
-
- Updated dependencies [85ef90b]
|
|
491
|
-
- Updated dependencies [aedbbfa]
|
|
492
|
-
- Updated dependencies [ff89505]
|
|
493
|
-
- Updated dependencies [637f323]
|
|
494
|
-
- Updated dependencies [de3cbc6]
|
|
495
|
-
- Updated dependencies [c19bcf7]
|
|
496
|
-
- Updated dependencies [4474d04]
|
|
497
|
-
- Updated dependencies [183dc95]
|
|
498
|
-
- Updated dependencies [a1111e2]
|
|
499
|
-
- Updated dependencies [b42a961]
|
|
500
|
-
- Updated dependencies [61debef]
|
|
501
|
-
|
|
502
|
-
... 468 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 484 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @mastra/libsql
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](https://github.com/mastra-ai/mastra/pull/10915))
|
|
8
|
+
|
|
9
|
+
**What Changed**
|
|
10
|
+
- saveScore now correctly returns scores that can be retrieved with getScoreById
|
|
11
|
+
- Validation errors now include contextual information (scorer, entity, trace details) for easier debugging
|
|
12
|
+
|
|
13
|
+
**Impact**
|
|
14
|
+
Previously, calling getScoreById after saveScore would return null because the generated ID wasn't persisted to the database. This is now fixed across all store implementations, ensuring consistent behavior and data integrity.
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
17
|
+
- @mastra/core@1.0.0-beta.8
|
|
18
|
+
|
|
3
19
|
## 1.0.0-beta.4
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
|
@@ -483,20 +499,4 @@
|
|
|
483
499
|
- Updated dependencies [[`547c621`](https://github.com/mastra-ai/mastra/commit/547c62104af3f7a551b3754e9cbdf0a3fbba15e4)]:
|
|
484
500
|
- @mastra/core@0.16.4-alpha.1
|
|
485
501
|
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
### Patch Changes
|
|
489
|
-
|
|
490
|
-
- dependencies updates: ([#7742](https://github.com/mastra-ai/mastra/pull/7742))
|
|
491
|
-
- Updated dependency [`@libsql/client@^0.15.15` ↗︎](https://www.npmjs.com/package/@libsql/client/v/0.15.15) (from `^0.15.14`, in `dependencies`)
|
|
492
|
-
- Updated dependencies [[`5802bf5`](https://github.com/mastra-ai/mastra/commit/5802bf57f6182e4b67c28d7d91abed349a8d14f3), [`5bda53a`](https://github.com/mastra-ai/mastra/commit/5bda53a9747bfa7d876d754fc92c83a06e503f62), [`f26a8fd`](https://github.com/mastra-ai/mastra/commit/f26a8fd99fcb0497a5d86c28324430d7f6a5fb83), [`1a1fbe6`](https://github.com/mastra-ai/mastra/commit/1a1fbe66efb7d94abc373ed0dd9676adb8122454), [`36f39c0`](https://github.com/mastra-ai/mastra/commit/36f39c00dc794952dc3c11aab91c2fa8bca74b11)]:
|
|
493
|
-
- @mastra/core@0.16.4-alpha.0
|
|
494
|
-
|
|
495
|
-
## 0.14.1
|
|
496
|
-
|
|
497
|
-
### Patch Changes
|
|
498
|
-
|
|
499
|
-
- Fix AI Trace bug for libsql ([#7695](https://github.com/mastra-ai/mastra/pull/7695))
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
... 1139 more lines hidden. See full changelog in package directory.
|
|
502
|
+
... 1155 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @mastra/loggers
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- Add redact option to PinoLogger for PII protection ([#10919](https://github.com/mastra-ai/mastra/pull/10919))
|
|
8
|
+
|
|
9
|
+
Exposes Pino's native `redact` option in `PinoLogger`, allowing sensitive data to be automatically redacted from logs.
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
import { PinoLogger } from '@mastra/loggers';
|
|
13
|
+
|
|
14
|
+
const logger = new PinoLogger({
|
|
15
|
+
name: 'MyApp',
|
|
16
|
+
redact: {
|
|
17
|
+
paths: ['*.password', '*.token', '*.apiKey', '*.email'],
|
|
18
|
+
censor: '[REDACTED]',
|
|
19
|
+
},
|
|
20
|
+
});
|
|
21
|
+
|
|
22
|
+
logger.info('User login', { username: 'john', password: 'secret123' });
|
|
23
|
+
// Output: { username: "john", password: "[REDACTED]", msg: "User login" }
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
29
|
+
- @mastra/core@1.0.0-beta.8
|
|
30
|
+
|
|
3
31
|
## 1.0.0-beta.2
|
|
4
32
|
|
|
5
33
|
### Minor Changes
|
|
@@ -470,33 +498,5 @@
|
|
|
470
498
|
|
|
471
499
|
### Patch Changes
|
|
472
500
|
|
|
473
|
-
- f0d559f: Fix peerdeps for alpha channel
|
|
474
|
-
- Updated dependencies [1e8bb40]
|
|
475
|
-
- @mastra/core@0.10.2-alpha.2
|
|
476
|
-
|
|
477
|
-
## 0.10.0
|
|
478
|
-
|
|
479
|
-
### Minor Changes
|
|
480
|
-
|
|
481
|
-
- 83da932: Move @mastra/core to peerdeps
|
|
482
|
-
- 5eb5a99: Remove pino from @mastra/core into @mastra/loggers
|
|
483
|
-
|
|
484
|
-
### Patch Changes
|
|
485
|
-
|
|
486
|
-
- 129b5f5: Add pino to loggers package
|
|
487
|
-
- Updated dependencies [b3a3d63]
|
|
488
|
-
- Updated dependencies [344f453]
|
|
489
|
-
- Updated dependencies [0a3ae6d]
|
|
490
|
-
- Updated dependencies [95911be]
|
|
491
|
-
- Updated dependencies [f53a6ac]
|
|
492
|
-
- Updated dependencies [5eb5a99]
|
|
493
|
-
- Updated dependencies [7e632c5]
|
|
494
|
-
- Updated dependencies [1e9fbfa]
|
|
495
|
-
- Updated dependencies [eabdcd9]
|
|
496
|
-
- Updated dependencies [90be034]
|
|
497
|
-
- Updated dependencies [99f050a]
|
|
498
|
-
- Updated dependencies [d0ee3c6]
|
|
499
|
-
- Updated dependencies [b2ae5aa]
|
|
500
|
-
- Updated dependencies [23f258c]
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 1721 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @mastra/mcp-docs-server
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
8
|
+
- @mastra/core@1.0.0-beta.8
|
|
9
|
+
|
|
3
10
|
## 1.0.0-beta.7
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -491,12 +498,5 @@
|
|
|
491
498
|
- @mastra/core@0.17.0-alpha.3
|
|
492
499
|
- @mastra/mcp@0.12.1-alpha.0
|
|
493
500
|
|
|
494
|
-
## 0.13.22-alpha.2
|
|
495
|
-
|
|
496
|
-
### Patch Changes
|
|
497
|
-
|
|
498
|
-
- Updated dependencies [[`60c9cec`](https://github.com/mastra-ai/mastra/commit/60c9cec7048a79a87440f7840c383875bd710d93), [`897995e`](https://github.com/mastra-ai/mastra/commit/897995e630d572fe2891e7ede817938cabb43251)]:
|
|
499
|
-
- @mastra/core@0.16.4-alpha.2
|
|
500
|
-
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 2045 more lines hidden. See full changelog in package directory.
|
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @mastra/memory
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Fix connection pool exhaustion when saving many messages with semantic recall enabled. Instead of calling vector.upsert() for each message individually (which acquires a separate DB connection), all embeddings are now batched into a single upsert call. ([#10954](https://github.com/mastra-ai/mastra/pull/10954))
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`0d41fe2`](https://github.com/mastra-ai/mastra/commit/0d41fe245355dfc66d61a0d9c85d9400aac351ff), [`6b3ba91`](https://github.com/mastra-ai/mastra/commit/6b3ba91494cc10394df96782f349a4f7b1e152cc), [`7907fd1`](https://github.com/mastra-ai/mastra/commit/7907fd1c5059813b7b870b81ca71041dc807331b)]:
|
|
10
|
+
- @mastra/core@1.0.0-beta.8
|
|
11
|
+
|
|
3
12
|
## 1.0.0-beta.3
|
|
4
13
|
|
|
5
14
|
### Minor Changes
|
|
@@ -489,14 +498,5 @@
|
|
|
489
498
|
|
|
490
499
|
### Patch Changes
|
|
491
500
|
|
|
492
|
-
- Ensure working memory can be updated througb createThread and updateThread ([#8513](https://github.com/mastra-ai/mastra/pull/8513))
|
|
493
|
-
|
|
494
|
-
- Updated dependencies [[`c621613`](https://github.com/mastra-ai/mastra/commit/c621613069173c69eb2c3ef19a5308894c6549f0), [`12b1189`](https://github.com/mastra-ai/mastra/commit/12b118942445e4de0dd916c593e33ec78dc3bc73), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`076b092`](https://github.com/mastra-ai/mastra/commit/076b0924902ff0f49d5712d2df24c4cca683713f), [`2aee9e7`](https://github.com/mastra-ai/mastra/commit/2aee9e7d188b8b256a4ddc203ccefb366b4867fa), [`c582906`](https://github.com/mastra-ai/mastra/commit/c5829065a346260f96c4beb8af131b94804ae3ad), [`fa2eb96`](https://github.com/mastra-ai/mastra/commit/fa2eb96af16c7d433891a73932764960d3235c1d), [`4783b30`](https://github.com/mastra-ai/mastra/commit/4783b3063efea887825514b783ba27f67912c26d), [`a739d0c`](https://github.com/mastra-ai/mastra/commit/a739d0c8b37cd89569e04a6ca0827083c6167e19), [`603e927`](https://github.com/mastra-ai/mastra/commit/603e9279db8bf8a46caf83881c6b7389ccffff7e), [`cd45982`](https://github.com/mastra-ai/mastra/commit/cd4598291cda128a88738734ae6cbef076ebdebd), [`874f74d`](https://github.com/mastra-ai/mastra/commit/874f74da4b1acf6517f18132d035612c3ecc394a), [`0baf2ba`](https://github.com/mastra-ai/mastra/commit/0baf2bab8420277072ef1f95df5ea7b0a2f61fe7), [`26e968d`](https://github.com/mastra-ai/mastra/commit/26e968db2171ded9e4d47aa1b4f19e1e771158d0), [`cbd3fb6`](https://github.com/mastra-ai/mastra/commit/cbd3fb65adb03a7c0df193cb998aed5ac56675ee)]:
|
|
495
|
-
- @mastra/core@0.20.1-alpha.1
|
|
496
|
-
|
|
497
|
-
## 0.15.5
|
|
498
|
-
|
|
499
|
-
### Patch Changes
|
|
500
|
-
|
|
501
501
|
|
|
502
|
-
...
|
|
502
|
+
... 3406 more lines hidden. See full changelog in package directory.
|