Skip to content

build(deps): bump the dependencies group with 14 updates#3947

Merged
jknack merged 1 commit into
mainfrom
dependabot/maven/dependencies-bca987707a
May 11, 2026
Merged

build(deps): bump the dependencies group with 14 updates#3947
jknack merged 1 commit into
mainfrom
dependabot/maven/dependencies-bca987707a

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 11, 2026

Bumps the dependencies group with 14 updates:

Package From To
org.apache.logging.log4j:log4j-core 2.25.4 2.26.0
org.apache.logging.log4j:log4j-slf4j-impl 2.25.4 2.26.0
io.undertow:undertow-core 2.4.0.RC4 2.4.0.Final
org.jetbrains.kotlinx:kotlinx-coroutines-core 1.10.2 1.11.0
io.vertx:vertx-core 5.0.11 5.0.12
io.vertx:vertx-sql-client 5.0.11 5.0.12
io.vertx:vertx-mysql-client 5.0.11 5.0.12
io.vertx:vertx-pg-client 5.0.11 5.0.12
dev.langchain4j:langchain4j-bom 1.14.0 1.14.1
com.github.kagkarlsson:db-scheduler 16.7.1 16.8.1
software.amazon.awssdk:bom 2.44.0 2.44.4
org.jline:jline 3.30.12 3.30.13
org.jline:jline-terminal-jna 3.30.12 3.30.13
io.opentelemetry:opentelemetry-bom 1.61.0 1.62.0

Updates org.apache.logging.log4j:log4j-core from 2.25.4 to 2.26.0

Updates org.apache.logging.log4j:log4j-slf4j-impl from 2.25.4 to 2.26.0

Updates org.apache.logging.log4j:log4j-slf4j-impl from 2.25.4 to 2.26.0

Updates io.undertow:undertow-core from 2.4.0.RC4 to 2.4.0.Final

Commits

Updates org.jetbrains.kotlinx:kotlinx-coroutines-core from 1.10.2 to 1.11.0

Release notes

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's releases.

1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arb itrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. B efore, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Changelog

Sourced from org.jetbrains.kotlinx:kotlinx-coroutines-core's changelog.

Version 1.11.0

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

