@mastra/pg 0.10.2-alpha.3 → 0.10.2

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.
@@ -1,23 +1,23 @@
1
1
 
2
- > @mastra/pg@0.10.2-alpha.3 build /home/runner/work/mastra/mastra/stores/pg
2
+ > @mastra/pg@0.10.2-alpha.4 build /home/runner/work/mastra/mastra/stores/pg
3
3
  > tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting
4
4
 
5
5
  CLI Building entry: src/index.ts
6
6
  CLI Using tsconfig: tsconfig.json
7
7
  CLI tsup v8.5.0
8
8
  TSC Build start
9
- TSC ⚡️ Build success in 10698ms
9
+ TSC ⚡️ Build success in 9682ms
10
10
  DTS Build start
11
11
  CLI Target: es2022
12
12
  Analysis will use the bundled TypeScript version 5.8.3
13
13
  Writing package typings: /home/runner/work/mastra/mastra/stores/pg/dist/_tsup-dts-rollup.d.ts
14
14
  Analysis will use the bundled TypeScript version 5.8.3
15
15
  Writing package typings: /home/runner/work/mastra/mastra/stores/pg/dist/_tsup-dts-rollup.d.cts
16
- DTS ⚡️ Build success in 10174ms
16
+ DTS ⚡️ Build success in 11761ms
17
17
  CLI Cleaning output folder
18
18
  ESM Build start
19
19
  CJS Build start
20
20
  ESM dist/index.js 67.23 KB
21
- ESM ⚡️ Build success in 1908ms
21
+ ESM ⚡️ Build success in 1480ms
22
22
  CJS dist/index.cjs 67.79 KB
23
- CJS ⚡️ Build success in 1909ms
23
+ CJS ⚡️ Build success in 1481ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @mastra/pg
2
2
 
3
+ ## 0.10.2
4
+
5
+ ### Patch Changes
6
+
7
+ - e95cb69: dependencies updates:
8
+ - Updated dependency [`pg@^8.16.0` ↗︎](https://www.npmjs.com/package/pg/v/8.16.0) (from `^8.13.3`, in `dependencies`)
9
+ - Updated dependency [`pg-promise@^11.13.0` ↗︎](https://www.npmjs.com/package/pg-promise/v/11.13.0) (from `^11.11.0`, in `dependencies`)
10
+ - 0db1e1e: Fix PostgresStore paginated APIs
11
+ - dffb67b: updated stores to add alter table and change tests
12
+ - e0f9201: change how dedupe works for libsql and pg
13
+ - 48eddb9: update filter logic in Memory class to support semantic recall search scope
14
+ - 66f4424: Update peerdeps
15
+ - Updated dependencies [d1ed912]
16
+ - Updated dependencies [f6fd25f]
17
+ - Updated dependencies [dffb67b]
18
+ - Updated dependencies [f1f1f1b]
19
+ - Updated dependencies [925ab94]
20
+ - Updated dependencies [f9816ae]
21
+ - Updated dependencies [82090c1]
22
+ - Updated dependencies [1b443fd]
23
+ - Updated dependencies [ce97900]
24
+ - Updated dependencies [f1309d3]
25
+ - Updated dependencies [14a2566]
26
+ - Updated dependencies [f7f8293]
27
+ - Updated dependencies [48eddb9]
28
+ - @mastra/core@0.10.4
29
+
30
+ ## 0.10.2-alpha.4
31
+
32
+ ### Patch Changes
33
+
34
+ - 66f4424: Update peerdeps
35
+
3
36
  ## 0.10.2-alpha.3
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mastra/pg",
3
- "version": "0.10.2-alpha.3",
3
+ "version": "0.10.2",
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,12 +33,12 @@
33
33
  "tsup": "^8.5.0",
34
34
  "typescript": "^5.8.2",
35
35
  "vitest": "^3.2.2",
36
- "@internal/lint": "0.0.10",
37
- "@internal/storage-test-utils": "0.0.6",
38
- "@mastra/core": "0.10.4-alpha.3"
36
+ "@internal/storage-test-utils": "0.0.7",
37
+ "@mastra/core": "0.10.4",
38
+ "@internal/lint": "0.0.11"
39
39
  },
40
40
  "peerDependencies": {
41
- "@mastra/core": "^0.10.2-alpha.0"
41
+ "@mastra/core": ">=0.10.4-0 <0.11.0"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "tsup src/index.ts --format esm,cjs --experimental-dts --clean --treeshake=smallest --splitting",