@camunda8/sdk 8.5.2-alpha.1 → 8.5.3

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,3 +1,27 @@
1
+ ## [8.5.3](https://github.com/camunda/camunda-8-js-sdk/compare/v8.5.2...v8.5.3) (2024-05-08)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **repo:** fix example in README ([#154](https://github.com/camunda/camunda-8-js-sdk/issues/154)) ([#155](https://github.com/camunda/camunda-8-js-sdk/issues/155)) ([4fb36d7](https://github.com/camunda/camunda-8-js-sdk/commit/4fb36d726dc4dc91ed018955eb4548a5f3fe4bff)), closes [#153](https://github.com/camunda/camunda-8-js-sdk/issues/153)
7
+
8
+ ## [8.5.2](https://github.com/camunda/camunda-8-js-sdk/compare/v8.5.1...v8.5.2) (2024-05-07)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * **zeebe:** waitForReady deadline not miliseconds, but date ([#148](https://github.com/camunda/camunda-8-js-sdk/issues/148)) ([12db206](https://github.com/camunda/camunda-8-js-sdk/commit/12db206b71a85c8a68a838488da1572efa416d67))
14
+
15
+
16
+ ### Features
17
+
18
+ * **repo:** add CAMUNDA_CUSTOM_ROOT_CERT_STRING parameter ([7451a66](https://github.com/camunda/camunda-8-js-sdk/commit/7451a669df42930405aa7b155a3f9e00be30ab55)), closes [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#146](https://github.com/camunda/camunda-8-js-sdk/issues/146) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142) [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142) [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142) [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142) [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142) [#151](https://github.com/camunda/camunda-8-js-sdk/issues/151) [#150](https://github.com/camunda/camunda-8-js-sdk/issues/150) [#142](https://github.com/camunda/camunda-8-js-sdk/issues/142)
19
+
20
+
21
+ ### Reverts
22
+
23
+ * Revert "fix(zeebe): waitForReady deadline not miliseconds, but date (#148)" (#149) ([f8c0c7d](https://github.com/camunda/camunda-8-js-sdk/commit/f8c0c7d6131b20036f0b400ddca6eb85939100d2)), closes [#148](https://github.com/camunda/camunda-8-js-sdk/issues/148) [#149](https://github.com/camunda/camunda-8-js-sdk/issues/149)
24
+
1
25
  ## [8.5.2-alpha.1](https://github.com/camunda/camunda-8-js-sdk/compare/v8.5.1...v8.5.2-alpha.1) (2024-05-07)
2
26
 
3
27
 
package/README.md CHANGED
@@ -104,9 +104,7 @@ Here is an example of specifying a different cache directory via the constructor
104
104
  import { Camunda8 } from '@camunda8/sdk'
105
105
 
106
106
  const c8 = new Camunda8({
107
- config: {
108
- CAMUNDA_TOKEN_CACHE_DIR: '/tmp/cache',
109
- },
107
+ CAMUNDA_TOKEN_CACHE_DIR: '/tmp/cache',
110
108
  })
111
109
  ```
112
110
 
@@ -149,7 +147,6 @@ Here is an example of doing this via the constructor, rather than via the enviro
149
147
  import { Camunda8 } from '@camunda8/sdk'
150
148
 
151
149
  const c8 = new Camunda8({
152
- config: {
153
150
  ZEEBE_ADDRESS: 'localhost:26500'
154
151
  ZEEBE_CLIENT_ID: 'zeebe'
155
152
  ZEEBE_CLIENT_SECRET: 'zecret'
@@ -160,7 +157,6 @@ const c8 = new Camunda8({
160
157
  CAMUNDA_MODELER_BASE_URL: 'http://localhost:8070/api'
161
158
  CAMUNDA_TENANT_ID: '' // We can override values in the env by passing an empty string value
162
159
  CAMUNDA_SECURE_CONNECTION: false
163
- }
164
160
  })
165
161
  ```
166
162
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@camunda8/sdk",
3
- "version": "8.5.2-alpha.1",
3
+ "version": "8.5.3",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {