Skip to content

Commit 7179201

Browse files
authored
Merge pull request #169 from xdev-software/develop
Release
2 parents b8a020d + 76436e1 commit 7179201

File tree

16 files changed

+87
-136
lines changed

16 files changed

+87
-136
lines changed

.github/workflows/broken-links.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
timeout-minutes: 15
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717

1818
- run: mv .github/.lycheeignore .lycheeignore
1919

2020
- name: Link Checker
2121
id: lychee
22-
uses: lycheeverse/lychee-action@82202e5e9c2f4ef1a55a3d02563e1cb6041e5332 # v2
22+
uses: lycheeverse/lychee-action@5c4ee84814c983aa7164eaee476f014e53ff3963 # v2
2323
with:
2424
fail: false # Don't fail on broken links, create an issue instead
2525

.github/workflows/check-build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ on:
2020
- 'assets/**'
2121

2222
env:
23-
PRIMARY_MAVEN_MODULE: ${{ github.event.repository.name }}
2423
DEMO_MAVEN_MODULE: ${{ github.event.repository.name }}-demo
2524

2625
jobs:
@@ -35,7 +34,7 @@ jobs:
3534

3635
runs-on: ${{ matrix.os }}
3736
steps:
38-
- uses: actions/checkout@v4
37+
- uses: actions/checkout@v5
3938

4039
- name: Set up JDK
4140
uses: actions/setup-java@v4
@@ -77,7 +76,7 @@ jobs:
7776
distribution: [temurin]
7877

7978
steps:
80-
- uses: actions/checkout@v4
79+
- uses: actions/checkout@v5
8180

8281
- name: Set up JDK
8382
uses: actions/setup-java@v4
@@ -100,7 +99,7 @@ jobs:
10099
distribution: [temurin]
101100

102101
steps:
103-
- uses: actions/checkout@v4
102+
- uses: actions/checkout@v5
104103

105104
- name: Set up JDK
106105
uses: actions/setup-java@v4

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 30
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020

2121
- name: Set up JDK
2222
uses: actions/setup-java@v4
@@ -53,7 +53,7 @@ jobs:
5353
outputs:
5454
upload_url: ${{ steps.create-release.outputs.upload_url }}
5555
steps:
56-
- uses: actions/checkout@v4
56+
- uses: actions/checkout@v5
5757

5858
- name: Configure Git
5959
run: |
@@ -105,7 +105,7 @@ jobs:
105105
needs: [prepare-release]
106106
timeout-minutes: 60
107107
steps:
108-
- uses: actions/checkout@v4
108+
- uses: actions/checkout@v5
109109

110110
- name: Init Git and pull
111111
run: |
@@ -153,7 +153,7 @@ jobs:
153153
needs: [prepare-release]
154154
timeout-minutes: 15
155155
steps:
156-
- uses: actions/checkout@v4
156+
- uses: actions/checkout@v5
157157

158158
- name: Init Git and pull
159159
run: |
@@ -184,7 +184,7 @@ jobs:
184184
needs: [publish-maven]
185185
timeout-minutes: 10
186186
steps:
187-
- uses: actions/checkout@v4
187+
- uses: actions/checkout@v5
188188

189189
- name: Init Git and pull
190190
run: |

.github/workflows/sync-labels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
timeout-minutes: 10
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
sparse-checkout: .github/labels.yml
2222

.github/workflows/test-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 60
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515

1616
- name: Set up JDK
1717
uses: actions/setup-java@v4

.github/workflows/update-from-template.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
update_branch_merged_commit: ${{ steps.manage-branches.outputs.update_branch_merged_commit }}
3737
create_update_branch_merged_pr: ${{ steps.manage-branches.outputs.create_update_branch_merged_pr }}
3838
steps:
39-
- uses: actions/checkout@v4
39+
- uses: actions/checkout@v5
4040
with:
4141
# Required because otherwise there are always changes detected when executing diff/rev-list
4242
fetch-depth: 0
@@ -183,7 +183,7 @@ jobs:
183183
runs-on: ubuntu-latest
184184
timeout-minutes: 60
185185
steps:
186-
- uses: actions/checkout@v4
186+
- uses: actions/checkout@v5
187187
with:
188188
# Required because otherwise there are always changes detected when executing diff/rev-list
189189
fetch-depth: 0

.idea/checkstyle-idea.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
1+
# 2.2.1
2+
* Windows NTFS junction fix
3+
* Automatically disable it on Java 26+ as [JDK-8364277](https://bugs.openjdk.org/browse/JDK-8364277) is fixed there
4+
* Backport changes from Java 25 to ensure compatibility and get performance improvements (JEP 486)
5+
* Updated dependencies
6+
17
# 2.2.0
28
* Added an explicit option for enabling the Windows NTFS junction fix: ``useWinNTFSJunctionFixIfApplicable`` #155
39
* Enabling it also requires adding ``--add-exports java.base/sun.nio.fs=ALL-UNNAMED`` or performance will be impacted by ~20x due to non-accessible file attributes cache
4-
* This option is temporary and will be removed once the underlying JDK bug was fixed
10+
* This option is temporary and will be removed once the [underlying JDK bug](https://bugs.openjdk.org/browse/JDK-8364277) was fixed
511
* The default logger of ``AdvancedImageFromDockerFile`` now also includes ``dockerImageName`` to make it easier to distinguish between parallel builds
612

713
# 2.1.1

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
<dependency>
4747
<groupId>com.puppycrawl.tools</groupId>
4848
<artifactId>checkstyle</artifactId>
49-
<version>10.26.1</version>
49+
<version>11.0.0</version>
5050
</dependency>
5151
</dependencies>
5252
<configuration>

testcontainers-advanced-imagebuilder-dummy-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<dependency>
8383
<groupId>com.puppycrawl.tools</groupId>
8484
<artifactId>checkstyle</artifactId>
85-
<version>10.26.1</version>
85+
<version>11.0.0</version>
8686
</dependency>
8787
</dependencies>
8888
<configuration>

0 commit comments

Comments
 (0)