@mastra/upstash 0.1.0-alpha.6 → 0.1.0-alpha.9

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 +29 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # @mastra/upstash
2
2
 
3
+ ## 0.1.0-alpha.9
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [7d83b92]
8
+ - @mastra/core@0.2.0-alpha.99
9
+
10
+ ## 0.1.0-alpha.8
11
+
12
+ ### Patch Changes
13
+
14
+ - 70dabd9: Fix broken publish
15
+ - Updated dependencies [70dabd9]
16
+ - Updated dependencies [202d404]
17
+ - @mastra/core@0.2.0-alpha.98
18
+
19
+ ## 0.1.0-alpha.7
20
+
21
+ ### Patch Changes
22
+
23
+ - 07c069d: Update build script
24
+ - Updated dependencies [07c069d]
25
+ - Updated dependencies [7892533]
26
+ - Updated dependencies [e6d8055]
27
+ - Updated dependencies [5950de5]
28
+ - Updated dependencies [df843d3]
29
+ - Updated dependencies [a870123]
30
+ - @mastra/core@0.2.0-alpha.97
31
+
3
32
  ## 0.1.0-alpha.6
4
33
 
5
34
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/upstash",
3
- "version": "0.1.0-alpha.6",
3
+ "version": "0.1.0-alpha.9",
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.96"
20
+ "@mastra/core": "^0.2.0-alpha.99"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@tsconfig/recommended": "^1.0.7",
@@ -29,7 +29,7 @@
29
29
  "pretest": "docker compose up -d",
30
30
  "test": "vitest run",
31
31
  "posttest": "docker compose down",
32
- "build": "tsup-node src/index.ts --format esm --dts --clean --treeshake",
33
- "dev": "tsup-node src/index.ts --format esm --dts --clean --treeshake --watch"
32
+ "build": "tsup src/index.ts --format esm --dts --clean --treeshake",
33
+ "build:watch": "pnpm build --watch"
34
34
  }
35
35
  }