Skip to content

Commit f4a1127

Browse files
committed
Merge branch 'release/0.4.0'
2 parents 6e5f8cf + 31f634f commit f4a1127

File tree

9 files changed

+38
-25
lines changed

9 files changed

+38
-25
lines changed

.github/workflows/development.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Development branches
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches:

.github/workflows/master.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Produces and releases artifacts
22

3+
permissions:
4+
contents: read
5+
packages: write
6+
37
on:
48
push:
59
branches:
@@ -41,10 +45,12 @@ jobs:
4145

4246
# Publish release
4347
- name: Deploy a new release version to Maven Central
44-
run: ./mvnw clean deploy -B -ntp -DskipTests -DskipExamples -Prelease -Dgpg.keyname="${{ secrets.GPG_KEYNAME }}" -Dgpg.passphrase="${{ secrets.GPG_PASSPHRASE }}"
48+
run: ./mvnw clean deploy -B -ntp -DskipTests -DskipExamples -Prelease -Dgpg.keyname="${{ secrets.GPG_KEYNAME }}"
4549
env:
4650
OSS_CENTRAL_USERNAME: ${{ secrets.SONATYPE_USERNAME }}
4751
OSS_CENTRAL_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
52+
MAVEN_GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
53+
4854

4955
# - name: Upload coverage information
5056
# uses: codecov/codecov-action@v2

.github/workflows/release-notes.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
# Trigger the workflow on milestone events
1+
name: Milestone Closure
2+
3+
permissions:
4+
contents: write
5+
26
on:
37
milestone:
48
types: [closed]
5-
name: Milestone Closure
9+
610
jobs:
711
create-release-notes:
812
runs-on: ubuntu-latest

examples/camunda7-remote-starter-native/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
<parent>
66
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
77
<artifactId>process-engine-worker-examples</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.4.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

1212
<artifactId>process-engine-worker-example-camunda7-remote-starter-native</artifactId>
1313
<description>Example: Transactional behavior of external task client using C7 external task client</description>
1414

1515
<properties>
16-
<camunda.version>7.22.0</camunda.version>
16+
<camunda.version>7.23.0</camunda.version>
1717
</properties>
1818

1919
<dependencyManagement>
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>org.springdoc</groupId>
4646
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
47-
<version>2.8.6</version>
47+
<version>2.8.8</version>
4848
</dependency>
4949

5050
<!-- Native Camunda -->

examples/order-fulfillment/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
77
<artifactId>process-engine-worker-examples</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.4.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>org.springdoc</groupId>
6060
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
61-
<version>2.8.6</version>
61+
<version>2.8.8</version>
6262
</dependency>
6363

6464

@@ -80,27 +80,27 @@
8080
<dependency>
8181
<groupId>org.camunda.bpm.springboot</groupId>
8282
<artifactId>camunda-bpm-spring-boot-starter-webapp</artifactId>
83-
<version>7.22.0</version>
83+
<version>7.23.0</version>
8484
</dependency>
8585
<dependency>
8686
<groupId>org.camunda.bpm</groupId>
8787
<artifactId>camunda-engine-plugin-spin</artifactId>
88-
<version>7.22.0</version>
88+
<version>7.23.0</version>
8989
</dependency>
9090
<dependency>
9191
<groupId>org.camunda.spin</groupId>
9292
<artifactId>camunda-spin-core</artifactId>
93-
<version>7.22.0</version>
93+
<version>7.23.0</version>
9494
</dependency>
9595
<dependency>
9696
<groupId>org.camunda.spin</groupId>
9797
<artifactId>camunda-spin-dataformat-json-jackson</artifactId>
98-
<version>7.22.0</version>
98+
<version>7.23.0</version>
9999
</dependency>
100100
<dependency>
101101
<groupId>io.holunda</groupId>
102102
<artifactId>camunda-platform-7-autologin</artifactId>
103-
<version>0.1.1</version>
103+
<version>0.1.3</version>
104104
<exclusions>
105105
<!-- FIXME remove if https://github.com/bpm-crafters/process-engine-api/issues/171 is resolved -->
106106
<exclusion>
@@ -119,12 +119,12 @@
119119
<dependency>
120120
<groupId>io.camunda</groupId>
121121
<artifactId>spring-boot-starter-camunda-sdk</artifactId>
122-
<version>8.6.12</version>
122+
<version>8.7.2</version>
123123
</dependency>
124124
<dependency>
125125
<groupId>io.camunda</groupId>
126126
<artifactId>camunda-tasklist-client-java</artifactId>
127-
<version>8.6.8</version>
127+
<version>8.7.1</version>
128128
</dependency>
129129

