WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

Commit 4bf949c

Browse files
chore: version packages (beta) (#10920)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action to publish automatically](https://github.com/changesets/action#with-publishing). If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. ⚠️⚠️⚠️⚠️⚠️⚠️ `main` is currently in **pre mode** so this branch has prereleases rather than normal releases. If you want to exit prereleases, run `changeset pre exit` on `main`. ⚠️⚠️⚠️⚠️⚠️⚠️ # Releases ## @mastra/[email protected] ### Minor Changes - Add redact option to PinoLogger for PII protection ([#10919](#10919)) Exposes Pino's native `redact` option in `PinoLogger`, allowing sensitive data to be automatically redacted from logs. ```typescript import { PinoLogger } from '@mastra/loggers'; const logger = new PinoLogger({ name: 'MyApp', redact: { paths: ['*.password', '*.token', '*.apiKey', '*.email'], censor: '[REDACTED]', }, }); logger.info('User login', { username: 'john', password: 'secret123' }); // Output: { username: "john", password: "[REDACTED]", msg: "User login" } ``` ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Improve JSDoc comments ([#10877](#10877)) - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`38c98bc`](38c98bc), [`0d41fe2`](0d41fe2), [`2a54120`](2a54120), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`9f2c5b1`](9f2c5b1), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`9f2c5b1`](9f2c5b1), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix traceMap overwrite when multiple root spans share the same traceId ([#10903](#10903)) Previously, when multiple root spans shared the same traceId (e.g., multiple `agent.stream` calls in the same trace), the trace data would be overwritten instead of reused. This could cause spans to be orphaned or lost. Now both exporters check if a trace already exists before creating a new one, matching the behavior of the Langfuse and PostHog exporters. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix traceMap overwrite when multiple root spans share the same traceId ([#10903](#10903)) Previously, when multiple root spans shared the same traceId (e.g., multiple `agent.stream` calls in the same trace), the trace data would be overwritten instead of reused. This could cause spans to be orphaned or lost. Now both exporters check if a trace already exists before creating a new one, matching the behavior of the Langfuse and PostHog exporters. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - 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](#10922)) - Updated dependencies \[[`0d41fe2`](0d41fe2), [`9f2c5b1`](9f2c5b1), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - `setState` is now async ([#10944](#10944)) - `setState` must now be awaited: `await setState({ key: value })` - State updates are merged automatically—no need to spread the previous state - State data is validated against the step's `stateSchema` when `validateInputs` is enabled (default: `true`) - Add human-in-the-loop support for workflows used in agent ([#10871](#10871)) ## @mastra/[email protected] ### Patch Changes - Fix tsconfig.json parsing when file contains JSONC comments ([#10952](#10952)) 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - 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](#10954)) - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`3d3c9e7`](3d3c9e7), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - PostgresStore was setting `this.stores = {}` in the constructor and only populating it in the async `init()` method. This broke Memory because it checks `storage.stores.memory` synchronously in `getInputProcessors()` before `init()` is called. ([#10943](#10943)) The fix moves domain instance creation to the constructor. This is safe because pg-promise creates database connections lazily when queries are executed. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] ## @mastra/[email protected] ### Patch Changes - Fix saveScore not persisting ID correctly, breaking getScoreById retrieval ([#10915](#10915)) **What Changed** - saveScore now correctly returns scores that can be retrieved with getScoreById - Validation errors now include contextual information (scorer, entity, trace details) for easier debugging **Impact** 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. - Updated dependencies \[[`0d41fe2`](0d41fe2), [`6b3ba91`](6b3ba91), [`7907fd1`](7907fd1)]: - @mastra/[email protected] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b3a8a96 commit 4bf949c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+415
-29
lines changed

.changeset/pre.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@
131131
"add-inspect-host-port-support",
132132
"add-langfuse-ttft-support",
133133
"add-markdown-table-support",
134+
"add-pino-logger-redact-option",
134135
"add-posthog-exporter",
135136
"add-posthog-tags-support",
136137
"afraid-flies-kiss",
@@ -175,6 +176,7 @@
175176
"clever-ideas-study",
176177
"clever-items-retire",
177178
"clever-keys-guard",
179+
"clever-spiders-serve",
178180
"cool-clowns-win",
179181
"cool-hats-matter",
180182
"cozy-tigers-fold",
@@ -196,6 +198,7 @@
196198
"dark-insects-act",
197199
"dirty-things-hammer",
198200
"dry-ghosts-slide",
201+
"dull-pans-write",
199202
"eager-friends-pull",
200203
"eager-wings-film",
201204
"early-cows-punch",
@@ -249,6 +252,7 @@
249252
"fix-span-lifecycle-ordering",
250253
"fix-sub-agent-request-context",
251254
"fix-toolstream-pipeto-types",
255+
"fix-tsconfig-jsonc-comments",
252256
"fix-workflow-input-property",
253257
"fix-workflow-run-status-from-storage",
254258
"flat-sites-shine",
@@ -278,6 +282,7 @@
278282
"funky-bears-follow",
279283
"funky-eagles-study",
280284
"funky-lies-happen",
285+
"funky-signs-help",
281286
"funny-badgers-play",
282287
"funny-dingos-throw",
283288
"funny-feet-help",
@@ -286,6 +291,7 @@
286291
"fuzzy-onions-juggle",
287292
"fuzzy-stars-make",
288293
"gentle-stingrays-yell",
294+
"gentle-waves-swim",
289295
"giant-icons-marry",
290296
"giant-maps-care",
291297
"good-walls-warn",
@@ -392,6 +398,7 @@
392398
"rare-cows-open",
393399
"rare-moles-sink",
394400
"ready-carpets-unite",
401+
"ready-carrots-exist",
395402
"ready-rabbits-sing",
396403
"real-pianos-flash",
397404
"real-rings-suffer",
@@ -464,6 +471,7 @@
464471
"strict-areas-hug",
465472
"strong-dogs-press",
466473
"strong-teeth-jam",
474+
"sunny-facts-matter",
467475
"sweet-laws-sink",
468476
"sweet-pumas-admire",
469477
"swift-cats-play",
@@ -487,6 +495,7 @@
487495
"thick-stars-win",
488496
"thick-times-carry",
489497
"thin-comics-take",
498+
"thin-onions-win",
490499
"thirty-carrots-fold",
491500
"thirty-spiders-visit",
492501
"three-shoes-wear",
@@ -507,6 +516,7 @@
507516
"upset-eggs-beam",
508517
"v1-gemini-parallel-fix",
509518
"vast-banks-drive",
519+
"vast-keys-switch",
510520
"violet-candies-cough",
511521
"violet-lands-press",
512522
"violet-peaches-brush",

client-sdks/ai-sdk/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @mastra/ai-sdk
22

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+
312
## 1.0.0-beta.5
413

514
### Minor Changes

client-sdks/ai-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/ai-sdk",
3-
"version": "1.0.0-beta.5",
3+
"version": "1.0.0-beta.6",
44
"description": "Adds custom API routes to be compatible with the AI SDK UI parts",
55
"type": "module",
66
"main": "dist/index.js",

client-sdks/client-js/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @mastra/client-js
22

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+
310
## 1.0.0-beta.7
411

512
### Patch Changes

client-sdks/client-js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/client-js",
3-
"version": "1.0.0-beta.7",
3+
"version": "1.0.0-beta.8",
44
"description": "The official TypeScript library for the Mastra Client API",
55
"author": "",
66
"type": "module",

client-sdks/react/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @mastra/react-hooks
22

3+
## 0.1.0-beta.8
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- @mastra/client-js@1.0.0-beta.8
9+
310
## 0.1.0-beta.7
411

512
### Patch Changes

client-sdks/react/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/react",
3-
"version": "0.1.0-beta.7",
3+
"version": "0.1.0-beta.8",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/mastra-ai/mastra.git",

deployers/cloud/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @mastra/deployer-cloud
22

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+
312
## 1.0.0-beta.7
413

514
### Patch Changes

deployers/cloud/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mastra/deployer-cloud",
3-
"version": "1.0.0-beta.7",
3+
"version": "1.0.0-beta.8",
44
"description": "",
55
"type": "module",
66
"files": [

examples/dane/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# @mastra/dane
22

3+
## 1.0.0-beta.8
4+
5+
### Patch Changes
6+
7+
- 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)]:
8+
- @mastra/core@1.0.0-beta.8
9+
- @mastra/upstash@1.0.0-beta.5
10+
- @mastra/libsql@1.0.0-beta.5
11+
- @mastra/memory@1.0.0-beta.4
12+
313
## 1.0.0-beta.7
414

515
### Patch Changes

0 commit comments

Comments
 (0)