@poncho-ai/harness 0.36.1 → 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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @poncho-ai/harness@0.36.1 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
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
@@ -8,9 +8,9 @@
8
8
  CLI tsup v8.5.1
9
9
  CLI Target: es2022
10
10
  ESM Build start
11
+ ESM dist/index.js 387.07 KB
11
12
  ESM dist/isolate-TCWTUVG4.js 47.34 KB
12
- ESM dist/index.js 387.05 KB
13
- ESM ⚡️ Build success in 209ms
13
+ ESM ⚡️ Build success in 225ms
14
14
  DTS Build start
15
- DTS ⚡️ Build success in 6381ms
15
+ DTS ⚡️ Build success in 6400ms
16
16
  DTS dist/index.d.ts 56.62 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.36.1
4
10
 
5
11
  ### Patch 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.1",
3
+ "version": "0.36.2",
4
4
  "description": "Agent execution runtime - conversation loop, tool dispatch, streaming",
5
5
  "repository": {
6
6
  "type": "git",
@@ -56,6 +56,7 @@ export class PostgresEngine extends SqlStorageEngine {
56
56
  const postgres = (await import("postgres")).default;
57
57
  this.sql = postgres(url, {
58
58
  onnotice: () => {},
59
+ prepare: false,
59
60
  });
60
61
  }
61
62