Skip to content
This repository has been archived by the owner on Apr 8, 2024. It is now read-only.

Commit

Permalink
Update for 8.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jwulf committed Nov 1, 2023
1 parent 102116f commit 5cbe54c
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- 9200:9200
- 9300:9300
zeebe:
image: camunda/zeebe:8.2.3
image: camunda/zeebe:8.3.0
env:
JAVA_TOOL_OPTIONS: "-Xms512m -Xmx512m"
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME: io.camunda.zeebe.exporter.ElasticsearchExporter
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tag-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- 9200:9200
- 9300:9300
zeebe:
image: camunda/zeebe:8.2.3
image: camunda/zeebe:8.3.0
env:
JAVA_TOOL_OPTIONS: "-Xms512m -Xmx512m"
ZEEBE_BROKER_EXPORTERS_ELASTICSEARCH_CLASSNAME: io.camunda.zeebe.exporter.ElasticsearchExporter
Expand Down
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1166,6 +1166,23 @@ async function deploy() {
}
```
### Deploy Form
From 8.3.1, you can deploy a form to the Zeebe broker:
```javascript
async function deploy() {
const zbc = new ZBClient()
const form = fs.readFileSync(
'./src/__tests__/testdata/form_1.form'
)
const result = await zbc.deployResource({
form,
name: 'form_1.form',
})
}
```
<a name = "start-process"></a>
### Start a Process Instance
Expand Down

0 comments on commit 5cbe54c

Please sign in to comment.