Breaking changes and deprecations

  • Moved Promise-related functions from JS and Wasm/JS to the new web target. On Wasm/JS, this is a breaking change. Before the change, Promise on Wasm/JS could work with arbitrary Kotlin types, but now, only JsAny subtypes are accepted (#4563).
  • Changed handling of coroutine exceptions that can't be propagated on JS and Wasm/JS. Before, exceptions were logged, but now, they are reported to the JS runtime (#4451, #4631).
  • Deprecated using CoroutineDispatcher as the coroutine context key; now, ContinuationInterceptor has to be used instead (#4333).
  • Advanced the deprecation levels on kotlinx-coroutines-test APIs (#4604).
  • Added lint functions that mark passing a Job to coroutine builders as deprecated (#4435).

Bug fixes and improvements

  • Added a callsInPlace(EXACTLY_ONCE) contract to runBlocking in code shared between JVM and Native (#4368).
  • Added a callsInPlace(EXACTLY_ONCE) contract to suspendCancellableCoroutine (#4574).
  • Fixed flowOn incorrectly handling ThreadContextElement updates (#4403).
  • Fixed exceptions in user-supplied Thread.UncaughtExceptionHandler instances causing the internal coroutines machinery to fail (#4516).
  • Fixed CoroutineDispatcher.asScheduler in the RxJava integration not cancelling outstanding work when a Worker gets cancelled, which led to memory leaks in some scenarios (#4615).
  • Fixed SharedFlow entering an invalid state when a subscriber and an emitter are cancelled simultaneously (#4583).
  • Fixed an R8 optimization leading to shareIn/stateIn coroutines getting garbage-collected (#4646). Thanks, @​solevic!

Small additions

  • Added CompletableDeferred.asDeferred for obtaining a read-only Deferred view (#4408).
  • Added SharedFlow.asFlow for obtaining a Flow view with hidden hot flow semantics (#4530). Thanks, @​g000sha256!
  • Added a StateFlow.collectLatest overload returning Nothing to assist with finding unreachable code (#4454).
  • Added ReceiveChannel.consumeTo for consuming a ReceiveChannel into a MutableCollection (#4520).
  • Added a StateFlow<T>.onSubscription overload returning a StateFlow<T>, similar to SharedFlow<T>.onSubscription returning SharedFlow<T> (#4275). Thanks, @​xit0c!
  • Added terminal Flow operators for collecting a Flow to a Map (#1541).

Changelog relative to version 1.11.0

No changes, only the version is increased.

Version 1.11.0-rc02

Restored binary compatibility with 1.10.2 and older versions on Wasm/JS for usages of Promise-related functions (#4661).

Version 1.11.0-rc01

Various

  • Kotlin was updated to 2.2.20 (#4545).
  • Improved the published jar files (#3842, #4599).
  • Various documentation improvements, including complete rewrites of structured concurrency and error handling-related KDoc (#4433, #4596).

... (truncated)

Commits
  • 8564f65 Version 1.11.0
  • a4c6af9 Merge remote-tracking branch 'origin/master' into develop
  • ef917b4 KT-84955: mark apple x64 tagets as deprecated error (#4645)
  • 5ebc421 Update the release procedure description (#4670)
  • 95f46a0 Remove old maven repository settings (#4672)
  • b4f4f0a Fix package name of ToMapCollectionSamplesTest. (#4674)
  • 86738dc Added templates to the issue creation wizard (#4654)
  • 330fcc2 Version 1.11.0-rc02
  • e31cef6 Merge remote-tracking branch 'origin/master' into develop
  • dc6e9f6 Restore Promise-related functions on Wasm/JS as HIDDEN (#4661)
  • Additional commits viewable in compare view

Updates io.vertx:vertx-core from 5.0.11 to 5.0.12

Commits
  • 244f9e7 Releasing 5.0.12
  • c64a707 Define a bounded capacity for the internal SNI to SslContext cache.
  • b1b8178 Upgrade Brotli4j to 1.23.0 for testing
  • 93b9cde Move http2 compression handling from connection to stream level
  • 325d607 Set next snapshot version
  • See full diff in compare view

Updates io.vertx:vertx-sql-client from 5.0.11 to 5.0.12

Commits

Updates io.vertx:vertx-mysql-client from 5.0.11 to 5.0.12

Commits

Updates io.vertx:vertx-pg-client from 5.0.11 to 5.0.12

Commits

Updates dev.langchain4j:langchain4j-bom from 1.14.0 to 1.14.1

Commits
  • 90523b3 Release versions 1.14.1 and 1.14.1-beta24
  • c5219e6 fix: read ReturnBehavior from ToolServiceContext in streaming handler (#5078)
  • fac9e4e fix: fall back to exception class name when tool error has no message (#5088)
  • 06fbd88 Add Spring Boot 4 dependencies to the langchain4j-bom (#5090)
  • 71f9b87 fix(mistralai): null-guard MistralAiChatMessage.getContent() in aiMes… (#5123)
  • dae6983 fix(mcp-docker): apply SSLConfig to ApacheDockerHttpClient (#5127)
  • ebe9906 Update dependency org.postgresql:postgresql to v42.7.11 [SECURITY] (#5118)
  • ca229df Upgrade opennlp-tools to 2.5.9 (#5130)
  • See full diff in compare view

Updates io.vertx:vertx-sql-client from 5.0.11 to 5.0.12

Commits

Updates io.vertx:vertx-mysql-client from 5.0.11 to 5.0.12

Commits

Updates io.vertx:vertx-pg-client from 5.0.11 to 5.0.12

Commits

Updates com.github.kagkarlsson:db-scheduler from 16.7.1 to 16.8.1

Release notes

Sourced from com.github.kagkarlsson:db-scheduler's releases.

v16.8.1

Changelog

🛠 Build

  • 3f309a9 do not use maven-gpg-plugin to sign on release

📝 Documentation

  • 7f52cb4 remove snapshotRepository

Contributors

We'd like to thank the following people for their contributions:

v16.8.0

Changelog

🐛 Fixes

  • 23b94bd remove duplicated "while" in heartbeat-failure log (#814), closes #730 #814
  • 116b86e cronStyle getter is added to CronSchedule (#793), closes #792 #793
  • 8572342 pass execution interceptors to ManualScheduler (#795), closes #795
  • 14df9c3 Add ManualSchedulerBuilder overrides for tableName and alwaysPersistTimestampInUTC (#788), closes #788

🔄️ Changes

  • 9a24e9f helper for updating rows (executions) (#808), closes #808
  • d83c85d Use JsonMapper instead of ObjectMapper in Jackson3Serializer (#789), closes #789

  • 4a2da67 add organization to pom.xml

Contributors

We'd like to thank the following people for their contributions:

Commits
  • 7f52cb4 docs: remove snapshotRepository
  • 3f309a9 build: do not use maven-gpg-plugin to sign on release
  • 4a2da67 doc: add organization to pom.xml
  • 91f8b35 Claude improvements, allow-list
  • 23b94bd fix: remove duplicated "while" in heartbeat-failure log (#814)
  • 9a24e9f refactor: helper for updating rows (executions) (#808)
  • d83c85d refactor: Use JsonMapper instead of ObjectMapper in Jackson3Serializer (#789)
  • 6db2a4e Add AGENTS.md (#807)
  • 116b86e fix: cronStyle getter is added to CronSchedule (#793)
  • 8572342 fix: pass execution interceptors to ManualScheduler (#795)
  • Additional commits viewable in compare view

Updates software.amazon.awssdk:bom from 2.44.0 to 2.44.4

Updates org.jline:jline from 3.30.12 to 3.30.13

Release notes

Sourced from org.jline:jline's releases.

JLine 3.30.13 is a patch release fixing status bar rendering after terminal resize.

Bug Fixes

When the terminal height shrinks, some terminal emulators keep the old bottom status line just above the new status area, causing duplicated status bar rows. This release clears the stale status rows during resize.

Full Changelog: jline/jline3@jline-3.30.12...jline-3.30.13

Commits
  • ec7d891 [maven-release-plugin] prepare release jline-3.30.13
  • 054e6d6 fix: status bar duplication after vertical resize (backport #1860)
  • 52124fa [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates org.jline:jline-terminal-jna from 3.30.12 to 3.30.13

Release notes

Sourced from org.jline:jline-terminal-jna's releases.

JLine 3.30.13 is a patch release fixing status bar rendering after terminal resize.

Bug Fixes

When the terminal height shrinks, some terminal emulators keep the old bottom status line just above the new status area, causing duplicated status bar rows. This release clears the stale status rows during resize.

Full Changelog: jline/jline3@jline-3.30.12...jline-3.30.13

Commits
  • ec7d891 [maven-release-plugin] prepare release jline-3.30.13
  • 054e6d6 fix: status bar duplication after vertical resize (backport #1860)
  • 52124fa [maven-release-plugin] prepare for next development iteration
  • See full diff in compare view

Updates io.opentelemetry:opentelemetry-bom from 1.61.0 to 1.62.0

Release notes

Sourced from io.opentelemetry:opentelemetry-bom's releases.

Version 1.62.0

API

Context

  • Fix GHSA-rcgg-9c38-7xpx: Apply limits to baggage entries for W3CBaggagePropagator, OtTracePropagator, JaegerPropagator (#8378)

SDK

Traces

  • Avoid parentContext allocation on span start for the common case (#8332)

Metrics

  • Add setMaxExportBatchSize to PeriodicMetricReaderBuilder (#8296)
  • Fix PeriodicMetricReader shutdown race that could drop the final flush (#8299)

Exporters

  • BREAKING Prometheus: Change default server host from 0.0.0.0 to localhost (#8298)
  • BREAKING Prometheus: Stop converting unit "1" to "ratio" (#8252)
  • OTLP: Fix null input handling in StringEncoder (#8312)
  • OTLP: Align proto field types and wire tag names in marshalers (#8293)
  • OTLP: Fix MarshalerUtil sizeRepeatedString calculation (#8284)
  • OTLP: Bound JdkHttpSender thread pool size to prevent unbounded thread creation (#8276)
  • OTLP Profiles: Split profiles data model into separate sdk-profiles and JFR shim modules (#8207)
  • OTLP Profiles: Publish alpha release of opentelemetry-sdk-profiles and opentelemetry-exporter-otlp-profiles (#8351)

Extensions

  • BREAKING Declarative config: Extract to new opentelemetry-sdk-extension-declarative-config artifact with new package io.opentelemetry.sdk.autoconfigure.declarativeconfig (#8265)
  • Autoconfigure: Add file size validation in OtlpConfigUtil to avoid unsafe cast to int (#8287)
  • Declarative config: Fix collection fields to not be initialized to empty by default (#8356)
  • Incubator: Add EventToSpanEventBridge to bridge log-based events to span events (#8372)

Testing

  • Add @Nullable to equalTo value argument in OpenTelemetryAssertions (#8301)
  • Add hasValueSatisfying to LongPointAssert and DoublePointAssert for fuzzy value matching (#8328)
  • Add containsPointsSatisfying to metric data asserts for "each given assertion must be satisfied by at least one point, extras allowed" checks on sum, gauge, histogram, exponential histogram, and summary data (#8329)

Project tooling

  • Add initial OSGi support (#7964)
  • Promote ApiUsageLogger to opentelemetry-common public API (#8318)
  • Establish exception logging guidelines and fix inconsistent patterns across exporters and SDK (#8231)
  • Add *.impl.* package naming convention for internal code with japicmp compatibility (#8325)
  • Add Sonatype dependency audit to build (#8365)

... (truncated)

Changelog

Sourced from io.opentelemetry:opentelemetry-bom's changelog.

Version 1.62.0 (2026-05-08)

API

Context

  • Fix GHSA-rcgg-9c38-7xpx: Apply limits to baggage entries for W3CBaggagePropagator, OtTracePropagator, JaegerPropagator (#8378)

SDK

Traces

  • Avoid parentContext allocation on span start for the common case (#8332)

Metrics

  • Add setMaxExportBatchSize to PeriodicMetricReaderBuilder (#8296)
  • Fix PeriodicMetricReader shutdown race that could drop the final flush (#8299)

Exporters

  • BREAKING Prometheus: Change default server host from 0.0.0.0 to localhost (#8298)
  • BREAKING Prometheus: Stop converting unit "1" to "ratio" (#8252)
  • OTLP: Fix null input handling in StringEncoder (#8312)
  • OTLP: Align proto field types and wire tag names in marshalers (#8293)
  • OTLP: Fix MarshalerUtil sizeRepeatedString calculation (#8284)
  • OTLP: Bound JdkHttpSender thread pool size to prevent unbounded thread creation (#8276)
  • OTLP Profiles: Split profiles data model into separate sdk-profiles and JFR shim modules (#8207)
  • OTLP Profiles: Publish alpha release of opentelemetry-sdk-profiles and opentelemetry-exporter-otlp-profiles (#8351)

Extensions

  • BREAKING Declarative config: Extract to new opentelemetry-sdk-extension-declarative-config artifact with new package io.opentelemetry.sdk.autoconfigure.declarativeconfig (#8265)
  • Autoconfigure: Add file size validation in OtlpConfigUtil to avoid unsafe cast to int (#8287)

... (truncated)

Commits
  • d03621f [release/v1.62.x] Prepare release 1.62.0 (#8385)
  • 3a62b7a Prepare 1.62.0 (#8378)
  • 893910b docs: Expand SIG meeting welcoming language (#8383)
  • 03837d3 Apply baggage limits (#8380)
  • cdadad6 Update dependency org.osgi:org.osgi.test.bom to v1.3.0 (#8376)
  • 8e0f196 Update error-prone monorepo to v2.49.0 (#8259)
  • 2923430 Add initial OSGi support (#7964)
  • 3f3780c Add guidance for null checking, promote ApiUsageLogger to opentelemetry-commo...
  • e224e19 Port event span event bridge from contrib (#8372)
  • b29f3df Update dependency com.google.api.grpc:proto-google-common-protos to v2.71.0 (...
  • 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 dependencies group with 14 updates:

| Package | From | To |
| --- | --- | --- |
| org.apache.logging.log4j:log4j-core | `2.25.4` | `2.26.0` |
| org.apache.logging.log4j:log4j-slf4j-impl | `2.25.4` | `2.26.0` |
| [io.undertow:undertow-core](https://github.com/undertow-io/undertow) | `2.4.0.RC4` | `2.4.0.Final` |
| [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.10.2` | `1.11.0` |
| [io.vertx:vertx-core](https://github.com/eclipse/vert.x) | `5.0.11` | `5.0.12` |
| [io.vertx:vertx-sql-client](https://github.com/eclipse-vertx/vertx-sql-client) | `5.0.11` | `5.0.12` |
| [io.vertx:vertx-mysql-client](https://github.com/eclipse-vertx/vertx-sql-client) | `5.0.11` | `5.0.12` |
| [io.vertx:vertx-pg-client](https://github.com/eclipse-vertx/vertx-sql-client) | `5.0.11` | `5.0.12` |
| [dev.langchain4j:langchain4j-bom](https://github.com/langchain4j/langchain4j) | `1.14.0` | `1.14.1` |
| [com.github.kagkarlsson:db-scheduler](https://github.com/kagkarlsson/db-scheduler) | `16.7.1` | `16.8.1` |
| software.amazon.awssdk:bom | `2.44.0` | `2.44.4` |
| [org.jline:jline](https://github.com/jline/jline3) | `3.30.12` | `3.30.13` |
| [org.jline:jline-terminal-jna](https://github.com/jline/jline3) | `3.30.12` | `3.30.13` |
| [io.opentelemetry:opentelemetry-bom](https://github.com/open-telemetry/opentelemetry-java) | `1.61.0` | `1.62.0` |


Updates `org.apache.logging.log4j:log4j-core` from 2.25.4 to 2.26.0

Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.25.4 to 2.26.0

Updates `org.apache.logging.log4j:log4j-slf4j-impl` from 2.25.4 to 2.26.0

Updates `io.undertow:undertow-core` from 2.4.0.RC4 to 2.4.0.Final
- [Release notes](https://github.com/undertow-io/undertow/releases)
- [Commits](undertow-io/undertow@2.4.0.RC4...2.4.0.Final)

Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.10.2 to 1.11.0
- [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases)
- [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md)
- [Commits](Kotlin/kotlinx.coroutines@1.10.2...1.11.0)

Updates `io.vertx:vertx-core` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vert.x@5.0.11...5.0.12)

Updates `io.vertx:vertx-sql-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

Updates `io.vertx:vertx-mysql-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

Updates `io.vertx:vertx-pg-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

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

Updates `io.vertx:vertx-sql-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

Updates `io.vertx:vertx-mysql-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

Updates `io.vertx:vertx-pg-client` from 5.0.11 to 5.0.12
- [Commits](eclipse-vertx/vertx-sql-client@5.0.11...5.0.12)

Updates `com.github.kagkarlsson:db-scheduler` from 16.7.1 to 16.8.1
- [Release notes](https://github.com/kagkarlsson/db-scheduler/releases)
- [Commits](kagkarlsson/db-scheduler@v16.7.1...v16.8.1)

Updates `software.amazon.awssdk:bom` from 2.44.0 to 2.44.4

Updates `org.jline:jline` from 3.30.12 to 3.30.13
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.12...jline-3.30.13)

Updates `org.jline:jline-terminal-jna` from 3.30.12 to 3.30.13
- [Release notes](https://github.com/jline/jline3/releases)
- [Commits](jline/jline3@jline-3.30.12...jline-3.30.13)

Updates `io.opentelemetry:opentelemetry-bom` from 1.61.0 to 1.62.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-java@v1.61.0...v1.62.0)

---
updated-dependencies:
- dependency-name: org.apache.logging.log4j:log4j-core
  dependency-version: 2.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.logging.log4j:log4j-slf4j-impl
  dependency-version: 2.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: org.apache.logging.log4j:log4j-slf4j-impl
  dependency-version: 2.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.undertow:undertow-core
  dependency-version: 2.4.0.Final
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-core
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-sql-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-mysql-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-pg-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dev.langchain4j:langchain4j-bom
  dependency-version: 1.14.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-sql-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-mysql-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.vertx:vertx-pg-client
  dependency-version: 5.0.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: com.github.kagkarlsson:db-scheduler
  dependency-version: 16.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: software.amazon.awssdk:bom
  dependency-version: 2.44.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline
  dependency-version: 3.30.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: org.jline:jline-terminal-jna
  dependency-version: 3.30.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: io.opentelemetry:opentelemetry-bom
  dependency-version: 1.62.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: 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 May 11, 2026
@jknack jknack added this to the 4.5.1 milestone May 11, 2026
@jknack jknack merged commit 375d06c into main May 11, 2026
0 of 8 checks passed
@dependabot dependabot Bot deleted the dependabot/maven/dependencies-bca987707a branch May 11, 2026 10:00
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