@mastra/memory 1.17.2 → 1.17.3

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,5 +1,20 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 1.17.3
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed memory package startup with older core versions. ([#15772](https://github.com/mastra-ai/mastra/pull/15772))
8
+
9
+ - Updated dependencies [[`6db978c`](https://github.com/mastra-ai/mastra/commit/6db978c42e94e75540a504f7230086f0b5cd35f9), [`512a013`](https://github.com/mastra-ai/mastra/commit/512a013f285aa9c0aa8f08a35b2ce09f9938b017), [`e9becde`](https://github.com/mastra-ai/mastra/commit/e9becdeed9176b9f8392e557bde12b933f99cf7a), [`703a443`](https://github.com/mastra-ai/mastra/commit/703a44390c587d9c0b8ae94ec4edd8afb2a74044), [`808df1b`](https://github.com/mastra-ai/mastra/commit/808df1b39358b5f10b7317107e42b1fda7c87185)]:
10
+ - @mastra/core@1.29.1
11
+
12
+ ## 1.17.3-alpha.0
13
+
14
+ ### Patch Changes
15
+
16
+ - Fixed memory package startup with older core versions. ([#15772](https://github.com/mastra-ai/mastra/pull/15772))
17
+
3
18
  ## 1.17.2
4
19
 
5
20
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-memory
3
3
  description: Documentation for @mastra/memory. Use when working with @mastra/memory APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/memory"
6
- version: "1.17.2"
6
+ version: "1.17.3"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.17.2",
2
+ "version": "1.17.3",
3
3
  "package": "@mastra/memory",
4
4
  "exports": {
5
5
  "ModelByInputTokens": {
@@ -132,18 +132,6 @@
132
132
  "types": "dist/processors/index.d.ts",
133
133
  "implementation": "dist/chunk-LSJJAJAF.js"
134
134
  },
135
- "extractWorkingMemoryContent": {
136
- "types": "dist/index.d.ts",
137
- "implementation": "dist/memory"
138
- },
139
- "extractWorkingMemoryTags": {
140
- "types": "dist/index.d.ts",
141
- "implementation": "dist/memory"
142
- },
143
- "removeWorkingMemoryTags": {
144
- "types": "dist/index.d.ts",
145
- "implementation": "dist/memory"
146
- },
147
135
  "MessageHistory": {
148
136
  "types": "dist/index.d.ts",
149
137
  "implementation": "dist/processors"
@@ -1,6 +1,6 @@
1
1
  # Background tasks
2
2
 
3
- **Added in:** `@mastra/core@1.28.0`
3
+ **Added in:** `@mastra/core@1.29.0`
4
4
 
5
5
  Background tasks let an agent dispatch a long-running tool call without blocking the agentic loop. The tool returns an immediate acknowledgement, the LLM continues responding, and the task runs to completion in the background. When it finishes, its result is written to memory and if you use [`streamUntilIdle()`](https://mastra.ai/reference/streaming/agents/streamUntilIdle) the agent is re-invoked automatically so the result is processed in the same call.
6
6