@camunda8/sdk 8.8.7 → 8.9.0-alpha.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.
- package/CHANGELOG.md +11 -5
- package/package.json +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
# [8.9.0-alpha.2](https://github.com/camunda/camunda-8-js-sdk/compare/v8.9.0-alpha.1...v8.9.0-alpha.2) (2026-03-07)
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* export types. fixes Missing types in export ([
|
|
6
|
+
* export types. fixes Missing types in export ([bda4b97](https://github.com/camunda/camunda-8-js-sdk/commit/bda4b9705da03f63c9d9eed04a5dc99e5bda1ec1)), closes [#570](https://github.com/camunda/camunda-8-js-sdk/issues/570)
|
|
7
|
+
* implement copilot suggestions ([fb25ca5](https://github.com/camunda/camunda-8-js-sdk/commit/fb25ca54025fdbdfe33fbd9b62b131ecf5714257))
|
|
7
8
|
|
|
8
|
-
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* add new compatibility test workflow ([e8074c4](https://github.com/camunda/camunda-8-js-sdk/commit/e8074c42b47d05234a9cc37e7ac5d96b8b3efdd3))
|
|
13
|
+
|
|
14
|
+
# [8.9.0-alpha.1](https://github.com/camunda/camunda-8-js-sdk/compare/v8.8.5...v8.9.0-alpha.1) (2026-03-05)
|
|
9
15
|
|
|
10
16
|
|
|
11
17
|
### Features
|
|
12
18
|
|
|
13
|
-
* implement sidecar polling in streamJobs ([
|
|
14
|
-
* streamWorker jitter startup and subscribe -> backfill ([
|
|
19
|
+
* implement sidecar polling in streamJobs ([2fff9bb](https://github.com/camunda/camunda-8-js-sdk/commit/2fff9bb377c5f7914b3930f96db1c28641239309))
|
|
20
|
+
* streamWorker jitter startup and subscribe -> backfill ([408d254](https://github.com/camunda/camunda-8-js-sdk/commit/408d254a29e0fdc82d107532e4580226ad846c00))
|
|
15
21
|
|
|
16
22
|
## [8.8.5](https://github.com/camunda/camunda-8-js-sdk/compare/v8.8.4...v8.8.5) (2026-02-11)
|
|
17
23
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@camunda8/sdk",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.9.0-alpha.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
"sm:st:stop": "docker compose -f docker/docker-compose.yaml -f docker/docker-compose-modeler.yaml down && docker/cleanup-volumes.sh",
|
|
17
17
|
"sm:stop:8.8": "docker compose -f docker/docker-compose-8.8.yaml down",
|
|
18
18
|
"sm:start:8.8": "docker compose -f docker/docker-compose-8.8.yaml up -d",
|
|
19
|
+
"sm:start:8.9": "docker compose -f docker/8.9/docker-compose.yaml up -d",
|
|
20
|
+
"sm:stop:8.9": "docker compose -f docker/8.9/docker-compose.yaml down",
|
|
19
21
|
"test": "TEST_DEPLOYMENT=unit-test CAMUNDA_UNIT_TEST=true vitest run --sequence.concurrent=false",
|
|
20
22
|
"test:8.8:sm": "TEST_VERSION=8.8 TEST_DEPLOYMENT=self-managed TEST_TENANCY=single-tenant TEST_SECURITY=unsecured vitest run --sequence.concurrent=false",
|
|
21
23
|
"test:8.8:saas": "TEST_VERSION=8.8 TEST_DEPLOYMENT=saas TEST_TENANCY=single-tenant TEST_SECURITY=secured vitest run --sequence.concurrent=false --sequence.setupFiles=list",
|