@mastra/upstash 0.12.0 → 0.12.1-alpha.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.
- package/.turbo/turbo-build.log +5 -5
- package/CHANGELOG.md +11 -2
- package/package.json +7 -7
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
|
|
2
|
-
> @mastra/upstash@0.12.
|
|
2
|
+
> @mastra/upstash@0.12.1-alpha.0 build /home/runner/work/mastra/mastra/stores/upstash
|
|
3
3
|
> tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.5.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 11026ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/upstash/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/upstash/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 12983ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
20
|
[32mCJS[39m [1mdist/index.cjs [22m[32m58.93 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in
|
|
21
|
+
[32mCJS[39m ⚡️ Build success in 1526ms
|
|
22
22
|
[32mESM[39m [1mdist/index.js [22m[32m58.11 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
23
|
+
[32mESM[39m ⚡️ Build success in 1526ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @mastra/upstash
|
|
2
2
|
|
|
3
|
+
## 0.12.1-alpha.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- bef10e5: dependencies updates:
|
|
8
|
+
- Updated dependency [`@upstash/vector@^1.2.2` ↗︎](https://www.npmjs.com/package/@upstash/vector/v/1.2.2) (from `^1.2.1`, in `dependencies`)
|
|
9
|
+
- Updated dependencies [2873c7f]
|
|
10
|
+
- Updated dependencies [1c1c6a1]
|
|
11
|
+
- Updated dependencies [565cc0c]
|
|
12
|
+
- @mastra/core@0.10.11-alpha.2
|
|
13
|
+
|
|
3
14
|
## 0.12.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
|
@@ -1530,7 +1541,6 @@
|
|
|
1530
1541
|
### Minor Changes
|
|
1531
1542
|
|
|
1532
1543
|
- c87eb4e: Combine Upstash packages into `@mastra/upstash`.
|
|
1533
|
-
|
|
1534
1544
|
- Move and combine packages to `stores/upstash`
|
|
1535
1545
|
- Reorganize source files into `src/vector` and `src/store`
|
|
1536
1546
|
- Add deprecation notices to old packages
|
|
@@ -1864,7 +1874,6 @@
|
|
|
1864
1874
|
### Minor Changes
|
|
1865
1875
|
|
|
1866
1876
|
- c87eb4e: Combine Upstash packages into `@mastra/upstash`.
|
|
1867
|
-
|
|
1868
1877
|
- Move and combine packages to `stores/upstash`
|
|
1869
1878
|
- Reorganize source files into `src/vector` and `src/store`
|
|
1870
1879
|
- Add deprecation notices to old packages
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/upstash",
|
|
3
|
-
"version": "0.12.0",
|
|
3
|
+
"version": "0.12.1-alpha.0",
|
|
4
4
|
"description": "Upstash provider for Mastra - includes both vector and db storage capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,19 +21,19 @@
|
|
|
21
21
|
"license": "MIT",
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@upstash/redis": "^1.35.0",
|
|
24
|
-
"@upstash/vector": "^1.2.
|
|
24
|
+
"@upstash/vector": "^1.2.2"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@microsoft/api-extractor": "^7.52.8",
|
|
28
28
|
"@types/node": "^20.19.0",
|
|
29
|
-
"dotenv": "^
|
|
29
|
+
"dotenv": "^17.0.0",
|
|
30
30
|
"eslint": "^9.29.0",
|
|
31
31
|
"tsup": "^8.5.0",
|
|
32
32
|
"typescript": "^5.8.3",
|
|
33
|
-
"vitest": "^3.2.
|
|
34
|
-
"@internal/lint": "0.0.
|
|
35
|
-
"@
|
|
36
|
-
"@
|
|
33
|
+
"vitest": "^3.2.4",
|
|
34
|
+
"@internal/lint": "0.0.17",
|
|
35
|
+
"@internal/storage-test-utils": "0.0.13",
|
|
36
|
+
"@mastra/core": "0.10.11-alpha.2"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@mastra/core": ">=0.10.7-0 <0.11.0-0"
|