diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 2285ac28..545f123d 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -29,7 +29,7 @@ jobs: uses: actions/setup-java@v3.0.0 with: distribution: temurin - java-version: 11 + java-version: 17 - name: Build id: build @@ -66,7 +66,7 @@ jobs: uses: actions/setup-java@v3.0.0 with: distribution: temurin - java-version: 11 # Change to java 8 when tests are properly separated (https://github.com/camunda-cloud/zeebe-process-test/issues/195) + java-version: 17 # Change to java 8 when tests are properly separated (https://github.com/camunda-cloud/zeebe-process-test/issues/195) - name: Package run: mvn -B -U clean package -DskipTests diff --git a/.github/workflows/deploy-artifact.yml b/.github/workflows/deploy-artifact.yml index 8cda2071..a70c4a34 100644 --- a/.github/workflows/deploy-artifact.yml +++ b/.github/workflows/deploy-artifact.yml @@ -52,7 +52,7 @@ jobs: uses: actions/setup-java@v3.0.0 with: distribution: temurin - java-version: 11 + java-version: 17 - name: Build jar run: | diff --git a/filters/src/main/java/io/camunda/zeebe/process/test/filters/logger/RecordStreamLogger.java b/filters/src/main/java/io/camunda/zeebe/process/test/filters/logger/RecordStreamLogger.java index 53d7eb8f..1972bd8c 100644 --- a/filters/src/main/java/io/camunda/zeebe/process/test/filters/logger/RecordStreamLogger.java +++ b/filters/src/main/java/io/camunda/zeebe/process/test/filters/logger/RecordStreamLogger.java @@ -66,6 +66,10 @@ public RecordStreamLogger(final RecordStreamSource recordStreamSource) { valueTypeLoggers.put(ValueType.DEPLOYMENT_DISTRIBUTION, record -> ""); valueTypeLoggers.put(ValueType.SBE_UNKNOWN, record -> ""); valueTypeLoggers.put(ValueType.NULL_VAL, record -> ""); + + // DMN will not be part of the initial 1.4 release + valueTypeLoggers.put(ValueType.DECISION, record -> ""); + valueTypeLoggers.put(ValueType.DECISION_REQUIREMENTS, record -> ""); } public void log() { diff --git a/pom.xml b/pom.xml index 306e7fc7..a4383805 100644 --- a/pom.xml +++ b/pom.xml @@ -39,6 +39,7 @@ 4.1.1 2.11.0 0.6.0 + 1.14.1 3.0.2 31.0.1-jre 2.9.0 @@ -57,7 +58,7 @@ 1.30 5.3.16 1.16.3 - 1.3.4 + 1.4.0-alpha1 https://app.camunda.com/nexus/content/repositories/zeebe-io camunda-nexus @@ -258,6 +259,12 @@ value ${dependency.immutables.version} + + + org.camunda.feel + feel-engine + ${dependency.feel.version} +