@checkstack/healthcheck-backend 0.13.0 → 0.13.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @checkstack/healthcheck-backend
2
2
 
3
+ ## 0.13.1
4
+
5
+ ### Patch Changes
6
+
7
+ - aa2b3aa: fix: remove arbitrary hardcoded assertions in jenkins collectors (queue-info, node-health, job-status) to prevent silent fallback assertion failures, instead properly threading transport execution errors directly to the SingleRunChartGrid UI display widget via a new `_collectorError` result payload property.
8
+ - @checkstack/satellite-backend@0.2.1
9
+
3
10
  ## 0.13.0
4
11
 
5
12
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@checkstack/healthcheck-backend",
3
- "version": "0.13.0",
3
+ "version": "0.13.1",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
@@ -410,6 +410,7 @@ async function executeHealthCheckJob(props: {
410
410
  result: {
411
411
  _collectorId: collectorEntry.collectorId,
412
412
  _assertionFailed: assertionFailed,
413
+ _collectorError: collectorError,
413
414
  ...strippedResult,
414
415
  },
415
416
  };
@@ -425,7 +426,7 @@ async function executeHealthCheckJob(props: {
425
426
  result: {
426
427
  _collectorId: collectorEntry.collectorId,
427
428
  _assertionFailed: undefined,
428
- error: errorStr,
429
+ _collectorError: errorStr,
429
430
  },
430
431
  };
431
432
  }