Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 15, 2025

Bumps vavrVersion from 0.10.3 to 0.11.0.
Updates io.vavr:vavr from 0.10.3 to 0.11.0

Release notes

Sourced from io.vavr:vavr's releases.

v0.11.0

The day has come - Vavr 0.11.0 is out, marking the first minor release in several years.

giphy

From here on, the focus shifts toward Vavr 1.0.0, starting with a significant Java version bump.

The 0.11.x line will continue to receive bugfixes and maintenance updates, but no new features are planned. Roadmap details can be found here.

Huge thanks to everyone who contributed in any form.

Significant Additions

Lazy For() Comprehension (vavr-io/vavr#3085)

The for-comprehension API has been expanded with lazy, evaluation-friendly signatures that accept functions instead of eagerly-evaluated objects:

Option<Integer> result = API.For(
  calculate1(),
  (r1) -> calculate2(r1),
  (r1, r2) -> calculate3(r1, r2))
  .yield((r1, r2, r3) -> r1 + r2 + r3);

JSpecify Integration (vavr-io/vavr#3113)

Vavr now integrates JSpecify annotations, enhancing null-safety support in IDEs and modern static analysis tools.

Better Future Cancellation (vavr-io/vavr#3107)

As a result of internal refactoring, cancellation is now possible for Futures that have not yet started execution.

Various API Additions

  • Either/Validation.cond()
  • Value.mapTo(U) and Value.mapToVoid()
  • Try.toEither(Throwable -> L)

What's Changed

... (truncated)

Commits

Updates io.vavr:vavr-jackson from 0.10.3 to 0.11.0

Release notes

Sourced from io.vavr:vavr-jackson's releases.

v0.11.0

0.11.0 aligns the Jackson integration with the recent Vavr 0.11.0 release, focusing on compatibility, cleanup, and closer integration with modern Jackson features.

The main functional improvement is expanded support for @JsonMerge across Vavr types, including Option, Seq, and Map, with recursive map merging. This brings Vavr collections closer to Jackson’s native merge behavior while preserving their immutable semantics.

Additionally, @JsonUnwrapped is now supported on Option properties, and the Jackson version was bumped to 2.20.1.

This release does not provide Jackson 3 support - this will be addressed separately.

What's Changed

New Contributors

Full Changelog: vavr-io/vavr-jackson@vavr-jackson-0.10.3...v0.11.0

Commits
  • 68deacc [maven-release-plugin] prepare release v0.11.0
  • 1286e23 Add missing POM entries: name, description, url, developers (#305)
  • 17f8bd6 Add required pom entries (#304)
  • a14d5dc Upgrade jackson-databind to 2.20.1 (#303)
  • 8b99d18 Bump org.apache.maven.plugins:maven-source-plugin from 3.3.1 to 3.4.0 (#301)
  • c1f695e Bump org.apache.maven.plugins:maven-release-plugin from 3.1.1 to 3.3.1 (#302)
  • 9123edc Bump io.vavr:vavr from 0.10.7 to 0.11.0 (#300)
  • eb2e184 Reuse release job (#299)
  • 3a1c595 Include doclint GitHub Actions job (#296)
  • 311483d Configure autoupdate job (#298)
  • Additional commits viewable in compare view

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 commands and options

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)

Bumps `vavrVersion` from 0.10.3 to 0.11.0.

Updates `io.vavr:vavr` from 0.10.3 to 0.11.0
- [Release notes](https://github.com/vavr-io/vavr/releases)
- [Commits](vavr-io/vavr@v0.10.3...v0.11.0)

Updates `io.vavr:vavr-jackson` from 0.10.3 to 0.11.0
- [Release notes](https://github.com/vavr-io/vavr-jackson/releases)
- [Commits](vavr-io/vavr-jackson@vavr-jackson-0.10.3...v0.11.0)

---
updated-dependencies:
- dependency-name: io.vavr:vavr
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: io.vavr:vavr-jackson
  dependency-version: 0.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Dec 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants