Skip to content

Commit 328c56c

Browse files
committed
Merge branch 'release/2.0.9'
2 parents 6d57be8 + 57a5223 commit 328c56c

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

.github/workflows/publish-central.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
MAVEN_CENTRAL_PASSWORD: ${{ secrets.MAVEN_CENTRAL_PASSWORD }}
3333
MAVEN_GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
3434
MAVEN_GPG_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
35-
MAVEN_GPG_KEY_FINGERPRINT: "58117AFA1F85B3EEC154677D615D449FE6E6A235"
35+
MAVEN_GPG_KEY_FINGERPRINT: ${{ vars.RELEASES_GPG_KEY_FINGERPRINT }}

.github/workflows/publish-github.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2222
MAVEN_GPG_PASSPHRASE: ${{ secrets.RELEASES_GPG_PASSPHRASE }}
2323
MAVEN_GPG_KEY: ${{ secrets.RELEASES_GPG_PRIVATE_KEY }}
24-
MAVEN_GPG_KEY_FINGERPRINT: "58117AFA1F85B3EEC154677D615D449FE6E6A235"
24+
MAVEN_GPG_KEY_FINGERPRINT: ${{ vars.RELEASES_GPG_KEY_FINGERPRINT }}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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+
7+
The changelog starts with version 2.0.9.
8+
Changes to prior versions can be found on the [Github release page](https://github.com/cryptomator/webdav-nio-adapter/releases).
9+
10+
## [Unreleased]
11+
12+
### Added
13+
* File /CHANGELOG.md to keep track of changes
14+
15+
## Changed
16+
* Increase timeout for MacAppleScript mounter to 120s (see #107)
17+
* Updates org.eclipse.jetty:jetty-server from 10.0.24 to 10.0.25
18+
* Updates org.eclipse.jetty:jetty-servlet from 10.0.24 to 10.0.25

pom.xml

Lines changed: 4 additions & 4 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</artifactId>
6-
<version>2.0.8</version>
6+
<version>2.0.9</version>
77
<name>WebDAV-NIO Adapter</name>
88
<description>Embedded Jetty serving a WebDAV servlet to access resources at a given NIO path.</description>
99
<url>https://github.com/cryptomator/webdav-nio-adapter</url>
@@ -21,15 +21,15 @@
2121
<!-- dependencies -->
2222
<integrations-api.version>1.5.1</integrations-api.version>
2323
<webdavservlet.version>1.2.7</webdavservlet.version>
24-
<jetty.version>10.0.24</jetty.version>
24+
<jetty.version>10.0.25</jetty.version>
2525
<slf4j.version>2.0.17</slf4j.version>
2626

2727
<!-- test dependencies -->
28-
<junit.jupiter.version>5.12.0</junit.jupiter.version>
28+
<junit.jupiter.version>5.12.1</junit.jupiter.version>
2929

3030
<!-- mvn plugin dependencies -->
3131
<mvn-compiler.version>3.14.0</mvn-compiler.version>
32-
<mvn-surefire.version>3.5.2</mvn-surefire.version>
32+
<mvn-surefire.version>3.5.3</mvn-surefire.version>
3333
<mvn-jar.version>3.4.2</mvn-jar.version>
3434
<mvn-source.version>3.3.1</mvn-source.version>
3535
<mvn-javadoc.version>3.11.2</mvn-javadoc.version>

src/main/java/org/cryptomator/frontend/webdav/mount/MacAppleScriptMounter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protected Mount mount(WebDavServerHandle serverHandle, WebDavServletController s
8888
String mountAppleScript = String.format("mount volume \"%s\"", uri.toASCIIString());
8989
ProcessBuilder mount = new ProcessBuilder("/usr/bin/osascript", "-e", mountAppleScript);
9090
Process mountProcess = mount.start();
91-
ProcessUtil.waitFor(mountProcess, 60, TimeUnit.SECONDS); // huge timeout since the user might need to confirm connecting via http
91+
ProcessUtil.waitFor(mountProcess, 120, TimeUnit.SECONDS); // huge timeout since issue #107 + the user might need to confirm connecting via http
9292
ProcessUtil.assertExitValue(mountProcess, 0);
9393

9494
// verify mounted:

0 commit comments

Comments
 (0)