@mastra/pg 0.1.0-alpha.6 → 0.1.0-alpha.8

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 +22 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,27 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.1.0-alpha.8
4
+
5
+ ### Patch Changes
6
+
7
+ - 70dabd9: Fix broken publish
8
+ - Updated dependencies [70dabd9]
9
+ - Updated dependencies [202d404]
10
+ - @mastra/core@0.2.0-alpha.98
11
+
12
+ ## 0.1.0-alpha.7
13
+
14
+ ### Patch Changes
15
+
16
+ - 07c069d: Update build script
17
+ - Updated dependencies [07c069d]
18
+ - Updated dependencies [7892533]
19
+ - Updated dependencies [e6d8055]
20
+ - Updated dependencies [5950de5]
21
+ - Updated dependencies [df843d3]
22
+ - Updated dependencies [a870123]
23
+ - @mastra/core@0.2.0-alpha.97
24
+
3
25
  ## 0.1.0-alpha.6
4
26
 
5
27
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/pg",
3
- "version": "0.1.0-alpha.6",
3
+ "version": "0.1.0-alpha.8",
4
4
  "description": "Postgres 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
  "pg": "^8.13.1",
19
19
  "pg-promise": "^11.5.4",
20
- "@mastra/core": "^0.2.0-alpha.96"
20
+ "@mastra/core": "^0.2.0-alpha.98"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@tsconfig/recommended": "^1.0.7",
@@ -27,8 +27,8 @@
27
27
  "vitest": "^3.0.4"
28
28
  },
29
29
  "scripts": {
30
- "build": "tsup-node src/index.ts --format esm --dts --clean --treeshake",
31
- "dev": "tsup-node src/index.ts --format esm --dts --clean --treeshake --watch",
30
+ "build": "tsup src/index.ts --format esm --dts --clean --treeshake",
31
+ "build:watch": "pnpm build --watch",
32
32
  "pretest": "docker compose up -d && (for i in $(seq 1 30); do docker compose exec -T db pg_isready -U postgres && break || (sleep 1; [ $i -eq 30 ] && exit 1); done)",
33
33
  "test": "vitest run",
34
34
  "posttest": "docker compose down -v",