Skip to content

Update maven - #158

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate-main/maven
Open

Update maven#158
renovate[bot] wants to merge 1 commit into
mainfrom
renovate-main/maven

Conversation

@renovate

@renovate renovate Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.codehaus.mojo:flatten-maven-plugin (source) 1.7.31.8.0 age adoption passing confidence
io.github.classgraph:classgraph 4.8.1844.8.186 age adoption passing confidence
com.squareup.okio:okio 3.17.03.18.1 age adoption passing confidence
org.jsoup:jsoup (source) 1.22.21.23.1 age adoption passing confidence
io.quarkus:quarkus-extension-maven-plugin 3.33.2.13.33.3 age adoption passing confidence
io.quarkus:quarkus-maven-plugin 3.33.2.13.33.3 age adoption passing confidence
io.quarkus:quarkus-extension-processor 3.33.2.13.33.3 age adoption passing confidence
io.grpc:grpc-stub 1.79.01.81.0 age adoption passing confidence
io.grpc:grpc-protobuf 1.79.01.81.0 age adoption passing confidence
io.grpc:grpc-netty-shaded 1.79.01.81.0 age adoption passing confidence
org.apache.cassandra:java-driver-metrics-micrometer 4.19.24.19.3 age adoption passing confidence
org.apache.cassandra:java-driver-core 4.19.24.19.3 age adoption passing confidence
org.springdoc:springdoc-openapi-starter-common (source) 3.0.33.1.0 age adoption passing confidence
org.springdoc:springdoc-openapi-starter-webflux-api (source) 3.0.33.1.0 age adoption passing confidence
org.springdoc:springdoc-openapi-starter-webmvc-ui (source) 3.0.33.1.0 age adoption passing confidence
org.springdoc:springdoc-openapi-starter-webmvc-api (source) 3.0.33.1.0 age adoption passing confidence
io.quarkus.platform:quarkus-bom 3.33.2.13.33.3 age adoption passing confidence
io.quarkus:quarkus-core 3.33.2.13.33.3 age adoption passing confidence
io.quarkus:quarkus-core-deployment 3.33.2.13.33.3 age adoption passing confidence
org.apache.qpid:qpid-broker-plugins-memory-store (source) 10.0.110.1.0 age adoption passing confidence
org.apache.qpid:qpid-broker-plugins-amqp-0-8-protocol (source) 10.0.110.1.0 age adoption passing confidence
org.apache.qpid:qpid-broker-core (source) 10.0.110.1.0 age adoption passing confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


jsoup: Cleaner may expose markup with custom raw-text elements

CVE-2026-71497 / GHSA-pmhh-3w7g-xqp8

More information

Details

When a custom Safelist permits certain raw-text elements, jsoup may incorrectly sanitize malformed HTML containing a tag name that ends in a control character. The tag may acquire the parsing behavior of a different element, causing content that should remain text to be emitted as active markup after serialization and potentially allowing XSS.

jsoup’s built-in Safelists are unaffected.

Patches

Upgrade to jsoup 1.23.1.

Workarounds

Until upgrading, do not permit raw-text elements in custom Safelists used to clean untrusted HTML.

Additional security considerations

This fix addresses malformed tag-name handling only.

Permitting raw-text elements in a custom Safelist does not make their contents inherently safe. For example, applications that permit style must apply appropriate CSS safeguards separately, because jsoup does not parse or sanitize CSS.

Severity

  • CVSS Score: 4.7 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


jsoup: Cleaner may expose markup with custom raw-text elements

CVE-2026-71497 / GHSA-pmhh-3w7g-xqp8

More information

Details

When a custom Safelist permits certain raw-text elements, jsoup may incorrectly sanitize malformed HTML containing a tag name that ends in a control character. The tag may acquire the parsing behavior of a different element, causing content that should remain text to be emitted as active markup after serialization and potentially allowing XSS.

jsoup’s built-in Safelists are unaffected.

Patches

Upgrade to jsoup 1.23.1.

Workarounds

Until upgrading, do not permit raw-text elements in custom Safelists used to clean untrusted HTML.

Additional security considerations

This fix addresses malformed tag-name handling only.

Permitting raw-text elements in a custom Safelist does not make their contents inherently safe. For example, applications that permit style must apply appropriate CSS safeguards separately, because jsoup does not parse or sanitize CSS.

Severity

  • CVSS Score: 4.7 / 10 (Medium)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N

