@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.
@@ -1,16 +1,16 @@
1
1
 
2
- > @poncho-ai/harness@0.36.0 build /Users/cesar/Dev/latitude/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
6
- CLI Building entry: src/index.ts
7
- CLI Using tsconfig: tsconfig.json
8
- CLI tsup v8.5.1
9
- CLI Target: es2022
10
- ESM Build start
11
- ESM dist/index.js 387.05 KB
12
- ESM dist/isolate-TCWTUVG4.js 47.34 KB
13
- ESM ⚡️ Build success in 43ms
14
- DTS Build start
15
- DTS ⚡️ Build success in 1930ms
16
- DTS dist/index.d.ts 56.62 KB
6
+ CLI Building entry: src/index.ts
7
+ CLI Using tsconfig: tsconfig.json
8
+ CLI tsup v8.5.1
9
+ CLI Target: es2022
10
+ ESM Build start
11
+ ESM dist/index.js 387.07 KB
12
+ ESM dist/isolate-TCWTUVG4.js 47.34 KB
13
+ ESM ⚡️ Build success in 225ms
14
+ DTS Build start
15
+ DTS ⚡️ Build success in 6400ms
16
+ DTS dist/index.d.ts 56.62 KB
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.0",
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.0"
37
+ "@poncho-ai/sdk": "1.8.1"
38
38
  },
39
39
  "peerDependencies": {
40
40
  "esbuild": ">=0.17.0",
@@ -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
 
@@ -1,6 +0,0 @@
1
-
2
- > @poncho-ai/harness@0.11.2 lint /Users/cesar/Dev/latitude/poncho-ai/packages/harness
3
- > eslint src/
4
-
5
- sh: eslint: command not found
6
-  ELIFECYCLE  Command failed.