Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lookfirst/sardine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: sardine-5.13
Choose a base ref
...
head repository: lookfirst/sardine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 9 commits
  • 2 files changed
  • 3 contributors

Commits on Jan 10, 2025

  1. Copy the full SHA
    d17b2e0 View commit details
  2. Fix #284.

    dkocher committed Jan 10, 2025
    Copy the full SHA
    03991c7 View commit details
  3. Copy the full SHA
    1f44a60 View commit details

Commits on Jan 13, 2025

  1. Bump org.codehaus.mojo:extra-enforcer-rules from 1.7.0 to 1.9.0

    Bumps [org.codehaus.mojo:extra-enforcer-rules](https://github.com/mojohaus/extra-enforcer-rules) from 1.7.0 to 1.9.0.
    - [Release notes](https://github.com/mojohaus/extra-enforcer-rules/releases)
    - [Commits](mojohaus/extra-enforcer-rules@1.7.0...1.9.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.codehaus.mojo:extra-enforcer-rules
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 13, 2025
    Copy the full SHA
    6948b43 View commit details
  2. Bump org.apache.maven.plugins:maven-enforcer-plugin from 3.3.0 to 3.5.0

    Bumps [org.apache.maven.plugins:maven-enforcer-plugin](https://github.com/apache/maven-enforcer) from 3.3.0 to 3.5.0.
    - [Release notes](https://github.com/apache/maven-enforcer/releases)
    - [Commits](apache/maven-enforcer@enforcer-3.3.0...enforcer-3.5.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.apache.maven.plugins:maven-enforcer-plugin
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 13, 2025
    Copy the full SHA
    b50b160 View commit details
  3. Merge pull request #533 from lookfirst/dependabot/maven/org.apache.ma…

    …ven.plugins-maven-enforcer-plugin-3.5.0
    dependabot[bot] authored Jan 13, 2025
    Copy the full SHA
    3f91b0b View commit details
  4. Merge pull request #532 from lookfirst/dependabot/maven/org.codehaus.…

    …mojo-extra-enforcer-rules-1.9.0
    dependabot[bot] authored Jan 13, 2025
    Copy the full SHA
    3e559d2 View commit details

Commits on Jan 28, 2025

  1. Bump commons-codec:commons-codec from 1.17.2 to 1.18.0

    Bumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.17.2 to 1.18.0.
    - [Changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt)
    - [Commits](apache/commons-codec@rel/commons-codec-1.17.2...rel/commons-codec-1.18.0)
    
    ---
    updated-dependencies:
    - dependency-name: commons-codec:commons-codec
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 28, 2025
    Copy the full SHA
    c44a1db View commit details
  2. Copy the full SHA
    c7fe182 View commit details
Showing with 7 additions and 5 deletions.
  1. +4 −4 pom.xml
  2. +3 −1 src/main/java/com/github/sardine/impl/handler/MultiStatusResponseHandler.java
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<groupId>com.github.lookfirst</groupId>
<artifactId>sardine</artifactId>
<packaging>jar</packaging>
<version>5.13</version>
<version>5.14-SNAPSHOT</version>
<description>An easy to use WebDAV client for Java</description>
<name>Sardine WebDAV client</name>
<url>https://github.com/lookfirst/sardine</url>
@@ -50,12 +50,12 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-enforcer-plugin</artifactId>
<version>3.3.0</version>
<version>3.5.0</version>
<dependencies>
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>extra-enforcer-rules</artifactId>
<version>1.7.0</version>
<version>1.9.0</version>
</dependency>
</dependencies>
</plugin>
@@ -306,7 +306,7 @@
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.17.2</version>
<version>1.18.0</version>
</dependency>
</dependencies>
</dependencyManagement>
Original file line number Diff line number Diff line change
@@ -54,7 +54,9 @@ public Multistatus handleResponse(HttpResponse response) throws IOException
}
catch(IOException e) {
// JAXB error unmarshalling response stream
throw new SardineException(e.getMessage(), statusLine.getStatusCode(), statusLine.getReasonPhrase());
final SardineException sardineException = new SardineException(e.getMessage(), statusLine.getStatusCode(), statusLine.getReasonPhrase());
sardineException.initCause(e);
throw sardineException;
}
}