References

This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).


Release Notes

mojohaus/flatten-maven-plugin (org.codehaus.mojo:flatten-maven-plugin)

v1.8.0

Compare Source

🚀 New features and improvements

🐛 Bug Fixes

🔧 Build

📦 Dependency updates

lysine-dev/okio (com.squareup.okio:okio)

v3.18.1

2026-07-28

  • Fix: Restore binary-compatibility with Okio 3.17.x for Kotlin/Native users. When we introduced
    the new base64() function, we inadvertently changed the binary signature! Ugh! This is now
    fixed and we've automated binary-compatibility checking for Kotlin/Native going forward.

v3.18.0

2026-07-21

  • Fix: Use wide character APIs to better support of non-UTF-8 filesystems on Windows.
  • Fix: Don't crash in AssetFileSystem.exists() when the underlying storage throws a
    FileNotFoundException.
  • Fix: Load WASI paths relative to their preopen. The platform behavior recently changed in
    NodeJS, causing our WasiFileSystem to be unable to access files!
  • New: Optionally ignore whitespace when decoding hexadecimal.
  • New: Optionally omit padding when encoding Base64.
  • New: BufferedSource.readUInt(), BufferedSink.writeUInt(), and similar functions for UByte,
    UShort and ULong. Also add support for unsigned and little-endian.
  • New: BufferedSink.utf8Appendable(). Use this to adapt an Okio sink to an Appendable.
  • New: Source.limit() returns a wrapped source with a strict limit on how many bytes are
    returned.
  • New: ByteString.equals(other, constantTime) for subtle defense against timing attacks.
jhy/jsoup (org.jsoup:jsoup)

v1.23.1

