@poncho-ai/harness 0.36.0 → 0.36.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 +12 -12
- package/CHANGELOG.md +13 -0
- package/dist/index.js +2 -1
- package/package.json +2 -2
- package/src/storage/postgres-engine.ts +1 -0
- package/.turbo/turbo-lint.log +0 -6
- package/.turbo/turbo-test.log +0 -27100
- package/dist/chunk-MCKGQKYU.js +0 -15
- package/dist/dist-3KMQR4IO.js +0 -27092
- package/dist/isolate-5MISBSUK.js +0 -733
- package/dist/isolate-5R6762YA.js +0 -605
- package/dist/isolate-KUZ5NOPG.js +0 -727
- package/dist/isolate-LOL3T7RA.js +0 -729
- package/dist/isolate-N22X4TCE.js +0 -740
- package/dist/isolate-T7WXM7IL.js +0 -1490
- package/dist/isolate-WFOLANOB.js +0 -768
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/harness@0.36.
|
|
2
|
+
> @poncho-ai/harness@0.36.2 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
|
|
3
3
|
> node scripts/embed-docs.js && tsup src/index.ts --format esm --dts
|
|
4
4
|
|
|
5
5
|
[embed-docs] Generated poncho-docs.ts with 4 topics
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
6
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
7
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
8
|
+
[34mCLI[39m tsup v8.5.1
|
|
9
|
+
[34mCLI[39m Target: es2022
|
|
10
|
+
[34mESM[39m Build start
|
|
11
|
+
[32mESM[39m [1mdist/index.js [22m[32m387.07 KB[39m
|
|
12
|
+
[32mESM[39m [1mdist/isolate-TCWTUVG4.js [22m[32m47.34 KB[39m
|
|
13
|
+
[32mESM[39m ⚡️ Build success in 225ms
|
|
14
|
+
[34mDTS[39m Build start
|
|
15
|
+
[32mDTS[39m ⚡️ Build success in 6400ms
|
|
16
|
+
[32mDTS[39m [1mdist/index.d.ts [22m[32m56.62 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @poncho-ai/harness
|
|
2
2
|
|
|
3
|
+
## 0.36.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`04ebc73`](https://github.com/cesr/poncho-ai/commit/04ebc737914ee24b6f76b42016948c372d6a52d0) Thanks [@cesr](https://github.com/cesr)! - fix: disable prepared statements in PostgreSQL driver for compatibility with transaction-mode connection poolers (Supabase, PgBouncer)
|
|
8
|
+
|
|
9
|
+
## 0.36.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @poncho-ai/sdk@1.8.1
|
|
15
|
+
|
|
3
16
|
## 0.36.0
|
|
4
17
|
|
|
5
18
|
### Minor Changes
|
package/dist/index.js
CHANGED
|
@@ -4011,7 +4011,8 @@ var PostgresEngine = class extends SqlStorageEngine {
|
|
|
4011
4011
|
const postgres = (await import("postgres")).default;
|
|
4012
4012
|
this.sql = postgres(url, {
|
|
4013
4013
|
onnotice: () => {
|
|
4014
|
-
}
|
|
4014
|
+
},
|
|
4015
|
+
prepare: false
|
|
4015
4016
|
});
|
|
4016
4017
|
}
|
|
4017
4018
|
async initialize() {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@poncho-ai/harness",
|
|
3
|
-
"version": "0.36.
|
|
3
|
+
"version": "0.36.2",
|
|
4
4
|
"description": "Agent execution runtime - conversation loop, tool dispatch, streaming",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"mustache": "^4.2.0",
|
|
35
35
|
"yaml": "^2.4.0",
|
|
36
36
|
"zod": "^3.22.0",
|
|
37
|
-
"@poncho-ai/sdk": "1.8.
|
|
37
|
+
"@poncho-ai/sdk": "1.8.1"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"esbuild": ">=0.17.0",
|