Skip to content

Commit 47bbbe0

Browse files
committed
Merge branch 'release/1.2.10'
2 parents 81b1938 + b8e51d7 commit 47bbbe0

File tree

6 files changed

+33
-17
lines changed

6 files changed

+33
-17
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ updates:
1515
- "org.apache.maven.plugins:*"
1616
- "org.jacoco:jacoco-maven-plugin"
1717
- "org.owasp:dependency-check-maven"
18-
- "org.sonatype.plugins:nexus-staging-maven-plugin"
18+
- "org.sonatype.central:central-publishing-maven-plugin"
1919
java-production-dependencies:
2020
patterns:
2121
- "*"
2222
exclude-patterns:
2323
- "org.apache.maven.plugins:*"
2424
- "org.jacoco:jacoco-maven-plugin"
2525
- "org.owasp:dependency-check-maven"
26-
- "org.sonatype.plugins:nexus-staging-maven-plugin"
26+
- "org.sonatype.central:central-publishing-maven-plugin"
2727
- "org.junit.jupiter:*"
2828
- "org.mockito:*"
2929
- "org.hamcrest:*"

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
name: Build and Test
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v4
12-
- uses: actions/setup-java@v4
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-java@v5
1313
with:
1414
java-version: 21
1515
distribution: 'temurin'

.github/workflows/publish-central.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ jobs:
99
runs-on: ubuntu-latest
1010
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
1111
steps:
12-
- uses: actions/checkout@v4
13-
- uses: actions/setup-java@v4
12+
- uses: actions/checkout@v5
13+
- uses: actions/setup-java@v5
1414
with:
1515
java-version: 21
1616
distribution: 'temurin'

.github/workflows/publish-github.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ jobs:
77
runs-on: ubuntu-latest
88
if: startsWith(github.ref, 'refs/tags/') # only allow publishing tagged versions
99
steps:
10-
- uses: actions/checkout@v4
11-
- uses: actions/setup-java@v4
10+
- uses: actions/checkout@v5
11+
- uses: actions/setup-java@v5
1212
with:
1313
java-version: 21
1414
distribution: 'temurin'

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
The changelog starts with version 1.2.10.
9+
Changes to prior versions can be found on the [Github release page](https://github.com/cryptomator/webdav-nio-adapter-servlet/releases).
10+
11+
## [1.2.10] - 2025-09-08
12+
13+
### Changed
14+
15+
* Updated `org.apache.jackrabbit:jackrabbit-webdav` from version 2.22.0 to 2.22.2
16+
* Updated `com.google.guava:guava` from version 33.4.0-jre to 33.4.8-jre

pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.cryptomator</groupId>
55
<artifactId>webdav-nio-adapter-servlet</artifactId>
6-
<version>1.2.9</version>
6+
<version>1.2.10</version>
77
<name>WebDAV-NIO Adapter Servlet</name>
88
<description>Servlet serving NIO directory contents as WebDAV resources.</description>
99
<url>https://github.com/cryptomator/webdav-nio-adapter-servlet</url>
@@ -19,25 +19,25 @@
1919

2020
<!-- dependencies -->
2121
<servlet.version>4.0.1</servlet.version>
22-
<jackrabbit.version>2.22.0</jackrabbit.version>
23-
<guava.version>33.4.0-jre</guava.version>
22+
<jackrabbit.version>2.22.2</jackrabbit.version>
23+
<guava.version>33.4.8-jre</guava.version>
2424
<slf4j.version>2.0.17</slf4j.version>
2525

2626
<!-- test dependencies -->
27-
<junit.jupiter.version>5.12.2</junit.jupiter.version>
28-
<mockito.version>5.17.0</mockito.version>
27+
<junit.jupiter.version>5.13.0</junit.jupiter.version>
28+
<mockito.version>5.18.0</mockito.version>
2929
<hamcrest.version>3.0</hamcrest.version>
3030

3131
<!-- mvn plugins -->
3232
<mvn-compiler.version>3.14.0</mvn-compiler.version>
3333
<mvn-surefire.version>3.5.3</mvn-surefire.version>
3434
<mvn-jar.version>3.4.2</mvn-jar.version>
3535
<mvn-source.version>3.3.1</mvn-source.version>
36-
<mvn-javadoc.version>3.11.2</mvn-javadoc.version>
37-
<mvn-gpg.version>3.2.7</mvn-gpg.version>
38-
<dependency-check.version>12.1.1</dependency-check.version>
36+
<mvn-javadoc.version>3.11.3</mvn-javadoc.version>
37+
<mvn-gpg.version>3.2.8</mvn-gpg.version>
38+
<dependency-check.version>12.1.3</dependency-check.version>
3939
<jacoco.version>0.8.13</jacoco.version>
40-
<central-publishing.version>0.7.0</central-publishing.version>
40+
<central-publishing.version>0.8.0</central-publishing.version>
4141
</properties>
4242

4343
<licenses>

0 commit comments

Comments
 (0)