Improvements
  • Reduced retained memory when parsing with source position tracking enabled (Parser#setTrackPosition(true)). Source ranges are now stored in compact parser-owned span records instead of node and attribute user data, and Position objects are created lazily when source ranges are read. This cuts tracked DOM retained size by about 50-60% on representative benchmark documents, while keeping Node#sourceRange(), Element#endSourceRange(), and Attribute#sourceRange() behavior intact. #​2498
  • Added Element#classList(), an immutable snapshot of an element's class names in attribute order. Use hasClass() when you just need to test for one class, classList() when you want to read or iterate classes without needing a mutable result, and classNames() when you want the existing mutable, deduplicated set that can be written back with classNames(Set). The class APIs now share an HTML-whitespace scanner, which also makes classNames() faster and lighter on allocation, especially when walking many elements without class names. #​2500
  • Aligned HTML parser scope classification with the current HTML spec for select, foreignObject, and template. #​2501
  • Simplified the HTML tree builder's scope, implied-end-tag, and special-element checks by caching parser-only options on Tag. That improves HTML parser throughput by about 10% on small inputs and up to about 30% on larger inputs in the benchmark fixtures. #​2502
  • Improved HTML parser throughput stability by making hot tokeniser scan paths compile more predictably. #​2507
  • <noscript> fallback markup is now parsed into an inspectable DOM subtree in both the document head and body. The fallback acts as a contained parsing island, so malformed markup cannot disrupt the surrounding document structure, while normal HTML tokenization still applies within it. This also improves round-trip serialization. #​2537
  • Improved redirect credential handling as a defense-in-depth measure: explicit authorization headers and request cookies are no longer forwarded across origins, reducing exposure through open redirects and aligning with HTTP guidance. Cookies managed by a CookieStore continue to follow their configured scope. #​2540
  • Elements can now append their outer HTML, including their own tags, directly to an Appendable with Node#outerHtml(Appendable), without first creating a String. This complements Element#html(Appendable), which appends inner HTML only. #​2532
  • Aligned CDATA tokenization with the HTML spec: CDATA syntax in HTML content is parsed as a bogus comment, while it remains supported in SVG, MathML, and XML. Also improved namespace-aware fragment parsing so SVG and MathML contexts, HTML integration points, and context-sensitive tokenizer states are handled correctly. #​2542
  • When using the optional re2j regular expression engine, stack overflows caused by complex selector patterns are now normalized to a ValidationException with a Pattern complexity error message. #​2548
Bug Fixes
  • Fixed HTML parsing of mixed-case RCDATA end tags after tag-shaped text. For example, <title><p>Foo</TiTLE> and <textarea><img src=x></TeXtArEa> now keep the tag-shaped content as text instead of promoting it to markup. #​2503
  • Fixed W3CDom XML conversion so plain XML elements don't serialize with the reserved XML namespace as the default namespace. Explicit XML namespaces and xml:* attributes are still preserved. #​2504
  • Preserve control characters in parsed tag names #​2538
  • Updated HTTP redirects to follow the specification: 307 and 308 preserve the request method and content, 301 and 302 only change POST to GET, and Location is followed only for 301, 302, 303, 307, and 308 responses. Streamed request bodies are not buffered; if an automatic redirect requires replaying one, execution fails, so the caller can resend with a fresh stream. #​2540
  • Corrected the Cleaner's same-site link detection to compare hostnames rather than URL prefixes when applying rel=nofollow. #​2543
Build Changes
  • Cleaned up the Maven build for the multi-release JAR so Java 8 and Java 11+ sources compile as separate source sets. This avoids spurious Java 8 compiler warnings from newer-language overlay sources, keeps long-running parser checks behind an explicit profile, and preserves the same published artifacts and runtime behavior.
  • Improved parallelism and tuned timing in our integration tests, so that a full mvn clean verify drops from ~ 1m18s to ~ 21 seconds.
quarkusio/quarkus (io.quarkus:quarkus-extension-maven-plugin)

v3.33.3

Compare Source

Complete changelog
  • #​47504 - This Gauge has been already registered "mysql.queue.size"
  • #​50480 - Quarkus CLI fail if the offering is set but empty
  • #​50504 - Azure function host.json default bundle versions must be updated tu supported version
  • #​50572 - HibernateOrmProcessor causes Warning that package cannot be indexed due to package-info.java
  • #​52927 - Filter out package names before proxy generation to fix spurious warning
  • #​53274 - Add CLAUDE.local.md to .gitignore
  • #​53279 - Micrometer Prometheus: http_server_bytes_read registration fails with management interface enabled and random test port
  • #​53347 - Fix Azure-functions: update default ExtensionBundle to [4.0.0, 5.0.0)
  • #​53471 - Index does not contain the annotation definition: io.quarkus.security.PermissionsAllowed
  • #​53499 - Call reusable workflow for Quarkus Ecosystem CI
  • #​53515 - OpenAPI build failure with mp.openapi.scan.packages
  • #​53613 - Quarkus build with vertx-hazelcast fails after upgrade to 3.33.1
  • #​53737 - Handle edge-case with kapt plugin missing generated sources
  • #​53807 - Fix potential NPE and warn if trustall is being used in the exporter
  • #​53808 - Wrap shorthand admonition blocks in ==== delimiters
  • #​53812 - Using @ConfigProperty with Google Cloud Function throws Exception when executing QuarkusTest
  • #​53824 - Use proper CL when running Google Cloud Functions
  • #​53836 - Bump org.mariadb.jdbc:mariadb-java-client from 3.5.7 to 3.5.8
  • #​53877 - QuarkusEntryPoint uses URLDecoder.decode() which incorrectly converts + to space in file paths
  • #​53885 - Fix QuarkusEntryPoint path decoding issue
  • #​53982 - Quarkus Liquibase logicalFilePath in Native-Mode
  • #​54039 - QuarkusServerFileBodyHandler leaks temp files when any ReaderInterceptor is registered
  • #​54049 - Fix Liquibase native resolution when included changelogs use logicalFilePath
  • #​54079 - Cleanup temp files even when Jakarta REST Interceptors exist
  • #​54080 - Don't use ordered execution for @RunOnVertxContext
  • #​54087 - Upgrade gRPC to 1.81.0, fix substitutions
  • #​54091 - mTLS auth mechanism throws NPE when proxy "forwarded" header indicate HTTPS in the HTTP request
  • #​54100 - Add condition to Quarkiverse ecosystem CI workflow
  • #​54122 - Use Quarkus Gauge builder
  • #​54188 - Update JAXB to 4.0.8
  • #​54199 - docs: replace Markdown xml fence with AsciiDoc source block
  • #​54200 - [3.33] Harden OIDC debug logs
  • #​54242 - Prevent NPE in mTLS auth mech when communication with a trusted proxy happens over HTTP protocol but headers indicate HTTPS
  • #​54264 - Fix NPE in RemoteUserAttribute with anonymous identity
  • #​54310 - Prometheus compression header fix
  • #​54313 - Fix Hibernate ORM Dev UI localization and clear HQL input on submit
  • #​54342 - @ServerExceptionMapper with generic base class drops other exception mappers at runtime
  • #​54346 - Fix @ServerExceptionMapper bridge method handling for generic types
  • #​54389 - Updates to Infinispan 16.0.12.Final
  • #​54413 - Update documentation of ReflectiveClassConditionBuildItem
  • #​54423 - Fix "Kafka OAuthBearer authentication fails in native mode" again
  • #​54428 - Disambiguate config doc anchors for build-time properties
  • #​54432 - Fix platform BOM and platform metadata override ordering
  • #​54480 - Lambda fails serialization when returning Record, succeeds when swapped to Object
  • #​54484 - Properly support java.lang.Record as Lambda return type
  • #​54497 - Agroal invalid connection metric has the wrong description
  • #​54499 - Fix wrong description for agroal.invalid.count metric
  • #​54525 - [3.33] Updates to Infinispan 16.0.12.Final
  • #​54527 - Avoid transfer progress in Quarkus Update commands
  • #​54585 - [3.33] Bump postgresql-jdbc.version to 42.7.11
  • #​54588 - Do not bytecode record the Vert.x service instances
  • #​54604 - With quarkus.thread-pool.queue-size set, async health work can be silently dropped
  • #​54609 - Don't ignore Future in Smallrye Health
  • #​54673 - add config properties section to cyclonedx guide
  • #​54675 - Add cyclone configuration to docs
  • #​54689 - Basic auth may return 401 with older clients when realm is unset
  • #​54697 - Document Basic authentication realm compatibility
  • #​54708 - Updates Infinispan to 16.0.13
  • #​54729 - Gradle: imageBuild and imagePush use this output of :jandex without declaring dependency
  • #​54730 - Gradle plugin: declare jandex task ordering for all tasks consuming main source set resources
  • #​54739 - [3.33] Bump the hibernate group with 9 updates
  • #​54778 - [3.33] Some lost backports
  • #​54798 - Fix dead links in kafka.adoc
  • #​54799 - Fix dead micrometer.io links in telemetry-micrometer.adoc
  • #​54800 - Fix dead links in dev-ui.adoc
  • #​54801 - Fix broken GitHub links across several guides
  • #​54807 - Fix dead links in security guides
  • #​54808 - Fix dead links in REST guides
  • #​54819 - Drop trailing slash that causes a 404
  • #​54835 - [3.33] Upgrade micrometer to 1.16.6
  • #​54837 - Add UnwrappedTypeResolverBuilder reflective class registration to kubernetes-client
  • #​54838 - Fix Javadoc of ClientRedirectHandler
  • #​54872 - Bump org.mariadb.jdbc:mariadb-java-client from 3.5.8 to 3.5.9
  • #​54873 - Bump io.quarkus:quarkus-fs-util from 1.4.0 to 1.4.2
  • #​54875 - Treat empty registry offering as unset
  • #​54889 - Response not handled in ContainerResponseFilter for dropped HTTP requests
  • #​54903 - Allow the use of @Cancellable on ContainerResponseFilter
  • #​54909 - Change log level of some OIDC log messages from debug to warn
  • #​55008 - Quarkus REST sub-resources return 500 for malformed content type unlike 415 from top-level resource
  • #​55009 - Quarkus REST: fix response status for sub-resource requests with a malformed content type
  • #​55018 - Enforce no duplicate POM dependencies via maven-enforcer-plugin
  • #​55027 - [3.33] Switch from org.fusesource.jansi to org.jline:jansi
  • #​55058 - [3.33] Make MultiRootPathTree.apply() consistent with accept()
  • #​55101 - [3.33] Update to MicroProfile API 3.1.1
  • #​55108 - [3.33] Bump jackson to 2.21.4
  • #​55172 - [3.33] Upgrade to Keycloak 26.0.10
  • #​55176 - Fix performance regression in AotQuarkusEntryPoint
  • #​55328 - Bump org.postgresql:postgresql from 42.7.11 to 42.7.13
  • #​55361 - Set a default GraphQL query depth limit of 10
grpc/grpc-java (io.grpc:grpc-stub)

v1.81.0

In this release we drop support for Android API level 22 or lower (Lollipop or earlier), following Google Play Service’s discontinued updates for Lollipop (API levels 21 & 22) and now requires a minimum of API level 23 (Android 6.0 Marshmallow).

API Changes

  • api: Deprecate LoadBalancer.handleResolvedAddresses(). Developers maintaining custom LoadBalancer implementations should transition to using LoadBalancer.acceptResolvedAddresses(). Unlike the deprecated method, acceptResolvedAddresses() returns a Status object, allowing the load balancer to explicitly report success or reject the update if the provided addresses or configuration are invalid. (#​11623)

Behavior Changes

  • core: Enable dns "caching" on Android for 30 seconds to reduce CPU impact of a refresh loop with an LB policy (0675f70). DnsNameResolver ignores re-resolution requests on OpenJDK-like platforms if it has been too soon since the last DNS query because InetAddress.getAllByName() has a cache with a fixed entry lifetime, but this logic was disabled for Android which does not have that style of cache. Android’s cache uses the result TTL, which will rarely be less than 30 seconds. This change would probably be most noticeable when 1) changing to a different network (e.g., from wifi to mobile), 2) the server has different addresses for different networks, and 3) the app is not using AndroidChannelBuilder with an android.context.Context. For reference, it seems Chrome caches for 1 minute
  • xds: reuse connections to the control plane across channels (e39c38b). Previously each channel using the xds name resolver would create its own channel to communicate with the control plane. Now they share control plane channels, while still having separate RPCs

