@mastra/memory 0.14.4-alpha.0 → 0.14.4

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.14.4
4
+
5
+ ### Patch Changes
6
+
7
+ - 376913a: Update peerdeps
8
+ - 38020d5: Fix memory pagination not working when using query() method
9
+
10
+ The Memory.query() method was ignoring pagination parameters in the selectBy option, always returning all messages instead of the requested page. This fix ensures pagination works correctly by using storage.getMessagesPaginated() when pagination is requested, while maintaining backward compatibility with storage.getMessages() for non-paginated queries.
11
+
12
+ - Updated dependencies [8fbf79e]
13
+ - Updated dependencies [fd83526]
14
+ - Updated dependencies [d0b90ab]
15
+ - Updated dependencies [6f5eb7a]
16
+ - Updated dependencies [a01cf14]
17
+ - Updated dependencies [a9e50ee]
18
+ - Updated dependencies [5397eb4]
19
+ - Updated dependencies [c9f4e4a]
20
+ - Updated dependencies [0acbc80]
21
+ - @mastra/core@0.16.0
22
+
3
23
  ## 0.14.4-alpha.0
4
24
 
5
25
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/memory",
3
- "version": "0.14.4-alpha.0",
3
+ "version": "0.14.4",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -61,9 +61,9 @@
61
61
  "typescript": "^5.8.3",
62
62
  "typescript-eslint": "^8.38.0",
63
63
  "vitest": "^3.2.4",
64
- "@mastra/core": "0.16.0-alpha.1",
65
- "@internal/lint": "0.0.35",
66
- "@internal/types-builder": "0.0.10"
64
+ "@internal/lint": "0.0.36",
65
+ "@mastra/core": "0.16.0",
66
+ "@internal/types-builder": "0.0.11"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "@mastra/core": ">=0.15.3-0 <0.17.0-0",