@mastra/memory 0.12.3-alpha.0 → 0.13.0

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.
@@ -1,8 +1,8 @@
1
1
 
2
- > @mastra/memory@0.12.3-alpha.0 build /home/runner/work/mastra/mastra/packages/memory
2
+ > @mastra/memory@0.13.0-alpha.1 build /home/runner/work/mastra/mastra/packages/memory
3
3
  > pnpm run check && tsup --silent --config tsup.config.ts
4
4
 
5
5
 
6
- > @mastra/memory@0.12.3-alpha.0 check /home/runner/work/mastra/mastra/packages/memory
6
+ > @mastra/memory@0.13.0-alpha.1 check /home/runner/work/mastra/mastra/packages/memory
7
7
  > tsc --noEmit
8
8
 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,45 @@
1
1
  # @mastra/memory
2
2
 
3
+ ## 0.13.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 03997ae: Update peer deps of core
8
+
9
+ ### Patch Changes
10
+
11
+ - 8a41506: dependencies updates:
12
+ - Updated dependency [`redis@^5.8.1` ↗︎](https://www.npmjs.com/package/redis/v/5.8.1) (from `^5.8.0`, in `dependencies`)
13
+ - 2454423: Agentic loop and streaming workflow: generateVNext and streamVNext
14
+ - Updated dependencies [227c7e6]
15
+ - Updated dependencies [12cae67]
16
+ - Updated dependencies [fd3a3eb]
17
+ - Updated dependencies [6faaee5]
18
+ - Updated dependencies [4232b14]
19
+ - Updated dependencies [a89de7e]
20
+ - Updated dependencies [5a37d0c]
21
+ - Updated dependencies [4bde0cb]
22
+ - Updated dependencies [cf4f357]
23
+ - Updated dependencies [ad888a2]
24
+ - Updated dependencies [481751d]
25
+ - Updated dependencies [2454423]
26
+ - Updated dependencies [194e395]
27
+ - Updated dependencies [a722c0b]
28
+ - Updated dependencies [c30bca8]
29
+ - Updated dependencies [3b5fec7]
30
+ - Updated dependencies [a8f129d]
31
+ - @mastra/core@0.14.0
32
+
33
+ ## 0.13.0-alpha.1
34
+
35
+ ### Minor Changes
36
+
37
+ - 03997ae: Update peer deps of core
38
+
39
+ ### Patch Changes
40
+
41
+ - @mastra/core@0.14.0-alpha.7
42
+
3
43
  ## 0.12.3-alpha.0
4
44
 
5
45
  ### Patch Changes
@@ -1,5 +1,46 @@
1
1
  # @mastra/memory-integration-tests-v5
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 03997ae: Update peerdeps
8
+ - Updated dependencies [8a41506]
9
+ - Updated dependencies [227c7e6]
10
+ - Updated dependencies [12cae67]
11
+ - Updated dependencies [fd3a3eb]
12
+ - Updated dependencies [6faaee5]
13
+ - Updated dependencies [4232b14]
14
+ - Updated dependencies [a89de7e]
15
+ - Updated dependencies [5a37d0c]
16
+ - Updated dependencies [4bde0cb]
17
+ - Updated dependencies [cf4f357]
18
+ - Updated dependencies [03997ae]
19
+ - Updated dependencies [03997ae]
20
+ - Updated dependencies [ad888a2]
21
+ - Updated dependencies [481751d]
22
+ - Updated dependencies [2454423]
23
+ - Updated dependencies [194e395]
24
+ - Updated dependencies [a722c0b]
25
+ - Updated dependencies [c30bca8]
26
+ - Updated dependencies [d6e39da]
27
+ - Updated dependencies [3b5fec7]
28
+ - Updated dependencies [a8f129d]
29
+ - @mastra/memory@0.13.0
30
+ - @mastra/core@0.14.0
31
+ - @mastra/libsql@0.13.3
32
+
33
+ ## 0.1.1-alpha.1
34
+
35
+ ### Patch Changes
36
+
37
+ - 03997ae: Update peerdeps
38
+ - Updated dependencies [03997ae]
39
+ - Updated dependencies [03997ae]
40
+ - @mastra/libsql@0.13.3-alpha.1
41
+ - @mastra/memory@0.13.0-alpha.1
42
+ - @mastra/core@0.14.0-alpha.7
43
+
3
44
  ## 0.1.1-alpha.0
4
45
 
5
46
  ### Patch Changes
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/mastra/mastra/packages/cli/dist/node_modules:/home/runner/work/mastra/mastra/packages/cli/node_modules:/home/runner/work/mastra/mastra/packages/node_modules:/home/runner/work/mastra/mastra/node_modules:/home/runner/work/mastra/node_modules:/home/runner/work/node_modules:/home/runner/node_modules:/home/node_modules:/node_modules:/home/runner/work/mastra/mastra/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/mastra/mastra/packages/cli/dist/node_modules:/home/runner/work/mastra/mastra/packages/cli/node_modules:/home/runner/work/mastra/mastra/packages/node_modules:/home/runner/work/mastra/mastra/node_modules:/home/runner/work/mastra/node_modules:/home/runner/work/node_modules:/home/runner/node_modules:/home/node_modules:/node_modules:/home/runner/work/mastra/mastra/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../mastra/dist/index.js" "$@"
19
+ else
20
+ exec node "$basedir/../mastra/dist/index.js" "$@"
21
+ fi
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mastra/memory-integration-tests-v5",
3
3
  "private": true,
4
- "version": "0.1.1-alpha.0",
4
+ "version": "0.1.1",
5
5
  "scripts": {
6
6
  "test": "pnpm test:streaming && pnpm test:working-memory && pnpm test:agent-memory && pnpm test:processors",
7
7
  "test:agent-memory": "vitest run ./src/agent-memory.test.ts",
@@ -38,6 +38,6 @@
38
38
  "vitest": "^3.2.4"
39
39
  },
40
40
  "peerDependencies": {
41
- "@mastra/core": ">=0.10.7-0 <0.14.0-0"
41
+ "@mastra/core": ">=0.10.7-0 <0.15.0-0"
42
42
  }
43
43
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/memory",
3
- "version": "0.12.3-alpha.0",
3
+ "version": "0.13.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -58,12 +58,12 @@
58
58
  "typescript": "^5.8.3",
59
59
  "typescript-eslint": "^8.38.0",
60
60
  "vitest": "^3.2.4",
61
- "@internal/lint": "0.0.29",
62
- "@mastra/core": "0.14.0-alpha.4",
63
- "@internal/types-builder": "0.0.4"
61
+ "@internal/lint": "0.0.30",
62
+ "@mastra/core": "0.14.0",
63
+ "@internal/types-builder": "0.0.5"
64
64
  },
65
65
  "peerDependencies": {
66
- "@mastra/core": ">=0.13.0-0 <0.14.0-0"
66
+ "@mastra/core": ">=0.14.0-0 <0.15.0-0"
67
67
  },
68
68
  "scripts": {
69
69
  "check": "tsc --noEmit",