@poncho-ai/harness 0.20.2 → 0.20.4
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 +12 -0
- package/dist/index.js +3 -1
- package/package.json +1 -1
- package/src/harness.ts +3 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @poncho-ai/harness@0.20.
|
|
2
|
+
> @poncho-ai/harness@0.20.4 build /home/runner/work/poncho-ai/poncho-ai/packages/harness
|
|
3
3
|
> tsup src/index.ts --format esm --dts
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
[34mCLI[39m tsup v8.5.1
|
|
8
8
|
[34mCLI[39m Target: es2022
|
|
9
9
|
[34mESM[39m Build start
|
|
10
|
-
[32mESM[39m [1mdist/index.js [22m[32m199.
|
|
11
|
-
[32mESM[39m ⚡️ Build success in
|
|
10
|
+
[32mESM[39m [1mdist/index.js [22m[32m199.61 KB[39m
|
|
11
|
+
[32mESM[39m ⚡️ Build success in 134ms
|
|
12
12
|
[34mDTS[39m Build start
|
|
13
|
-
[32mDTS[39m ⚡️ Build success in
|
|
13
|
+
[32mDTS[39m ⚡️ Build success in 6692ms
|
|
14
14
|
[32mDTS[39m [1mdist/index.d.ts [22m[32m24.36 KB[39m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @poncho-ai/harness
|
|
2
2
|
|
|
3
|
+
## 0.20.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`c35f676`](https://github.com/cesr/poncho-ai/commit/c35f676cdc548a3db9212ae7909302a5b876bc40) Thanks [@cesr](https://github.com/cesr)! - Switch Latitude telemetry to use BatchSpanProcessor (default) instead of SimpleSpanProcessor. Sends all spans from a trace together in one OTLP batch, matching Latitude's expected integration pattern.
|
|
8
|
+
|
|
9
|
+
## 0.20.3
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [`28046fb`](https://github.com/cesr/poncho-ai/commit/28046fb39aea00968ac532c25db4f0d654e21876) Thanks [@cesr](https://github.com/cesr)! - Add diagnostic span processor to log telemetry span details for debugging trace export issues.
|
|
14
|
+
|
|
3
15
|
## 0.20.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -3489,7 +3489,9 @@ var AgentHarness = class {
|
|
|
3489
3489
|
},
|
|
3490
3490
|
DiagLogLevel.ERROR
|
|
3491
3491
|
);
|
|
3492
|
-
this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
|
|
3492
|
+
this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
|
|
3493
|
+
instrumentations: {}
|
|
3494
|
+
});
|
|
3493
3495
|
} else if (telemetryEnabled && latitudeBlock && (!latitudeApiKey || !latitudeProjectId)) {
|
|
3494
3496
|
const missing = [];
|
|
3495
3497
|
if (!latitudeApiKey) missing.push(`${latApiKeyEnv} env var`);
|
package/package.json
CHANGED
package/src/harness.ts
CHANGED
|
@@ -928,7 +928,9 @@ export class AgentHarness {
|
|
|
928
928
|
},
|
|
929
929
|
DiagLogLevel.ERROR,
|
|
930
930
|
);
|
|
931
|
-
this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
|
|
931
|
+
this.latitudeTelemetry = new LatitudeTelemetry(latitudeApiKey, {
|
|
932
|
+
instrumentations: {},
|
|
933
|
+
});
|
|
932
934
|
} else if (telemetryEnabled && latitudeBlock && (!latitudeApiKey || !latitudeProjectId)) {
|
|
933
935
|
const missing: string[] = [];
|
|
934
936
|
if (!latitudeApiKey) missing.push(`${latApiKeyEnv} env var`);
|