dependabot[bot] opened a new pull request, #1723:
URL: https://github.com/apache/maven-resolver/pull/1723

   Bumps 
[com.github.mizosoft.methanol:methanol](https://github.com/mizosoft/methanol) 
from 1.8.4 to 1.9.0.
   <details>
   <summary>Release notes</summary>
   <p><em>Sourced from <a 
href="https://github.com/mizosoft/methanol/releases";>com.github.mizosoft.methanol:methanol's
 releases</a>.</em></p>
   <blockquote>
   <h2>v1.9.0</h2>
   <ul>
   <li>
   <p>Added <a 
href="https://mizosoft.github.io/methanol/retrying_requests/";>RetryInterceptor</a>
 (<a href="https://redirect.github.com/mizosoft/methanol/issues/137";>#137</a>), 
with which you can retry requests with declaratively specified conditions.</p>
   <pre lang="java"><code>var client =
     Methanol.newBuilder()
         .interceptor(
             RetryInterceptor.newBuilder()
                 .maxRetries(3)
                 .onException(ConnectException.class)
                 .onStatus(HttpStatus::isServerError)
                 .backoff(
                     RetryInterceptor.BackoffStrategy.exponential(
                             Duration.ofMillis(100), Duration.ofSeconds(5))
                         .withJitter())
                 .build())
         .build();
   </code></pre>
   <p>There's also a corresponding <a 
href="https://mizosoft.github.io/methanol/kotlin/#retrying-requests";>Kotlin 
DSL</a>.</p>
   </li>
   <li>
   <p>Fixed (<a 
href="https://redirect.github.com/mizosoft/methanol/issues/146";>#146</a>). 
Methanol JARs now play well with OSGI environments.</p>
   </li>
   <li>
   <p>Added brotli support for MacOS &amp; ARM architectures. Support for 
<code>x86-32</code> platforms has been dropped, however. In addition to the fat 
JAR that has natives bundled for all supported platforms, a JAR for each 
platform is published with only the corresponding native, that is in addition 
to a base JAR with no natives, which you can use for custom native builds. 
Checkout <a href="https://mizosoft.github.io/methanol/brotli/";>the docs</a> for 
more.</p>
   </li>
   <li>
   <p>Added support for <a 
href="https://github.com/FasterXML/jackson/wiki/Jackson-Release-3.0";>Jackson 
3</a> through additional modules: <code>methanol-jackson3</code> &amp; 
<code>methanol-jackson3-flux</code>. Support for Jackson 2 will continue 
through the older modules.</p>
   </li>
   <li>
   <p>Versions of dependencies of integration modules (e.g. methanol-jackson) 
are now defined in <a 
href="https://docs.gradle.org/current/userguide/dependency_versions.html#sec:maven-style-range";>ranges</a>.
 This allows builds to pull the latest version of the target library without 
necessarily updating Methanol to the next release. If you want to use a 
specific version, you can explicitly declare it provided it is within the 
range. The ranges are also reflected on OSGI metadata.</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Changelog</summary>
   <p><em>Sourced from <a 
href="https://github.com/mizosoft/methanol/blob/master/CHANGELOG.md";>com.github.mizosoft.methanol:methanol's
 changelog</a>.</em></p>
   <blockquote>
   <h2>Version 1.9.0</h2>
   <ul>
   <li>
   <p>Added <a 
href="https://mizosoft.github.io/methanol/retrying_requests/";>RetryInterceptor</a>
 (<a href="https://redirect.github.com/mizosoft/methanol/issues/137";>#137</a>),
   with which you can retry requests with declaratively specified 
conditions.</p>
   <pre lang="java"><code>var client =
     Methanol.newBuilder()
         .interceptor(
             RetryInterceptor.newBuilder()
                 .maxRetries(3)
                 .onException(ConnectException.class)
                 .onStatus(HttpStatus::isServerError)
                 .backoff(
                     RetryInterceptor.BackoffStrategy.exponential(
                             Duration.ofMillis(100), Duration.ofSeconds(5))
                         .withJitter())
                 .build())
         .build();
   </code></pre>
   <p>There's also a corresponding <a 
href="https://mizosoft.github.io/methanol/kotlin/#retrying-requests";>Kotlin 
DSL</a>.</p>
   </li>
   <li>
   <p>Fixed (<a 
href="https://redirect.github.com/mizosoft/methanol/issues/146";>#146</a>). 
Methanol JARs now play well with OSGI environments.</p>
   </li>
   <li>
   <p>Added brotli support for MacOS &amp; ARM architectures. Support for 
<code>x86-32</code> platforms has been dropped, however. In addition to the fat 
JAR that has natives bundled for
   all supported platforms, a JAR for each platform is published with only the 
corresponding native, that is in addition to a base JAR with no natives, which 
you can use for custom native builds.
   Checkout <a href="https://mizosoft.github.io/methanol/brotli/";>the docs</a> 
for more.</p>
   </li>
   <li>
   <p>Added support for <a 
href="https://github.com/FasterXML/jackson/wiki/Jackson-Release-3.0";>Jackson 
3</a> through additional modules: <code>methanol-jackson3</code> &amp; 
<code>methanol-jackson3-flux</code>.
   Support for Jackson 2 will continue through the older modules.</p>
   </li>
   <li>
   <p>Versions of dependencies of integration modules (e.g. methanol-jackson) 
are now defined in <a 
href="https://docs.gradle.org/current/userguide/dependency_versions.html#sec:maven-style-range";>ranges</a>.
   This allows builds to pull the latest version of the target library without 
necessarily updating Methanol to the next release.
   If you want to use a specific version, you can explicitly declare it 
provided it is within the range. The ranges are also reflected on OSGI 
metadata.</p>
   </li>
   </ul>
   </blockquote>
   </details>
   <details>
   <summary>Commits</summary>
   <ul>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/b38976e52dc3386b71cbc2dba803631f72ec8f1a";><code>b38976e</code></a>
 Release 1.9.0</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/7a66130efc8002463f3fb3823a436394a7ef4200";><code>7a66130</code></a>
 Merge pull request <a 
href="https://redirect.github.com/mizosoft/methanol/issues/172";>#172</a> from 
mizosoft/jackson3-support</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/374aa3a4cd795a761330284b9a2bb17f30c8a918";><code>374aa3a</code></a>
 Remove unused dep</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/0f3666962acfb5b04508c47738d2d213b3c2b3eb";><code>0f36669</code></a>
 Only run OSGI tests on Java 17</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/3e58918f3d99c3c0a4f1ae5358138643faeaa863";><code>3e58918</code></a>
 Properly setup RESOLVE_JAVA_VERSION</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/10bc88d2f608409195669b40666dd796d092d7d9";><code>10bc88d</code></a>
 Run Jackson 3 OSGI tests conditionally</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/3d7c2bd656e1dbd2d06b582bd8f74d935b73dff1";><code>3d7c2bd</code></a>
 Add methanol-jackson3-flux in friends of exported internal packages</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/16b6f5c31ba4c967cfb4d35ccb3bf2b132bfae41";><code>16b6f5c</code></a>
 Only compile &amp; test methanol-jackson3[-flux] under Java 17+</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/db83513c00905fde26175bf10f4109700ce7919b";><code>db83513</code></a>
 Add methanol-jackson3-flux</li>
   <li><a 
href="https://github.com/mizosoft/methanol/commit/23a903033725d11d969e0d15ab584f6222edd1a8";><code>23a9030</code></a>
 Add methanol-jackson3</li>
   <li>Additional commits viewable in <a 
href="https://github.com/mizosoft/methanol/compare/v1.8.4...v1.9.0";>compare 
view</a></li>
   </ul>
   </details>
   <br />
   
   
   [![Dependabot compatibility 
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=com.github.mizosoft.methanol:methanol&package-manager=maven&previous-version=1.8.4&new-version=1.9.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 show <dependency name> ignore conditions` will show all of 
the ignore conditions of the specified dependency
   - `@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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to