Skip to content

Bump the all-maven-dependencies group across 2 directories with 1 update - #118

Merged
beckermarc merged 1 commit into
mainfrom
dependabot/maven/all-maven-dependencies-17a94a8d45
Sep 21, 2026
Merged

beckermarc merged 1 commit into
mainfrom
dependabot/maven/all-maven-dependencies-17a94a8d45

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 21, 2026

Copy link
Copy Markdown
Contributor

Warning

Cooldown could not be applied because no publication date was available from the registry.

Bumps the all-maven-dependencies group with 1 update in the / directory: dev.langchain4j:langchain4j-bom.
Bumps the all-maven-dependencies group with 1 update in the /srv directory: dev.langchain4j:langchain4j-bom.

Updates dev.langchain4j:langchain4j-bom from 1.19.0 to 1.20.0

Release notes

Sourced from dev.langchain4j:langchain4j-bom's releases.

1.20.0 and 1.20.0-beta30

Notable Changes

Non-blocking / reactive support by @​dliubarskyi in langchain4j/langchain4j#5527

An AI Service method used to hold its thread for the whole interaction - the model call, tool execution, memory I/O and guardrails. It can now return CompletableFuture<T>/CompletionStage<T> for a single response, or Flow.Publisher<AiServiceStreamingEvent>/Flow.Publisher<String> for streaming, and the interaction runs without blocking a thread. You choose the mode by the method's return type; nothing else about the interface changes.

Non-blocking goes all the way down, because a blocking gap at any layer re-blocks the whole call: tool calling (sync and CompletableFuture tools, sequential or concurrent), chat memory, guardrails, and the full retrieval graph including EmbeddingModel, EmbeddingStore, ScoringModel and WebSearchEngine.

The work is additive and marked @Experimental: the synchronous and TokenStream APIs are untouched. A few defaults deliberately differ on the async path - multiple tool calls run concurrently, a tool execution error fails the invocation rather than being sent to the LLM, and a tool argument-parse error is sent to the LLM rather than failing. See Non-blocking and Reactive.

Jackson 3 opt-in support by @​dliubarskyi in langchain4j/langchain4j#6184

Add langchain4j-jackson3 to your classpath and LangChain4j's JSON runs on Jackson 3. There is nothing to configure and no API to call, and removing the dependency puts everything back on Jackson 2. Nothing changes for anyone who does not opt in.

With the opt-in in place, Jackson 2 can be excluded outright from most of the dependency graph; the modules that still need it are listed in the documentation. The one deliberate behaviour change is that a JSON failure surfaces as JsonReadException or JsonWriteException (both LangChain4jException) instead of a RuntimeException wrapping Jackson's own - catching RuntimeException works either way. See Using Jackson 3.

Other Changes

... (truncated)

