Skip to content

Commit 49ee895

Browse files
committed
Merge branch 'release/4.1.5'
2 parents 4f20ca6 + d5af367 commit 49ee895

File tree

49 files changed

+268
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+268
-128
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout code
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Set up JDK
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v4
2020
with:
2121
distribution: 'zulu'
2222
java-version: 17
@@ -35,7 +35,7 @@ jobs:
3535
run: ./mvnw integration-test failsafe:verify -Pitest -B -T4
3636

3737
- name: Upload coverage information
38-
uses: codecov/codecov-action@v3
38+
uses: codecov/codecov-action@v4
3939
with:
4040
token: "${{ secrets.CODECOV_TOKEN }}"
4141

.github/workflows/docs.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,6 @@ jobs:
2525
# install pip=>20.1 to use "pip cache dir"
2626
python3 -m pip install --upgrade pip
2727
28-
# - name: Get pip cache dir
29-
# id: pip-cache
30-
# run: echo "::set-output name=dir::$(pip cache dir)"
31-
#
32-
# - name: Cache dependencies
33-
# uses: actions/cache@v3
34-
# with:
35-
# path: ${{ steps.pip-cache.outputs.dir }}
36-
# key: ${{ runner.os }}-pip-${{ hashFiles('./docs/requirements.txt') }}
37-
# restore-keys: |
38-
# ${{ runner.os }}-pip-
39-
4028
- name: Install dependencies
4129
run: python3 -m pip install -r ./docs/requirements.txt
4230

.github/workflows/release-notes.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
steps:
1010
- name: Checkout code
1111
uses: actions/checkout@master
12+
1213
- name: Create Release Notes Markdown
1314
uses: docker://decathlon/release-notes-generator-action:3.1.5
1415
env:
@@ -21,6 +22,7 @@ jobs:
2122
echo "RELEASE_NOTES_FILE=$RELEASE_NOTES_FILE" >> $GITHUB_ENV
2223
VERSION=$(echo ${{ github.event.milestone.title }} | cut -d' ' -f2)
2324
echo "VERSION=$VERSION" >> $GITHUB_ENV
25+
2426
- name: Create a Draft Release Notes on GitHub
2527
id: create_release
2628
uses: actions/create-release@v1

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
# Setup JDK and Maven
1818
- name: Set up JDK 17
19-
uses: actions/setup-java@v3
19+
uses: actions/setup-java@v4
2020
with:
2121
java-version: 17
2222
distribution: 'zulu'
@@ -51,7 +51,7 @@ jobs:
5151
OSS_CENTRAL_PASSWORD: "${{ secrets.SONATYPE_PASSWORD }}"
5252

5353
- name: Upload coverage information to CodeCov
54-
uses: codecov/codecov-action@v3
54+
uses: codecov/codecov-action@v4
5555
with:
5656
token: "${{ secrets.CODECOV_TOKEN }}"
5757

bom/datapool-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-parent</artifactId>
9-
<version>4.1.4</version>
9+
<version>4.1.5</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

bom/parent/pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-root</artifactId>
9-
<version>4.1.4</version>
9+
<version>4.1.5</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

@@ -19,14 +19,14 @@
1919

2020
<properties>
2121
<springboot.version>3.1.5</springboot.version>
22-
<camunda-commons-typed-values.version>7.20.0</camunda-commons-typed-values.version>
22+
<camunda-commons-typed-values.version>7.21.0</camunda-commons-typed-values.version>
2323

2424
<axon-bom.version>4.9.4</axon-bom.version>
2525
<axon-kotlin.version>4.9.0</axon-kotlin.version>
26-
<axon-gateway-extension.version>2.0.0</axon-gateway-extension.version>
26+
<axon-gateway-extension.version>2.1.0</axon-gateway-extension.version>
2727

28-
<awaitility.version>4.2.0</awaitility.version>
29-
<mockito-kotlin.version>5.2.1</mockito-kotlin.version>
28+
<awaitility.version>4.2.1</awaitility.version>
29+
<mockito-kotlin.version>5.3.1</mockito-kotlin.version>
3030
<jgiven.version>1.3.1</jgiven.version>
3131
<jgiven-kotlin.version>1.3.1.0</jgiven-kotlin.version>
3232

@@ -311,7 +311,7 @@
311311
<plugin>
312312
<groupId>org.jacoco</groupId>
313313
<artifactId>jacoco-maven-plugin</artifactId>
314-
<version>0.8.11</version>
314+
<version>0.8.12</version>
315315
<executions>
316316
<execution>
317317
<id>pre-unit-test</id>
@@ -372,7 +372,7 @@
372372
<!-- java compiler -->
373373
<groupId>org.apache.maven.plugins</groupId>
374374
<artifactId>maven-compiler-plugin</artifactId>
375-
<version>3.12.1</version>
375+
<version>3.13.0</version>
376376
<configuration>
377377
<encoding>UTF-8</encoding>
378378
<source>${java.version}</source>
@@ -420,7 +420,7 @@
420420
<!-- jar -->
421421
<groupId>org.apache.maven.plugins</groupId>
422422
<artifactId>maven-jar-plugin</artifactId>
423-
<version>3.3.0</version>
423+
<version>3.4.1</version>
424424
<configuration>
425425
<archive>
426426
<manifest>
@@ -565,7 +565,7 @@
565565
<plugin>
566566
<groupId>org.jetbrains.dokka</groupId>
567567
<artifactId>dokka-maven-plugin</artifactId>
568-
<version>1.9.10</version>
568+
<version>1.9.20</version>
569569
<executions>
570570
<execution>
571571
<id>attach-javadocs</id>
@@ -581,7 +581,7 @@
581581
<plugin>
582582
<groupId>org.codehaus.mojo</groupId>
583583
<artifactId>build-helper-maven-plugin</artifactId>
584-
<version>3.5.0</version>
584+
<version>3.6.0</version>
585585
<executions>
586586
<execution>
587587
<phase>generate-sources</phase>
@@ -601,7 +601,7 @@
601601
<plugin>
602602
<groupId>org.apache.maven.plugins</groupId>
603603
<artifactId>maven-source-plugin</artifactId>
604-
<version>3.3.0</version>
604+
<version>3.3.1</version>
605605
<executions>
606606
<execution>
607607
<id>attach-sources</id>
@@ -620,7 +620,7 @@
620620
<!-- Install -->
621621
<plugin>
622622
<artifactId>maven-install-plugin</artifactId>
623-
<version>3.1.1</version>
623+
<version>3.1.2</version>
624624
</plugin>
625625
</plugins>
626626
</pluginManagement>

bom/taskpool-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-parent</artifactId>
9-
<version>4.1.4</version>
9+
<version>4.1.5</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

core/bus-jackson/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-parent</artifactId>
9-
<version>4.1.4</version>
9+
<version>4.1.5</version>
1010
<relativePath>../../bom/parent/pom.xml</relativePath>
1111
</parent>
1212

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package io.holunda.polyflow.bus.jackson
2+
3+
import com.fasterxml.jackson.annotation.JsonAutoDetect
4+
5+
/**
6+
* Allow serialization of all fields. (Also private fields!)
7+
*/
8+
@JsonAutoDetect(fieldVisibility = JsonAutoDetect.Visibility.ANY)
9+
class JsonAutoDetectAnyVisibility

core/datapool/datapool-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-datapool-parent</artifactId>
9-
<version>4.1.4</version>
9+
<version>4.1.5</version>
1010
</parent>
1111

1212
<artifactId>polyflow-datapool-api</artifactId>

0 commit comments

Comments
 (0)