Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Nov 25, 2025

Bumps the gradle group with 6 updates in the / directory:

Package From To
org.flywaydb:flyway-core 11.17.0 11.17.1
org.flywaydb:flyway-database-hsqldb 11.17.0 11.17.1
io.grpc:grpc-protobuf 1.76.0 1.77.0
io.swagger.parser.v3:swagger-parser 2.1.35 2.1.36
org.htmlunit:htmlunit-csp 4.18.0 4.19.0
org.sonarqube 7.0.1.6134 7.1.0.6387

Updates org.flywaydb:flyway-core from 11.17.0 to 11.17.1

Release notes

Sourced from org.flywaydb:flyway-core's releases.

Flyway 11.17.1

See release notes here

Commits

Updates org.flywaydb:flyway-database-hsqldb from 11.17.0 to 11.17.1

Updates org.flywaydb:flyway-database-hsqldb from 11.17.0 to 11.17.1

Updates io.grpc:grpc-protobuf from 1.76.0 to 1.77.0

Release notes

Sourced from io.grpc:grpc-protobuf's releases.

v1.77.0

API Changes

  • binder: Remove experimental BinderChannelBuilder.bindAsUser() method, deprecated since 1.69 (#12401) (f96ce0670)

Bug Fixes

  • api: Fix name resolver bridge listener handling for address resolution errors for custom name resolvers (#12441) (acbbf869a). This fixes regression introduced in v1.68.1 causing a “IllegalStateException: No value present.” exception
  • core: Fix NullPointerException during address update with Happy Eyeballs (5e8af564e). This should not impact many people as the code is disabled by default, behind two experimental environment variables
  • okhttp: Fix bidirectional keep-alive causing spurious GOAWAY (6fc3fd046). This fixes the grpc-okhttp server incorrectly closing the connection with GOAWAY: too_many_pings
  • xds: SslContext updates handling when using system root certs (#12340) (63fdaaccc). Since FileWatcherCertificateProvider isn't used when using system root trust store, the SslContext update for the handshake that depended on it wasn't happening. This fix creates a separate CertificateProvider for handling system root certs that doesn't rely on the FileWatcherCertificateProvider.
  • xds: Make cluster selection interceptor run before other filters (#12381) (82f9b8ec0). This is needed when there is GcpAuthenticationFilter in the filter chain to make available the cluster resource in CallOptions.
  • xds: Handle wildcards in DNS SAN exact matching (#12345) (5b876cc86)
  • android: Fix UdsChannelBuilder with WiFi Proxy (349a35a9b)
  • binder: Avoid potential deadlock when canceling AsyncSecurityPolicy futures (#12283) (4725ced99)
  • binder: Fix a BinderServerTransport crash in the rare shutdown-before-start case (#12440) (91f3f4dc1)

Improvements

  • Improve status messages by including causal error details in config parsing errors for outlier detection and xds’s wrr locality policies (86e8b5617)
  • xds: Detect negative ref count for xds client (21696cd3d). A negative reference count could cause NullPointerExceptions, so when too many unrefs are detected it produces a SEVERE warning and prevents the reference count from going negative
  • xds: Support deprecated xDS TLS fields for Istio compat (#12435) (53cd1a225). This fixes a regression with Istio introduced in v1.73.0. This gives time for Istio’s new xDS field support to roll out
  • googleapis: Allow wrapping NameResolver to inject XdsClient (#12450) (27d150890). This allows googleapis to inject an xDS bootstrap to use with its channels even if one is already specified in the environment variable or system property. When the code was originally written there was a single global XdsClient, but since gRFC A71 Xds Fallback each target string has its own XdsClient and thus can have its own bootstrap
  • alts: Allow overriding metadata server address with env variable (9ac12ef89) (498f717fc)
  • binder: Let the server know when the client fails to authorize it. (#12445) (599a0a146) This avoids the server needing to wait for the handshake timeout before realizing the handshake failed

New Features

  • opentelemetry: Implement otel retry metrics from gRFC A96 (#12064) (d380191be)
  • opentelemetry: propagate baggage to server metrics for custom attributes (#12389) (155308db2)
  • xds: Allow EC Keys in SPIFFE Bundle Map parsing (#12399) (559e3ba41)
  • xds: Enable authority rewriting (gRFC A81), system root cert support (gRFC A82), GCP authentication filter (gRFC A83), and SNI (gRFC A101) (#12499) (246c2b1ea). Authority rewriting requires the control plane to be labeled trusted_xds_server in the bootstrap. System root cert support and SNI require using XdsChannelCredentials
  • rls: Add route lookup reason to request whether it is due to a cache miss or stale cache entry (#12442) (795ce0280)

Dependencies

  • compiler: C++ protobuf used by codegen upgraded to 26.1 (#12330) (55aefd5b8)
  • alts: Remove dep on grpclb (b769f966a). ALTS is no longer used with grpclb, so this removes dead code
  • Upgrade netty to 4.1.127.Final (b37ee67cf)

Thanks to

@​panchenko @​benjaminp @​HyunSangHan @​becomeStar @​ZachChuba @​oliviamariacodes @​kssumin @​laz-canva

... (truncated)

Commits
  • 251dfbb Bump version to 1.77.0
  • 5de8e93 Update README etc to reference 1.77.0
  • 155308d opentelemetry: propagate baggage to metrics for custom attributes, helps with...
  • efef0dd servlet: Ignore timeoutOnSleepingServer for Tomcat
  • 53cd1a2 xds: Support deprecated xDS TLS fields for Istio compat (#12435)
  • 6fc3fd0 okhttp: Fix bidirectional keep-alive causing spurious GO_AWAY
  • 498f717 alts: Metadata server address modification to account for default port
  • 9ac12ef alts: Override metadata server address with env variable
  • 246c2b1 xds: Enable flags for CSM Cloud run gRPC Java (#12499)
  • 5e8af56 core: Fix NPE during address update with Happy Eyeballs
  • Additional commits viewable in compare view

Updates io.swagger.parser.v3:swagger-parser from 2.1.35 to 2.1.36

Release notes

Sourced from io.swagger.parser.v3:swagger-parser's releases.

Swagger-parser 2.1.36 released!

  • fix: same name and different location in param + small refactor (#2250)
  • Fixed #2222 (Not being able to have different discriminator values map to the same entity) by switching key and value in map (#2249)
Commits
  • dddcf0f prepare release 2.1.36 (#2251)
  • bafaee7 fix: same name and different location in param + small refactor (#2250)
  • 676c821 Fix discriminator key and value were getting mixed up resulting in DuplicateK...
  • ef2cf16 bump snapshot 2.1.36-SNAPSHOT (#2240)
  • See full diff in compare view

Updates org.htmlunit:htmlunit-csp from 4.18.0 to 4.19.0

Release notes

Sourced from org.htmlunit:htmlunit-csp's releases.

HtmlUnit - CSP 4.19.0

  • no changes

see HtmlUnit release notes for more details

Full Changelog: HtmlUnit/htmlunit-csp@4.18.0...4.19.0

Commits

Updates org.sonarqube from 7.0.1.6134 to 7.1.0.6387

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 <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 gradle group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [org.flywaydb:flyway-core](https://github.com/flyway/flyway) | `11.17.0` | `11.17.1` |
| org.flywaydb:flyway-database-hsqldb | `11.17.0` | `11.17.1` |
| [io.grpc:grpc-protobuf](https://github.com/grpc/grpc-java) | `1.76.0` | `1.77.0` |
| [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) | `2.1.35` | `2.1.36` |
| [org.htmlunit:htmlunit-csp](https://github.com/HtmlUnit/htmlunit-csp) | `4.18.0` | `4.19.0` |
| org.sonarqube | `7.0.1.6134` | `7.1.0.6387` |



Updates `org.flywaydb:flyway-core` from 11.17.0 to 11.17.1
- [Release notes](https://github.com/flyway/flyway/releases)
- [Commits](flyway/flyway@flyway-11.17.0...flyway-11.17.1)

Updates `org.flywaydb:flyway-database-hsqldb` from 11.17.0 to 11.17.1

Updates `org.flywaydb:flyway-database-hsqldb` from 11.17.0 to 11.17.1

Updates `io.grpc:grpc-protobuf` from 1.76.0 to 1.77.0
- [Release notes](https://github.com/grpc/grpc-java/releases)
- [Commits](grpc/grpc-java@v1.76.0...v1.77.0)

Updates `io.swagger.parser.v3:swagger-parser` from 2.1.35 to 2.1.36
- [Release notes](https://github.com/swagger-api/swagger-parser/releases)
- [Commits](swagger-api/swagger-parser@v2.1.35...v2.1.36)

Updates `org.htmlunit:htmlunit-csp` from 4.18.0 to 4.19.0
- [Release notes](https://github.com/HtmlUnit/htmlunit-csp/releases)
- [Commits](HtmlUnit/htmlunit-csp@4.18.0...4.19.0)

Updates `org.sonarqube` from 7.0.1.6134 to 7.1.0.6387

---
updated-dependencies:
- dependency-name: org.flywaydb:flyway-core
  dependency-version: 11.17.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: org.flywaydb:flyway-database-hsqldb
  dependency-version: 11.17.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: org.flywaydb:flyway-database-hsqldb
  dependency-version: 11.17.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: io.grpc:grpc-protobuf
  dependency-version: 1.77.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: io.swagger.parser.v3:swagger-parser
  dependency-version: 2.1.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gradle
- dependency-name: org.htmlunit:htmlunit-csp
  dependency-version: 4.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
- dependency-name: org.sonarqube
  dependency-version: 7.1.0.6387
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gradle
...

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 Nov 25, 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.

1 participant