Skip to content

Commit

Permalink
Merge pull request #352 from Zelldon/ck-update-zb
Browse files Browse the repository at this point in the history
Update Zeebe dependency to 8.4
  • Loading branch information
Zelldon committed Jan 13, 2024
2 parents 49a135e + 7b2a2c9 commit 901b860
Show file tree
Hide file tree
Showing 10 changed files with 1,214 additions and 54 deletions.
37 changes: 0 additions & 37 deletions .github/workflows/analyze.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: '17'
java-version: '21'
distribution: 'adopt'
- name: Login to GitHub Container Registry
uses: docker/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- run: docker pull camunda/zeebe:8.0.4
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/[email protected]
with:
java-version: '17'
java-version: '21'
distribution: 'adopt'
- name: Build with Maven
run: mvn -B verify
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
- name: Set up JDK
uses: actions/[email protected]
with:
java-version: '17'
java-version: '21'
distribution: 'adopt'
- name: Login to GitHub Container Registry
uses: docker/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Zeebe Debug and Inspection tool

This repository contains a cli tool to inspect the internal state and log of a Zeebe partition. It is a Java (17) cli application and can be build via maven.
This repository contains a cli tool to inspect the internal state and log of a Zeebe partition. It is a Java (21) cli application and can be build via maven.
It was kicked off during the Camunda Summer Hackdays in 2020 and has been maintained and developed since then.

The following Zeebe versions are supported: [ 8.1, 8.2, 8.3, SNAPSHOT]
Expand Down
3 changes: 1 addition & 2 deletions backend/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<properties>
<exec-maven-plugin.version>1.6.0</exec-maven-plugin.version>
<kotlin.code.style>official</kotlin.code.style>
<kotlin.compiler.jvmTarget>17</kotlin.compiler.jvmTarget>
<kotlin.serialization.version>1.6.2</kotlin.serialization.version>
<kotlin.version>1.9.22</kotlin.version>
<maven-compiler-plugin.version>3.12.1</maven-compiler-plugin.version>
Expand All @@ -58,7 +57,7 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin.version}</version>
<configuration>
<release>17</release>
<release>${maven.compiler.release}</release>
</configuration>
</plugin>
<plugin>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ public void shouldSerializeRejectionToJson() throws JsonProcessingException {
{"position":62,"sourceRecordPosition":61,"key":-1,"recordType":"COMMAND_REJECTION",
"valueType":"PROCESS_INSTANCE_CREATION","intent":"CREATE","rejectionType":"NOT_FOUND",
"rejectionReason":"Expected to find process definition with process ID 'nonExisting', but none found",
"requestId":-1,"requestStreamId":-2147483648,"protocolVersion":4,"brokerVersion":"8.4.0",
"requestId":-1,"requestStreamId":-2147483648,"protocolVersion":4,"brokerVersion":"8.5.0",
"recordVersion":1,
"recordValue":{"bpmnProcessId":"nonExisting","processDefinitionKey":0,"processInstanceKey":-1,
"version":-1,"variables":"gA==","fetchVariables":[],
Expand Down Expand Up @@ -310,7 +310,7 @@ public void shouldSerializeRecordToJson() throws JsonProcessingException {
final var expectedJson = OBJECT_MAPPER.readTree("""
{"position":12,"sourceRecordPosition":5,"key":2251799813685252,"recordType":"EVENT",
"valueType":"PROCESS_INSTANCE","intent":"ELEMENT_ACTIVATED","requestId":-1,
"requestStreamId":-2147483648,"protocolVersion":4,"brokerVersion":"8.4.0","recordVersion":1,
"requestStreamId":-2147483648,"protocolVersion":4,"brokerVersion":"8.5.0","recordVersion":1,
"recordValue":{"bpmnElementType":"PROCESS","elementId":"process","bpmnProcessId":"process",
"version":1,"processDefinitionKey":2251799813685249,"processInstanceKey":2251799813685252,
"flowScopeKey":-1,"bpmnEventType":"UNSPECIFIED","parentProcessInstanceKey":-1,
Expand Down
Loading

0 comments on commit 901b860

Please sign in to comment.