@mastra/pg 0.0.0-declaration-maps-20250729231921 → 0.0.0-declaration-maps-20250730185206

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,6 +1,19 @@
1
1
  # @mastra/pg
2
2
 
3
- ## 0.0.0-declaration-maps-20250729231921
3
+ ## 0.0.0-declaration-maps-20250730185206
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [33dcb07]
8
+ - Updated dependencies [d30b1a0]
9
+ - Updated dependencies [bff87f7]
10
+ - @mastra/core@0.0.0-declaration-maps-20250730185206
11
+
12
+ ## 0.13.0
13
+
14
+ ### Minor Changes
15
+
16
+ - f42c4c2: update peer deps for packages to latest core range
4
17
 
5
18
  ### Patch Changes
6
19
 
@@ -40,7 +53,17 @@
40
53
  - Updated dependencies [b8efbb9]
41
54
  - Updated dependencies [71466e7]
42
55
  - Updated dependencies [0c99fbe]
43
- - @mastra/core@0.0.0-declaration-maps-20250729231921
56
+ - @mastra/core@0.12.0
57
+
58
+ ## 0.13.0-alpha.1
59
+
60
+ ### Minor Changes
61
+
62
+ - f42c4c2: update peer deps for packages to latest core range
63
+
64
+ ### Patch Changes
65
+
66
+ - @mastra/core@0.12.0-alpha.5
44
67
 
45
68
  ## 0.12.6-alpha.0
46
69
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/pg",
3
- "version": "0.0.0-declaration-maps-20250729231921",
3
+ "version": "0.0.0-declaration-maps-20250730185206",
4
4
  "description": "Postgres provider for Mastra - includes both vector and db storage capabilities",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -33,16 +33,16 @@
33
33
  "tsup": "^8.5.0",
34
34
  "typescript": "^5.8.3",
35
35
  "vitest": "^3.2.4",
36
- "@internal/lint": "0.0.0-declaration-maps-20250729231921",
37
- "@mastra/core": "0.0.0-declaration-maps-20250729231921",
38
- "@internal/storage-test-utils": "0.0.19"
36
+ "@internal/lint": "0.0.0-declaration-maps-20250730185206",
37
+ "@internal/storage-test-utils": "0.0.20",
38
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206"
39
39
  },
40
40
  "peerDependencies": {
41
- "@mastra/core": "0.0.0-declaration-maps-20250729231921"
41
+ "@mastra/core": "0.0.0-declaration-maps-20250730185206"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsup --silent --config tsup.config.ts",
45
- "build:watch": "tsup --watch --silent --config tsup.config.ts",
45
+ "build:watch": "pnpm build --watch",
46
46
  "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)",
47
47
  "test": "vitest run",
48
48
  "pretest:perf": "docker compose -f docker-compose.perf.yaml up -d && (for i in $(seq 1 30); do docker compose -f docker-compose.perf.yaml exec -T db pg_isready -U postgres && break || (sleep 1; [ $i -eq 30 ] && exit 1); done)",
package/tsconfig.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*"],
3
+ "include": ["src/**/*", "tsup.config.ts"],
4
4
  "exclude": ["node_modules", "**/*.test.ts"]
5
5
  }
package/tsup.config.ts CHANGED
@@ -1,9 +1,6 @@
1
1
  import { spawn } from 'child_process';
2
2
  import { promisify } from 'util';
3
3
  import { defineConfig } from 'tsup';
4
- import type { Options } from 'tsup';
5
-
6
- type Plugin = NonNullable<Options['plugins']>[number];
7
4
 
8
5
  const exec = promisify(spawn);
9
6