dependabot[bot] opened a new pull request, #20423: URL: https://github.com/apache/camel/pull/20423
Bumps `vavr-version` from 0.10.7 to 0.11.0. Updates `io.vavr:vavr` from 0.10.7 to 0.11.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vavr-io/vavr/releases">io.vavr:vavr's releases</a>.</em></p> <blockquote> <h2>v0.11.0</h2> <p>The day has come - <strong>Vavr 0.11.0</strong> is out, marking the first minor release in several years.</p> <p><img src="https://github.com/user-attachments/assets/543512ec-f096-4328-972a-90aa0d1cae23" alt="giphy" /></p> <p>From here on, the focus shifts toward <strong>Vavr 1.0.0</strong>, starting with a <strong>significant Java version bump</strong>.</p> <p>The 0.11.x line will continue to receive <strong>bugfixes and maintenance updates</strong>, but no new features are planned. Roadmap details can be found <a href="https://github.com/orgs/vavr-io/discussions/2953">here</a>.</p> <p>Huge thanks to everyone who contributed in any form.</p> <h2>Significant Additions</h2> <h3>Lazy <code>For()</code> Comprehension (<a href="https://redirect.github.com/vavr-io/vavr/pull/3085">vavr-io/vavr#3085</a>)</h3> <p>The for-comprehension API has been expanded with <strong>lazy, evaluation-friendly signatures</strong> that accept functions instead of eagerly-evaluated objects:</p> <pre lang="java"><code>Option<Integer> result = API.For( calculate1(), (r1) -> calculate2(r1), (r1, r2) -> calculate3(r1, r2)) .yield((r1, r2, r3) -> r1 + r2 + r3); </code></pre> <h3>JSpecify Integration (<a href="https://redirect.github.com/vavr-io/vavr/pull/3113">vavr-io/vavr#3113</a>)</h3> <p>Vavr now integrates <a href="https://jspecify.dev/">JSpecify</a> annotations, enhancing null-safety support in IDEs and modern static analysis tools.</p> <h3>Better Future Cancellation (<a href="https://redirect.github.com/vavr-io/vavr/pull/3107">vavr-io/vavr#3107</a>)</h3> <p>As a result of internal refactoring, cancellation is now possible for Futures that have not yet started execution.</p> <h3>Various API Additions</h3> <ul> <li><code>Either/Validation.cond()</code></li> <li><code>Value.mapTo(U)</code> and <code>Value.mapToVoid()</code></li> <li><code>Try.toEither(Throwable -> L)</code></li> </ul> <h2>What's Changed</h2> <ul> <li>New feature: Either.cond by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3061">vavr-io/vavr#3061</a></li> <li>New feature: Validation.cond by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3062">vavr-io/vavr#3062</a></li> <li>New feature: For-comprehensions for Eithers and Validations by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3063">vavr-io/vavr#3063</a></li> <li>New feature: <code>.mapTo(U)</code> and <code>.mapToVoid()</code> for Value<!-- raw HTML omitted --> by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3086">vavr-io/vavr#3086</a>, <a href="https://redirect.github.com/vavr-io/vavr/pull/3090">vavr-io/vavr#3090</a></li> <li>Lazy For() Comprehension Generator by <a href="https://github.com/pivovarit"><code>@pivovarit</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3085">vavr-io/vavr#3085</a></li> <li>New feature: <code>Try.toEither(Throwable -> L)</code> by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3088">vavr-io/vavr#3088</a></li> <li>Fix: Missing javadocs for types in For comprehensions by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3089">vavr-io/vavr#3089</a></li> <li>Fix: Missing javadocs for pattern matching and other components by <a href="https://github.com/adamkopec"><code>@adamkopec</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3095">vavr-io/vavr#3095</a></li> <li>Fix: flaky tests of set comparison by <a href="https://github.com/lycoris106"><code>@lycoris106</code></a> in <a href="https://redirect.github.com/vavr-io/vavr/pull/3104">vavr-io/vavr#3104</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vavr-io/vavr/commit/9c538905053bac81e560dc5c17401ad86980520c"><code>9c53890</code></a> [maven-release-plugin] prepare release v0.11.0 [ci skip]</li> <li><a href="https://github.com/vavr-io/vavr/commit/34c41e6d94a298ccb9329b1de8dbe4ab216509a9"><code>34c41e6</code></a> use 'maven-central-release' release profile (<a href="https://redirect.github.com/vavr-io/vavr/issues/3142">#3142</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/a2f03d8ddc54da6e3419e640feeaf806cf759bc7"><code>a2f03d8</code></a> remove outdated docs (<a href="https://redirect.github.com/vavr-io/vavr/issues/3141">#3141</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/4d51b847629d0b33acab0d071fd44d7267c3f542"><code>4d51b84</code></a> remove custom JavaDoc stylesheet (<a href="https://redirect.github.com/vavr-io/vavr/issues/3140">#3140</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/10d66e720cc1ad626bbc207344599e7a1cb251a1"><code>10d66e7</code></a> Always include javadocs (<a href="https://redirect.github.com/vavr-io/vavr/issues/3139">#3139</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/abdfbe1743ed6f7ead2024c0ba99179295f1fb21"><code>abdfbe1</code></a> remove custom link from maven-javadoc configuration (<a href="https://redirect.github.com/vavr-io/vavr/issues/3138">#3138</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/772587cce8741d62932bf21d33b4b074922be724"><code>772587c</code></a> remove modules declaration from sonatype-oss-release profile (<a href="https://redirect.github.com/vavr-io/vavr/issues/3137">#3137</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/602d31231736b1618edc8c5b1aeff83169d95b6f"><code>602d312</code></a> Refactor test sections to use <a href="https://github.com/Nested"><code>@Nested</code></a> JUnit classes (<a href="https://redirect.github.com/vavr-io/vavr/issues/3135">#3135</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/431cea830f7faec53b2bf3f3f47ed52b4a8eca30"><code>431cea8</code></a> Fix TreeMultimap Java map conversion (<a href="https://redirect.github.com/vavr-io/vavr/issues/3132">#3132</a>)</li> <li><a href="https://github.com/vavr-io/vavr/commit/1edd6ea33daffce9b1dca40aeaa4e4a2bad64632"><code>1edd6ea</code></a> Reuse release job (<a href="https://redirect.github.com/vavr-io/vavr/issues/3131">#3131</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vavr-io/vavr/compare/v0.10.7...v0.11.0">compare view</a></li> </ul> </details> <br /> Updates `io.vavr:vavr-match` from 0.10.7 to 0.11.0 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vavr-io/vavr-match/commit/09b4c4993d25de4fab5003cbd945e3fc1843a27e"><code>09b4c49</code></a> [maven-release-plugin] prepare release v0.11.0</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/b843f949ee2525cf00e34b3a1dd0385793230c83"><code>b843f94</code></a> Bump org.codehaus.mojo:versions-maven-plugin from 2.19.0 to 2.19.1 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/81">#81</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/9d34d377b8f806ae7f47f50788e9eab642ee3cdc"><code>9d34d37</code></a> Bump org.apache.maven.plugins:maven-compiler-plugin from 3.14.0 to 3.14.1 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/80">#80</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/210b1e47403a391eabf8efe11f229db1fcf6a2aa"><code>210b1e4</code></a> Bump actions/checkout from 5 to 6 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/83">#83</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/8643c5161b3caa7512c3d806ad50e5856603b3c7"><code>8643c51</code></a> Bump org.sonatype.central:central-publishing-maven-plugin from 0.8.0 to 0.9.0...</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/3ffa9089ed54ededfe6fa834373ef0bbead02b7a"><code>3ffa908</code></a> Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.3 to 3.12.0 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/79">#79</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/c011df91847c75e3d6b9e52e21bf3f9eab4770ea"><code>c011df9</code></a> Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.3 to 3.5.4 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/78">#78</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/83009e1cec656cc05a3cc6e802cadcff589a6bad"><code>83009e1</code></a> Bump org.codehaus.mojo:versions-maven-plugin from 2.18.0 to 2.19.0 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/77">#77</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/2f433326f8bdd62817b01ad7144ddd0a13f8efc5"><code>2f43332</code></a> Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.11.2 to 3.11.3 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/75">#75</a>)</li> <li><a href="https://github.com/vavr-io/vavr-match/commit/ebb9de5246c2370b844371db63b4abb80b5446ae"><code>ebb9de5</code></a> Bump actions/setup-java from 4 to 5 (<a href="https://redirect.github.com/vavr-io/vavr-match/issues/76">#76</a>)</li> <li>Additional commits viewable in <a href="https://github.com/vavr-io/vavr-match/compare/v0.10.7...v0.11.0">compare view</a></li> </ul> </details> <br /> 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]
