commons-vfs
commons-vfs copied to clipboard
Apache Commons VFS
Detection of IPv6 ip addresses should ignore decoding of %nn text. It is done at the moment in the buffer length (from decode(String) instead of where the host name should...
Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.2.0 to 3.3.0. Release notes Sourced from org.codehaus.mojo:exec-maven-plugin's releases. 3.3.0 🚀 New features and improvements Add option to include runtime and provided (#61) @rehevkor5 📦 Dependency updates...
The reverts https://github.com/apache/commons-vfs/pull/396 and related changes and implements the same in a simpler way by replacing the encoded characters already in `fixSeparators`. This approach has a slightly higher risk at...
Bumps [org.apache.sshd:sshd-core](https://github.com/apache/mina-sshd) from 0.8.0 to 2.13.1. Release notes Sourced from org.apache.sshd:sshd-core's releases. SSHD 2.13.1 What's changed This release does not contain any code changes. It is solely to rectify the...
(not for review yet, intermediate PR to test on CI)
The detection of %2f in `UriParser.readNonSeparator()` is incorrect as it always compare a String of length 2 with a String of length 3. After the fix, a unit test failed:...
Bumps [org.apache.commons:commons-parent](https://github.com/apache/commons-parent) from 67 to 71. Changelog Sourced from org.apache.commons:commons-parent's changelog. Apache Commons Parent 71 RELEASE NOTES The Apache Commons Parent team is pleased to announce the release of Apache...
Here is a performance improvement of `UriParser.normalise()`. I've replaced the slow `StringBuilder.substring()` with `StringBuilder.charAt()`. I think that `StringBuilder.subSequence()` with `CharSequence.compare()` could show similar performance improvements. Let me know if you...
Bumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 4.11.0 to 5.14.2. Release notes Sourced from org.mockito:mockito-core's releases. v5.14.2 Changelog generated by Shipkit Changelog Gradle Plugin 5.14.2 2024-10-15 - 12 commit(s) by Brice Dutheil, Rafael Winterhalter,...
`UriParser#extractScheme` is often called, so performance of this method matters. Here is a performance improvement that avoids many String concatenation. Here are the JMH results **Before** Benchmark Mode Cnt Score...