Commits
  • 3a2f4dc Release versions 1.20.0 and 1.20.0-beta30
  • affc81f feat(a2a): add @​A2ATenantId for multi-tenant agent routing (#6303)
  • 02ff1cf Give SupervisorAgentIT's Invoice a toString, so its agent gets a usable prompt
  • 883c74b Fix NullPointerException when completing a pending response with a null value...
  • d08cadc Fix three Jackson 3 defects the nightly integration run found (#6301)
  • f5133fe Make SupervisorAgentIT's Invoice constructible from the planner's arguments (...
  • 6a49340 Jackson 3 opt-in support (#6184)
  • 15f16f6 Upgrade mutiny-zero to 1.3.1 and drop the demand-decoupling workaround
  • c0c2fd2 feat(document-parser-docling): DocumentRequest templates, async parsing, and ...
  • 2f27d4c fix(agentic): include inherited fields in supervisor argument descriptions (#...
  • Additional commits viewable in compare view

Updates dev.langchain4j:langchain4j-bom from 1.19.0 to 1.20.0

Release notes

Sourced from dev.langchain4j:langchain4j-bom's releases.

1.20.0 and 1.20.0-beta30

Notable Changes

Non-blocking / reactive support by @​dliubarskyi in langchain4j/langchain4j#5527

An AI Service method used to hold its thread for the whole interaction - the model call, tool execution, memory I/O and guardrails. It can now return CompletableFuture<T>/CompletionStage<T> for a single response, or Flow.Publisher<AiServiceStreamingEvent>/Flow.Publisher<String> for streaming, and the interaction runs without blocking a thread. You choose the mode by the method's return type; nothing else about the interface changes.

Non-blocking goes all the way down, because a blocking gap at any layer re-blocks the whole call: tool calling (sync and CompletableFuture tools, sequential or concurrent), chat memory, guardrails, and the full retrieval graph including EmbeddingModel, EmbeddingStore, ScoringModel and WebSearchEngine.

The work is additive and marked @Experimental: the synchronous and TokenStream APIs are untouched. A few defaults deliberately differ on the async path - multiple tool calls run concurrently, a tool execution error fails the invocation rather than being sent to the LLM, and a tool argument-parse error is sent to the LLM rather than failing. See Non-blocking and Reactive.

Jackson 3 opt-in support by @​dliubarskyi in langchain4j/langchain4j#6184

Add langchain4j-jackson3 to your classpath and LangChain4j's JSON runs on Jackson 3. There is nothing to configure and no API to call, and removing the dependency puts everything back on Jackson 2. Nothing changes for anyone who does not opt in.

With the opt-in in place, Jackson 2 can be excluded outright from most of the dependency graph; the modules that still need it are listed in the documentation. The one deliberate behaviour change is that a JSON failure surfaces as JsonReadException or JsonWriteException (both LangChain4jException) instead of a RuntimeException wrapping Jackson's own - catching RuntimeException works either way. See Using Jackson 3.

Other Changes

... (truncated)

Commits
  • 3a2f4dc Release versions 1.20.0 and 1.20.0-beta30
  • affc81f feat(a2a): add @​A2ATenantId for multi-tenant agent routing (#6303)
  • 02ff1cf Give SupervisorAgentIT's Invoice a toString, so its agent gets a usable prompt
  • 883c74b Fix NullPointerException when completing a pending response with a null value...
  • d08cadc Fix three Jackson 3 defects the nightly integration run found (#6301)
  • f5133fe Make SupervisorAgentIT's Invoice constructible from the planner's arguments (...
  • 6a49340 Jackson 3 opt-in support (#6184)
  • 15f16f6 Upgrade mutiny-zero to 1.3.1 and drop the demand-decoupling workaround
  • c0c2fd2 feat(document-parser-docling): DocumentRequest templates, async parsing, and ...
  • 2f27d4c fix(agentic): include inherited fields in supervisor argument descriptions (#...
  • 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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-maven-dependencies group with 1 update in the / directory: [dev.langchain4j:langchain4j-bom](https://github.com/langchain4j/langchain4j).
Bumps the all-maven-dependencies group with 1 update in the /srv directory: [dev.langchain4j:langchain4j-bom](https://github.com/langchain4j/langchain4j).


Updates `dev.langchain4j:langchain4j-bom` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.19.0...1.20.0)

Updates `dev.langchain4j:langchain4j-bom` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/langchain4j/langchain4j/releases)
- [Commits](langchain4j/langchain4j@1.19.0...1.20.0)

---
updated-dependencies:
- dependency-name: dev.langchain4j:langchain4j-bom
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
- dependency-name: dev.langchain4j:langchain4j-bom
  dependency-version: 1.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-maven-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 21, 2026
@beckermarc
beckermarc merged commit 67b70f8 into main Sep 21, 2026
2 checks passed
@beckermarc
beckermarc deleted the dependabot/maven/all-maven-dependencies-17a94a8d45 branch September 21, 2026 12:29
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.

1 participant