130130
</dependencies>

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
77
<artifactId>process-engine-worker-root</artifactId>
8-
<version>0.3.0</version>
8+
<version>0.4.0</version>
99
<relativePath>../pom.xml</relativePath>
1010
</parent>
1111

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@
55
<parent>
66
<groupId>dev.bpm-crafters.maven.parent</groupId>
77
<artifactId>maven-parent</artifactId>
8-
<version>2025.04.1</version>
8+
<version>2025.05.1</version>
99
<relativePath/>
1010
</parent>
1111

1212
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
1313
<artifactId>process-engine-worker-root</artifactId>
14-
<version>0.3.0</version>
14+
<version>0.4.0</version>
1515
<name>${project.artifactId}</name>
1616
<description>Process Engine Worker</description>
1717
<url>https://github.com/bpm-crafters/process-engine-worker/</url>
1818
<packaging>pom</packaging>
1919

2020
<properties>
21-
<spring-boot.version>3.4.4</spring-boot.version>
21+
<spring-boot.version>3.4.5</spring-boot.version>
2222
<process-engine-api.version>1.1</process-engine-api.version>
23-
<process-engine-adapters-c7.version>2025.04.2</process-engine-adapters-c7.version>
24-
<process-engine-adapters-c8.version>2025.04.1</process-engine-adapters-c8.version>
23+
<process-engine-adapters-c7.version>2025.05.1</process-engine-adapters-c7.version>
24+
<process-engine-adapters-c8.version>2025.05.1</process-engine-adapters-c8.version>
2525
<!-- TEST -->
2626
<mockito.version>5.4.0</mockito.version>
2727
<assertj.version>3.27.3</assertj.version>

spring-boot-starter/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>dev.bpm-crafters.process-engine-worker</groupId>
66
<artifactId>process-engine-worker-root</artifactId>
7-
<version>0.3.0</version>
7+
<version>0.4.0</version>
88
</parent>
99

1010
<artifactId>process-engine-worker-spring-boot-starter</artifactId>
@@ -111,13 +111,13 @@
111111
<dependency>
112112
<groupId>org.camunda.bpm.springboot</groupId>
113113
<artifactId>camunda-bpm-spring-boot-starter-external-task-client</artifactId>
114-
<version>7.22.0</version>
114+
<version>7.23.0</version>
115115
<scope>test</scope>
116116
</dependency>
117117
<dependency>
118118
<groupId>org.camunda.community.rest</groupId>
119119
<artifactId>camunda-platform-7-rest-client-spring-boot-starter</artifactId>
120-
<version>7.22.3</version>
120+
<version>7.23.0</version>
121121
<scope>test</scope>
122122
</dependency>
123123
</dependencies>

spring-boot-starter/src/test/kotlin/dev/bpmcrafters/processengine/worker/itest/camunda7/external/AbstractTransactionalBehaviorTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ abstract class AbstractTransactionalBehaviorTest {
2525

2626
@Container
2727
@JvmStatic
28-
val camundaContainer = Camunda7RunTestContainer("run-7.22.0")
28+
val camundaContainer = Camunda7RunTestContainer("run-7.23.0")
2929

3030
@Container
3131
@JvmStatic

0 commit comments

Comments
 (0)