@mastra/pg 0.10.2-alpha.4 → 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.
- package/.turbo/turbo-build.log +4 -4
- package/CHANGELOG.md +27 -0
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.5.0
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 9682ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
13
13
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/pg/dist/_tsup-dts-rollup.d.ts[39m
|
|
14
14
|
Analysis will use the bundled TypeScript version 5.8.3
|
|
15
15
|
[36mWriting package typings: /home/runner/work/mastra/mastra/stores/pg/dist/_tsup-dts-rollup.d.cts[39m
|
|
16
|
-
[32mDTS[39m ⚡️ Build success in
|
|
16
|
+
[32mDTS[39m ⚡️ Build success in 11761ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
20
|
[32mESM[39m [1mdist/index.js [22m[32m67.23 KB[39m
|
|
21
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mESM[39m ⚡️ Build success in 1480ms
|
|
22
22
|
[32mCJS[39m [1mdist/index.cjs [22m[32m67.79 KB[39m
|
|
23
|
-
[32mCJS[39m ⚡️ Build success in
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 1481ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
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
|
+
|
|
3
30
|
## 0.10.2-alpha.4
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/pg",
|
|
3
|
-
"version": "0.10.2
|
|
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,9 +33,9 @@
|
|
|
33
33
|
"tsup": "^8.5.0",
|
|
34
34
|
"typescript": "^5.8.2",
|
|
35
35
|
"vitest": "^3.2.2",
|
|
36
|
-
"@internal/storage-test-utils": "0.0.
|
|
37
|
-
"@
|
|
38
|
-
"@
|
|
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
41
|
"@mastra/core": ">=0.10.4-0 <0.11.0"
|