Bug Fixes

  • opentelemetry: Fix baggage propagation, the baggage propagation for opentelemetry introduced in #​12389 was broken. The context is decided once and used for all recording for the call, thus guaranteeing all record()s have consistent information.
  • core: Address a race condition where ManagedChannelOrphanWrapper could incorrectly log a "not shutdown properly" warning during garbage collection when using directExecutor(). (#​12705) (d459338)
  • xds: Fix xDS HTTP CONNECT's transport socket name bug which is now corrected to use typeUrl. (#​12740) (eac9fe9)
  • xds: Fix an issue where subchannel metrics were dropping their association with the backend_service. This ensures xDS load balancing metrics are reported accurately. (#​12735)

New Features

  • netty: Add tcp metrics, by implementing a few of the metrics defined in A80.
  • api: Add a CallOption for a custom label on per-RPC metrics (0e39b29). This CallOption is copied by grpc-opentelemetry to the grpc.client.call.custom label as defined by gRFC A108. See also the gRPC OpenTelemetry Metrics guide (update in-progress)
  • xds: Add support for Weighted Round Robin (WRR) load balancing driven by custom backend metrics, implementing the behavior defined in gRFC A114. (#​12645)
  • utils: Update AdvancedTlsX509KeyManager so that developers can now preserve and use key aliases when dynamically reloading TLS certificates. (#​12686)

Documentation

  • Update the "Outgoing Flow Control" section in the Manual Flow Control example to say onNext() does not block, but rather queues the messages in memory and advises developers to use CallStreamObserver.isReady() to prevent this memory exhaustion (#​12700) (a3a9ffc) (#​12726) (65ae2ef)
  • examples: Clean up Health example, and document need for grpc-services (3ed732f)

Dependencies

  • Upgrade Dependencies (#​12719) (16e17ab). Google-auth-library: 1.42.1, animal-sniffer: 1.27, assertj-core:3.27.7, error_prone_annotations:2.48.0, proto-google-common-protos:2.64.1, google-cloud-logging:3.23.10, jetty-http2-server:12.1.7, jetty-ee10-servlet:12.1.7, lincheck:3.4, opentelemetry-api:1.60.1, opentelemetry-exporter-prometheus:1.60.1-alpha, opentelemetry-gcp-resources:1.54.0-alpha, opentelemetry-sdk-extension-autoconfigure:1.60.1, opentelemetry-sdk-testing:1.60.1, robolectric:4.16.1, tomcat-embed-core:10.1.52, tomcat-embed-core9: 9.0.115,
  • Upgrade Netty to 4.1.132 and netty-tcnative to 2.0.75 (1528f80)

Thanks to

v1.80.0

API Changes

  • core: Added PickResult.copyWithSubchannel() and PickResult.copyWithStreamTracerFactory() to simplify updating PickResult while preserving metadata. Load balancing policies should now ensure ForwardingSubchannel decorators are unwrapped before being returned in a pick result. (#​12658) (eae16b2)

Bug Fixes

  • core: Fixed the retry backoff jitter range to [0.8, 1.2] to align with the gRPC A6 specification. Retries will now occur more consistently around the calculated backoff interval. (#​12639) (024fdd0)
    core: Fixed a race condition in RetriableStream where inFlightSubStreams counting could become inconsistent during concurrent retry and deadline events. This ensures that client calls (such as blockingUnaryCall) do not hang indefinitely and correctly receive a close signal. (#​12649) (73abb48)

Improvements

  • api: Trigger R8's ServiceLoader optimization to reduce necessary configuration when using R8 Full Mode (470219f). This allows gRPC to avoid reflection, and the need to specify -keeps for various class’s constructors.
    Upgrade to protobuf 33.4 (#​12615) (50c18f1)
  • cronet: Introduced CRONET_READ_BUFFER_SIZE_KEY to allow customizing the read buffer size per-stream via CallOptions. Increasing the buffer size from the 4KB default can significantly improve performance for large messages by reducing JNI and context-switching overhead. (31fdb6c)
  • api: Moved FlagResetRule to api/testFixtures and updated ManagedChannelRegistry to honor the GRPC_ENABLE_RFC3986_URIS feature flag. This ensures that target parsing is consistent across the library when the new URI parser is enabled. (#​12608)
  • api: Updated NameResolverRegistry to natively support io.grpc.Uri. This is a foundational change that allows gRPC's name resolution system to handle URIs parsed with the new RFC 3986-compliant parser, ensuring more robust target handling. (#​12609) (9903488)
  • xds: Removed the GRPC_EXPERIMENTAL_XDS_SNI feature flag. SNI determination via xDS is now always enabled and follows gRFC A101, where SNI is derived from xDS configurations like auto_host_sni or UpstreamTlsContext.sni. This ensures that no SNI is sent if not explicitly configured, unless the legacy channel authority fallback is enabled. (#​12625) (ac44e96)

New Features

  • core: pick_first shuffling now a weighted shuffle and observes weights from EDS (34dd290). This finishes the gRFC A113 pick_first: Weighted Random Shuffling support
  • netty: Added RFC 3986 support to the unix: name resolver. This enables proper parsing of Unix domain socket URIs, including correct handling of query and fragment components in both hierarchical (e.g., unix:///path) and opaque (e.g., unix:/path) formats. (#​12659)

Thanks to

datastax/java-driver (org.apache.cassandra:java-driver-metrics-micrometer)

v4.19.3

Compare Source

Release announcement

Changelog:

  • [bug] CASSJAVA-3: Fix ordering of LIMIT and PER PARTITION LIMIT clauses
  • [bug] PR 2050: Fix race condition in ClockSeqAndNodeContainer
  • [improvement] CASSJAVA-108: Update ESRI (and remove org.json) dependencies
  • [improvement] PR 2076: Bump Jackson to 2.20.1
  • [improvement] PR 2047: Re-work ordering clause support in query builder
  • [improvement] PR 2051, fixup PR 2088: Bump logback to 1.2.13, slf4j to 1.7.26
  • [improvement] CASSJAVA-113: Bump LZ4 to 1.10.1, Netty to 4.1.130.Final
springdoc/springdoc-openapi (org.springdoc:springdoc-openapi-starter-common)

v3.1.0

Compare Source

Added

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot requested a review from lis0x90 as a code owner July 27, 2026 06:33
@github-actions github-actions Bot added the bug Something isn't working label Jul 27, 2026
@renovate
renovate Bot force-pushed the renovate-main/maven branch 2 times, most recently from a0f7900 to 1779917 Compare July 27, 2026 12:04
@renovate renovate Bot changed the title fix(deps): update maven to v4.19.3 fix(deps): update maven Jul 27, 2026
@renovate
renovate Bot force-pushed the renovate-main/maven branch 4 times, most recently from d59a141 to 2447c1f Compare July 27, 2026 13:53
@renovate renovate Bot changed the title fix(deps): update maven Update maven Jul 27, 2026
@renovate
renovate Bot force-pushed the renovate-main/maven branch 4 times, most recently from c0c1758 to 67689d3 Compare August 2, 2026 01:12
@renovate
renovate Bot force-pushed the renovate-main/maven branch 6 times, most recently from 0336c82 to 6a01971 Compare August 7, 2026 13:45
@renovate
renovate Bot force-pushed the renovate-main/maven branch from 6a01971 to 58c4661 Compare August 9, 2026 07:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant