@mastra/upstash 0.1.0-alpha.2 → 0.1.0-alpha.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @mastra/upstash
2
2
 
3
+ ## 0.1.0-alpha.4
4
+
5
+ ### Minor Changes
6
+
7
+ - 8b416d9: Breaking changes
8
+
9
+ ### Patch Changes
10
+
11
+ - 9c10484: update all packages
12
+ - Updated dependencies [9c10484]
13
+ - Updated dependencies [8b416d9]
14
+ - @mastra/core@0.2.0-alpha.94
15
+
16
+ ## 0.1.0-alpha.3
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [5285356]
21
+ - @mastra/core@0.2.0-alpha.93
22
+
3
23
  ## 0.1.0-alpha.2
4
24
 
5
25
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/upstash",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.4",
4
4
  "description": "Upstash provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -17,7 +17,7 @@
17
17
  "dependencies": {
18
18
  "@upstash/redis": "^1.28.3",
19
19
  "@upstash/vector": "^1.1.7",
20
- "@mastra/core": "^0.2.0-alpha.92"
20
+ "@mastra/core": "^0.2.0-alpha.94"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@tsconfig/recommended": "^1.0.7",
@@ -49,7 +49,6 @@ describe.skipIf(!process.env.UPSTASH_VECTOR_URL || !process.env.UPSTASH_VECTOR_T
49
49
  vectorStore = new UpstashVector({ url, token });
50
50
  });
51
51
 
52
-
53
52
  afterAll(async () => {
54
53
  if (!vectorStore) return;
55
54