@camunda8/orchestration-cluster-api 10.0.0-alpha.21 → 10.0.0-alpha.23
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 +17 -0
- package/dist/{chunk-7SBI6PGB.js → chunk-JF3QWFWZ.js} +11 -2
- package/dist/{chunk-7SBI6PGB.js.map → chunk-JF3QWFWZ.js.map} +1 -1
- package/dist/fp/index.cjs +10 -1
- package/dist/fp/index.cjs.map +1 -1
- package/dist/fp/index.js +1 -1
- package/dist/index.cjs +10 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# [10.0.0-alpha.23](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.22...v10.0.0-alpha.23) (2026-08-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** align the agent verify gate with the CI gates ([957083c](https://github.com/camunda/orchestration-cluster-api-js/commit/957083c96e14ad9012a5514f59ef0e147a1a4eba))
|
|
7
|
+
* **ci:** fail closed when the verify gate is empty ([35c6f05](https://github.com/camunda/orchestration-cluster-api-js/commit/35c6f059b021a4f688795e21994c9d9bac18da7c))
|
|
8
|
+
* **ci:** stop interpolating the issue body into an unquoted heredoc ([631ee22](https://github.com/camunda/orchestration-cluster-api-js/commit/631ee22057402027b543fe91904c561f2826b303))
|
|
9
|
+
* **ci:** tell the agent which commands actually gate its work ([de6e466](https://github.com/camunda/orchestration-cluster-api-js/commit/de6e4661794c6e3e2d80a7cf72efba76098c13f2))
|
|
10
|
+
|
|
11
|
+
# [10.0.0-alpha.22](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.21...v10.0.0-alpha.22) (2026-08-02)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* **runtime:** reject transport errors instead of silently swallowing them ([#406](https://github.com/camunda/orchestration-cluster-api-js/issues/406)) ([3f84418](https://github.com/camunda/orchestration-cluster-api-js/commit/3f844183442649cfe2a8b8673e3c819b81337553)), closes [#405](https://github.com/camunda/orchestration-cluster-api-js/issues/405)
|
|
17
|
+
|
|
1
18
|
# [10.0.0-alpha.21](https://github.com/camunda/orchestration-cluster-api-js/compare/v10.0.0-alpha.20...v10.0.0-alpha.21) (2026-08-02)
|
|
2
19
|
|
|
3
20
|
|
|
@@ -4847,7 +4847,7 @@ function installAuthInterceptor(client2, getStrategy, getAuthHeaders) {
|
|
|
4847
4847
|
}
|
|
4848
4848
|
|
|
4849
4849
|
// src/runtime/version.ts
|
|
4850
|
-
var packageVersion = "10.0.0-alpha.
|
|
4850
|
+
var packageVersion = "10.0.0-alpha.23";
|
|
4851
4851
|
|
|
4852
4852
|
// src/runtime/supportLogger.ts
|
|
4853
4853
|
var NoopSupportLogger = class {
|
|
@@ -6507,6 +6507,15 @@ function evaluateSdkResponse(raw, opts) {
|
|
|
6507
6507
|
if (!raw || typeof raw !== "object") return raw;
|
|
6508
6508
|
const status = raw.status || raw.response?.status || raw.error?.status;
|
|
6509
6509
|
if (!status) {
|
|
6510
|
+
if (raw.error !== void 0 && raw.data === void 0) {
|
|
6511
|
+
const e = raw.error;
|
|
6512
|
+
if (e instanceof Error) throw e;
|
|
6513
|
+
const err = new Error(String(e?.message ?? e ?? `transport error [${opts.opId}]`));
|
|
6514
|
+
err.name = "TransportSdkError";
|
|
6515
|
+
err.operationId = opts.opId;
|
|
6516
|
+
err.cause = e;
|
|
6517
|
+
throw err;
|
|
6518
|
+
}
|
|
6510
6519
|
return raw.data !== void 0 ? raw.data : raw;
|
|
6511
6520
|
}
|
|
6512
6521
|
const isCandidate = status === 429 || status === 503 || status === 500;
|
|
@@ -19187,4 +19196,4 @@ export {
|
|
|
19187
19196
|
withTimeoutTE,
|
|
19188
19197
|
eventuallyTE
|
|
19189
19198
|
};
|
|
19190
|
-
//# sourceMappingURL=chunk-
|
|
19199
|
+
//# sourceMappingURL=chunk-JF3QWFWZ.js.map
|