Skip to content

Bump the all group with 4 updates - #380

Merged
IRus merged 1 commit into
mainfrom
dependabot/gradle/all-e1e8eb0fb0
Sep 6, 2026
Merged

IRus merged 1 commit into
mainfrom
dependabot/gradle/all-e1e8eb0fb0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the all group with 4 updates: io.heapy.komok:komok-tech-di, io.heapy.komok:komok-tech-di-lib, org.mongodb:mongodb-driver-kotlin-coroutine and org.jetbrains.kotlinx.binary-compatibility-validator.

Updates io.heapy.komok:komok-tech-di from 1.1.0 to 1.2.0

Commits

Updates io.heapy.komok:komok-tech-di-lib from 1.1.0 to 1.2.0

Commits

Updates io.heapy.komok:komok-tech-di-lib from 1.1.0 to 1.2.0

Commits

Updates org.mongodb:mongodb-driver-kotlin-coroutine from 5.10.0 to 5.11.0

Release notes

Sourced from org.mongodb:mongodb-driver-kotlin-coroutine's releases.

Java Driver 5.11.0 (August 28, 2026)

What's Changed

CSFLE/QE Http proxies notes

  • The driver always negotiates TLS with the KMS host itself, using the SSLContext configured for the KMS provider. Implementations must not negotiate TLS with the KMS host; doing so would let an intermediary read the key material in transit.
  • An implementation may use TLS for its own connection to the intermediary, in which case it returns an SSLSocket and the driver layers the KMS host's TLS session on top of it.
  • Ownership of the returned socket passes to the driver, which closes it when the KMS request completes. A socket that is never returned must be closed by the implementation.
  • Applicable only to the synchronous driver. The reactive streams driver rejects(RuntimeException) a configured callback.

Code example

Code example uses only the JDK API , so no HTTP client dependency is required. If you use your own HTTP client, it must return the tunnelled socket without negotiating TLS with the KMS host

First define the callback

private static final String PROXY_HOST = "proxy.example.com";
private static final int PROXY_PORT = 8080;
private static final int TIMEOUT_MILLIS = 10_000;

// Routes every KMS request through an HTTP proxy using the HTTP CONNECT method
// refer to the docs https://www.rfc-editor.org/info/rfc9110/#section-9.3.6
KmsConnectCallback proxyCallback = context -> {
Socket socket = new Socket();
try {
// 1. Connect to the proxy, not to the KMS host.
socket.connect(new InetSocketAddress(PROXY_HOST, PROXY_PORT), TIMEOUT_MILLIS);
socket.setSoTimeout(TIMEOUT_MILLIS);

    // 2. Ask the proxy to open a tunnel to the KMS host the driver wants to reach. Only the
    //    driver knows which host that is, so always take it from the context rather than
    //    hard-coding it.
    String target = context.getHost() + ":" + context.getPort();
    String connectRequest = "CONNECT " + target + " HTTP/1.1\r\n"
            + "Host: " + target + "\r\n"
            // If the proxy requires authentication, add the appropriate header, for example:
            // + "Proxy-Authorization: Basic " + base64("user:password") + "\r\n"
            + "\r\n";
    socket.getOutputStream().write(connectRequest.getBytes(StandardCharsets.US_ASCII));
// 3. Check the proxy accepted the tunnel before handing the socket back.
checkProxyAcceptedTunnel(socket.getInputStream());

} catch (IOException | RuntimeException e) {
// The driver never received this socket, so it cannot close it for you.
socket.close();
throw e;

</tr></table>

... (truncated)

Commits

Updates org.jetbrains.kotlinx.binary-compatibility-validator from 0.18.1 to 0.18.2

Release notes

Sourced from org.jetbrains.kotlinx.binary-compatibility-validator's releases.

0.18.2

  • Prevent configuration crash on hosts unrecognized by Kotlin/Native
Commits
  • 534b4eb Release 0.18.2
  • 0332e22 Prevent configuration crash on hosts unrecognized by Kotlin/Native (#316)
  • 31dafe4 Updated warning about freezing development
  • 74e2c57 Updated warning about freezing development (#309)
  • See full diff 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 group with 4 updates: [io.heapy.komok:komok-tech-di](https://github.com/Heapy/komok), [io.heapy.komok:komok-tech-di-lib](https://github.com/Heapy/komok), [org.mongodb:mongodb-driver-kotlin-coroutine](https://github.com/mongodb/mongo-java-driver) and [org.jetbrains.kotlinx.binary-compatibility-validator](https://github.com/Kotlin/binary-compatibility-validator).


Updates `io.heapy.komok:komok-tech-di` from 1.1.0 to 1.2.0
- [Commits](https://github.com/Heapy/komok/commits)

Updates `io.heapy.komok:komok-tech-di-lib` from 1.1.0 to 1.2.0
- [Commits](https://github.com/Heapy/komok/commits)

Updates `io.heapy.komok:komok-tech-di-lib` from 1.1.0 to 1.2.0
- [Commits](https://github.com/Heapy/komok/commits)

Updates `org.mongodb:mongodb-driver-kotlin-coroutine` from 5.10.0 to 5.11.0
- [Release notes](https://github.com/mongodb/mongo-java-driver/releases)
- [Commits](mongodb/mongo-java-driver@r5.10.0...r5.11.0)

Updates `org.jetbrains.kotlinx.binary-compatibility-validator` from 0.18.1 to 0.18.2
- [Release notes](https://github.com/Kotlin/binary-compatibility-validator/releases)
- [Commits](Kotlin/binary-compatibility-validator@0.18.1...0.18.2)

---
updated-dependencies:
- dependency-name: io.heapy.komok:komok-tech-di
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-di-lib
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: io.heapy.komok:komok-tech-di-lib
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: org.mongodb:mongodb-driver-kotlin-coroutine
  dependency-version: 5.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: org.jetbrains.kotlinx.binary-compatibility-validator
  dependency-version: 0.18.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

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 6, 2026
@IRus
IRus merged commit 7421a46 into main Sep 6, 2026
5 checks passed
@dependabot
dependabot Bot deleted the dependabot/gradle/all-e1e8eb0fb0 branch September 6, 2026 20:25
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

Development

Successfully merging this pull request may close these issues.

1 participant