@mastra/pg 0.1.6-alpha.4 → 0.1.6
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 +5 -5
- package/CHANGELOG.md +29 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -6,18 +6,18 @@
|
|
|
6
6
|
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
7
|
[34mCLI[39m tsup v8.3.6
|
|
8
8
|
[34mTSC[39m Build start
|
|
9
|
-
[32mTSC[39m ⚡️ Build success in
|
|
9
|
+
[32mTSC[39m ⚡️ Build success in 7672ms
|
|
10
10
|
[34mDTS[39m Build start
|
|
11
11
|
[34mCLI[39m Target: es2022
|
|
12
12
|
Analysis will use the bundled TypeScript version 5.7.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.7.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 10963ms
|
|
17
17
|
[34mCLI[39m Cleaning output folder
|
|
18
18
|
[34mESM[39m Build start
|
|
19
19
|
[34mCJS[39m Build start
|
|
20
|
-
[32mCJS[39m [1mdist/index.cjs [22m[32m33.60 KB[39m
|
|
21
|
-
[32mCJS[39m ⚡️ Build success in 1201ms
|
|
22
20
|
[32mESM[39m [1mdist/index.js [22m[32m33.20 KB[39m
|
|
23
|
-
[32mESM[39m ⚡️ Build success in
|
|
21
|
+
[32mESM[39m ⚡️ Build success in 1374ms
|
|
22
|
+
[32mCJS[39m [1mdist/index.cjs [22m[32m33.60 KB[39m
|
|
23
|
+
[32mCJS[39m ⚡️ Build success in 1374ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @mastra/pg
|
|
2
2
|
|
|
3
|
+
## 0.1.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 0d185b1: Ensure proper message sort order for tool calls and results when using Memory semanticRecall feature
|
|
8
|
+
- 0fd78ac: Update vector store functions to use object params
|
|
9
|
+
- 5325d6a: A bug fix earlier today unmasked that the next/prev settings for PG semantic recall were swapped
|
|
10
|
+
- fd14a3f: Updating filter location from @mastra/core/filter to @mastra/core/vector/filter
|
|
11
|
+
- 4d4e1e1: Updated vector tests and pinecone
|
|
12
|
+
- bb4f447: Add support for commonjs
|
|
13
|
+
- f6a1de3: Renamed defineIndex to buildIndex
|
|
14
|
+
- Updated dependencies [0d185b1]
|
|
15
|
+
- Updated dependencies [ed55f1d]
|
|
16
|
+
- Updated dependencies [06aa827]
|
|
17
|
+
- Updated dependencies [0fd78ac]
|
|
18
|
+
- Updated dependencies [2512a93]
|
|
19
|
+
- Updated dependencies [e62de74]
|
|
20
|
+
- Updated dependencies [0d25b75]
|
|
21
|
+
- Updated dependencies [fd14a3f]
|
|
22
|
+
- Updated dependencies [8d13b14]
|
|
23
|
+
- Updated dependencies [3f369a2]
|
|
24
|
+
- Updated dependencies [3ee4831]
|
|
25
|
+
- Updated dependencies [4d4e1e1]
|
|
26
|
+
- Updated dependencies [bb4f447]
|
|
27
|
+
- Updated dependencies [108793c]
|
|
28
|
+
- Updated dependencies [5f28f44]
|
|
29
|
+
- Updated dependencies [dabecf4]
|
|
30
|
+
- @mastra/core@0.4.3
|
|
31
|
+
|
|
3
32
|
## 0.1.6-alpha.4
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/pg",
|
|
3
|
-
"version": "0.1.6
|
|
3
|
+
"version": "0.1.6",
|
|
4
4
|
"description": "Postgres provider for Mastra - includes both vector and db storage capabilities",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"pg": "^8.13.1",
|
|
23
23
|
"pg-promise": "^11.5.4",
|
|
24
|
-
"@mastra/core": "^0.4.3
|
|
24
|
+
"@mastra/core": "^0.4.3"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@microsoft/api-extractor": "^7.49.2",
|