@camunda8/sdk 8.5.2 → 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 +7 -0
- package/README.md +1 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
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
|
+
|
|
1
8
|
## [8.5.2](https://github.com/camunda/camunda-8-js-sdk/compare/v8.5.1...v8.5.2) (2024-05-07)
|
|
2
9
|
|
|
3
10
|
|
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
|
-
|
|
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
|
|