dependabot[bot] opened a new pull request #224:
URL: https://github.com/apache/axis-axis2-java-core/pull/224


   Bumps [okio](https://github.com/square/okio) from 2.10.0 to 3.0.0.
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/square/okio/blob/master/CHANGELOG.md";>okio's 
changelog</a>.</em></p>
   <blockquote>
   <h2>Version 3.0.0</h2>
   <p><em>2021-10-28</em></p>
   <p>This is the first stable release of Okio 3.x. This release is strongly 
backwards-compatible with
   Okio 2.x, and the new major version signifies new capabilities more than it 
does backwards
   incompatibility.</p>
   <p>Most users should be able to upgrade from 2.x by just changing the 
version. If you're using Okio
   in a Kotlin Multiplatform project, you'll need to drop the 
<code>-multiplatform</code> suffix in your Gradle
   dependencies.</p>
   <ul>
   <li>
   <p>New: Remove <code>@ExperimentalFileSystem</code>. This annotation is no 
longer necessary as the file system
   is no longer experimental!</p>
   </li>
   <li>
   <p>New: Path no longer aggressively normalizes <code>..</code> segments. Use 
<code>Path.normalize()</code> to apply these
   based on the content of the path, or <code>FileSystem.canonicalize()</code> 
to do it honoring any symlinks
   on a particular file system.</p>
   </li>
   <li>
   <p>New: Publish a [bill of materials (BOM)][bom] for Okio. Depend on this 
from Gradle or Maven to
   keep all of your Okio artifacts on the same version, even if they're 
declared via transitive
   dependencies. You can even omit versions when declaring other Okio 
dependencies.</p>
   <pre lang="kotlin"><code>dependencies {
      api(platform(&quot;com.squareup.okio:okio-bom:3.0.0&quot;))
      api(&quot;com.squareup.okio:okio&quot;)                // No version!
      api(&quot;com.squareup.okio:okio-fakefilesystem&quot;) // No version!
   }
   </code></pre>
   </li>
   <li>
   <p>New: <code>FileSystem.delete()</code> silently succeeds when deleting a 
file that doesn't exist. Use
   the new <code>mustExist</code> parameter to trigger an exception instead.</p>
   </li>
   <li>
   <p>New: <code>FileSystem.createDirectories()</code> silently succeeds when 
creating a directory that already
   exists. Use the new <code>mustCreate</code> parameter to trigger an 
exception instead.</p>
   </li>
   <li>
   <p>New: <code>FileSystem</code> offers Java-language overloads where 
appropriate. Previously functions that
   had default parameters were potentially awkward to invoke from Java.</p>
   </li>
   <li>
   <p>New: <code>Timeout.intersectWith()</code> returns a value instead of 
<code>Unit</code>. This is a binary-incompatible
   change. We expect that this public API is very rarely used outside of Okio 
itself.</p>
   </li>
   <li>
   <p>Fix: Change <code>BufferedSource.readDecimalLong()</code> to fail if the 
input value is just <code>-</code>. Previously
   Okio incorrectly returned <code>0</code> for this.</p>
   </li>
   </ul>
   <h2>Version 3.0.0-alpha.11</h2>
   <p><em>2021-10-23</em></p>
   <ul>
   <li>Upgrade: [Kotlin 1.5.31][kotlin_1_5_31].</li>
   <li>Upgrade: [kotlinx-datetime 0.3.0][datetime_0_3_0]. (This is a dependency 
of <code>okio-fakefilesystem</code>
   only.)</li>
   <li>New: Support creating and accessing symlinks. We were reluctant to 
include symlinks in our API
   (to keep it small!) but decided that supporting them was essential to 
properly implement</li>
   </ul>
   <!-- raw HTML omitted -->
   </blockquote>
   <p>... (truncated)</p>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/square/okio/commit/4214975504671560b203c57954041c49c0dc7451";><code>4214975</code></a>
 Prepare for release 3.0.0.</li>
   <li><a 
href="https://github.com/square/okio/commit/cbbb57a21c263c41ae7739ee6cfc567bc868b24b";><code>cbbb57a</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/square/okio/issues/1061";>#1061</a> 
from square/bquenaudon.2021-10-28.deletemust</li>
   <li><a 
href="https://github.com/square/okio/commit/eddd538d21cfd3617c44bfa2443029fef6ad5d43";><code>eddd538</code></a>
 Better deleteRecursive</li>
   <li><a 
href="https://github.com/square/okio/commit/f6315992d53384ab278c59161c19712423ed89f4";><code>f631599</code></a>
 Merge pull request <a 
href="https://github-redirect.dependabot.com/square/okio/issues/1060";>#1060</a> 
from ccjernigan/master</li>
   <li><a 
href="https://github.com/square/okio/commit/9e3f854fe3c4e4717c01d4852b943550c97ffbc8";><code>9e3f854</code></a>
 Spotless</li>
   <li><a 
href="https://github.com/square/okio/commit/94e034f2256a7b911508458836ef0a994731e202";><code>94e034f</code></a>
 support for ubuntu and nodejs</li>
   <li><a 
href="https://github.com/square/okio/commit/73d889f3dee363824465ed4b969ec9f62e7f9ae9";><code>73d889f</code></a>
 Fix dependencies of okio-nodefilesystem</li>
   <li><a 
href="https://github.com/square/okio/commit/ad1c093b7f9412521bac3b115b6ba0f847ef9670";><code>ad1c093</code></a>
 delete#mustExist createDirectory#mustCreate</li>
   <li><a 
href="https://github.com/square/okio/commit/6565389466cc037ca36518483e6dbc3fe89e6060";><code>6565389</code></a>
 Document the file system (<a 
href="https://github-redirect.dependabot.com/square/okio/issues/1056";>#1056</a>)</li>
   <li><a 
href="https://github.com/square/okio/commit/c9388b3507f5fc059f8e338d084f2bce14f044c1";><code>c9388b3</code></a>
 Publish a BOM for Okio (<a 
href="https://github-redirect.dependabot.com/square/okio/issues/1054";>#1054</a>)</li>
   <li>Additional commits viewable in <a 
href="https://github.com/square/okio/compare/parent-2.10.0...parent-3.0.0";>compare
 view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.squareup.okio:okio&package-manager=maven&previous-version=2.10.0&new-version=3.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
   
   Dependabot will resolve any conflicts with this PR as long as you don't 
alter it yourself. You can also trigger a rebase manually by commenting 
`@dependabot rebase`.
   
   [//]: # (dependabot-automerge-start)
   [//]: # (dependabot-automerge-end)
   
   ---
   
   <details>
   <summary>Dependabot commands and options</summary>
   <br />
   
   You can trigger Dependabot actions by commenting on this PR:
   - `@dependabot rebase` will rebase this PR
   - `@dependabot recreate` will recreate this PR, overwriting any edits that 
have been made to it
   - `@dependabot merge` will merge this PR after your CI passes on it
   - `@dependabot squash and merge` will squash and merge this PR after your CI 
passes on it
   - `@dependabot cancel merge` will cancel a previously requested merge and 
block automerging
   - `@dependabot reopen` will reopen this PR if it is closed
   - `@dependabot close` will close this PR and stop Dependabot recreating it. 
You can achieve the same result by closing it manually
   - `@dependabot ignore this major version` will close this PR and stop 
Dependabot creating any more for this major version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this minor version` will close this PR and stop 
Dependabot creating any more for this minor version (unless you reopen the PR 
or upgrade to it yourself)
   - `@dependabot ignore this dependency` will close this PR and stop 
Dependabot creating any more for this dependency (unless you reopen the PR or 
upgrade to it yourself)
   
   
   </details>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscr...@axis.apache.org
For additional commands, e-mail: java-dev-h...@axis.apache.org

Reply via email to