Update all non-major dependencies #27

Merged
ci merged 1 commit from renovate/all-minor-patch into main 2026-04-24 04:17:41 +02:00
Member

This PR contains the following updates:

Package Type Update Change
org.springframework:spring-expression compile patch 7.0.67.0.7
org.projectlombok:lombok (source) patch 1.18.441.18.46
org.projectlombok:lombok (source) provided patch 1.18.441.18.46

Release Notes

spring-projects/spring-framework (org.springframework:spring-expression)

v7.0.7

Compare Source

New Features

  • Improve SpringValidatorAdapter and MethodValidationAdapter performance #​36621
  • Support JSON array decoding to Flux in KotlinSerializationJsonDecoder #​36597
  • Deprecate methodIdentification() in CacheAspectSupport for removal #​36575
  • Add MockRestServiceServer#createServer variant for RestClient #​36572
  • Create RestClientXhrTransport variant replacing RestTemplateXhrTransport #​36566
  • Improve error handling in multipart codecs #​36563
  • Make ApplicationListenerMethodAdapter#getTargetMethod() public #​36558
  • ApiVersionConfigurer.setSupportedVersionPredicate() returns void instead of ApiVersionConfigurer #​36551
  • LazyConnectionDataSourceProxy does not work well with Hibernate's multi-tenancy by schema strategy #​36527
  • Add registerManagedResource variant with bean key argument to MBeanExporter #​36520
  • Handle blank Accept-Language header in AcceptHeaderLocaleResolver #​36513
  • Make AbstractStreamingClientHttpRequest and AbstractBufferingClientHttpRequest public #​36501
  • MySQL Error 149 (Galera/WSREP conflict) not translated to ConcurrencyFailureException in Spring JDBC/ORM #​36499
  • Add PreFlightRequestFilter #​36482
  • Support configuration of extension context scope for SpringExtension via Spring or JUnit properties #​36460
  • Lower log level of "Cache miss for REQUEST dispatch" in HandlerMappingIntrospector #​36309

🐞 Bug Fixes

  • WebDataBinder unnecessarily instantiates collections when using the "!" and "_" prefixes #​36625
  • Cache pollution from high-cardinality FieldError default messages in MessageSourceSupport #​36609
  • MergedAnnotation does not use ClassLoader for method or field #​36606
  • @Sql fails if DataSource is wrapped in a TransactionAwareDataSourceProxy #​36611
  • AnnotatedTypeMetadata no longer retains source declaration order on Java 24+ #​36598
  • MergedAnnotation.asMap() fails when an attribute references a non-existent class #​36586
  • FileSystemResource does not strictly follow the Resource#isReadable() contract #​36584
  • Converter overrides in HttpMessageConverters only apply when defaults are registered #​36579
  • Invalid method return type metadata for ClassFile variant on JDK 24+ #​36577
  • Fix Writer lifecycle for AbstractJsonHttpMessageConverter.writeInternal(Object, Type, Writer) #​36565
  • Flushing-related regression in SseServerResponse #​36537
  • LazyConnectionDataSourceProxy does not pass on holdability to target Connection #​36528
  • AnnotationBeanNameGenerator fails when an annotation references a non-existent class #​36524
  • Perserve default API version in RestClientAdapter #​36514
  • Inconsistent codings resolution in resource resolvers #​36507
  • DefaultJmsListenerContainer may hang in an endless loop in doShutdown #​36506
  • Query not hidden in DefaultClientResponse checkpoint #​36502
  • RestClient closes stream for ResponseEntity responses #​36492
  • IllegalStateException when using websocket handshake headers with Tomcat #​36486
  • Invalid nullness information for ParameterizedTypeReference #​36477
  • WebTestClient cannot assert null list elements #​36476
  • Handle Kotlin nullable value class param correctly in CoroutineUtils #​36449
  • Remove RFC 2047 encoding from Content-Disposition filename #​36328
  • Parent traceId is not reused when calling WebClient.awaitExchange function #​36182

📔 Documentation

  • Clarify semantics of HttpMethod.valueOf() #​36652
  • Document whitespace semantics in SpEL expressions #​36628
  • Document that spring.profiles.active is ignored by @ActiveProfiles #​36600
  • MergedAnnotation.asAnnotationAttributes() Javadoc incorrectly states that it creates an immutable map #​36567
  • Fix incorrect Javadoc in HandlerMethodReturnValueHandlerComposite regarding caching #​36555
  • Fix incorrect method name in TypeDescriptor.array() Javadoc #​36549
  • Introduce Kotlin examples for Bean Overrides (@MockitoBean, etc.) #​36541
  • Fix incorrect cross-reference links in AbstractEnvironment Javadoc #​36516
  • Document RetryTemplate#invoke variants in reference manual #​36452
  • Link observability section to Micrometer Observation Handler docs #​34994

🔨 Dependency Upgrades

❤️ Contributors

Thank you to all the contributors who worked on this release:

@​Mohak-Nagaraju, @​Sineaggi, @​T45K, @​angry-2k, @​bebeis, @​cookie-meringue, @​dmitrysulman, @​elgunshukurov, @​itsmevichu, @​junhyung8795, @​msridhar, @​nameearly, @​tobifasc, and @​xxxxxxjun

projectlombok/lombok (org.projectlombok:lombok)

v1.18.46

Compare Source


Configuration

📅 Schedule: (UTC)

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

🚦 Automerge: Enabled.

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 has been generated by Mend Renovate.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [org.springframework:spring-expression](https://github.com/spring-projects/spring-framework) | compile | patch | `7.0.6` → `7.0.7` | | [org.projectlombok:lombok](https://projectlombok.org) ([source](https://github.com/projectlombok/lombok)) | | patch | `1.18.44` → `1.18.46` | | [org.projectlombok:lombok](https://projectlombok.org) ([source](https://github.com/projectlombok/lombok)) | provided | patch | `1.18.44` → `1.18.46` | --- ### Release Notes <details> <summary>spring-projects/spring-framework (org.springframework:spring-expression)</summary> ### [`v7.0.7`](https://github.com/spring-projects/spring-framework/releases/tag/v7.0.7) [Compare Source](https://github.com/spring-projects/spring-framework/compare/v7.0.6...v7.0.7) #### :star: New Features - Improve `SpringValidatorAdapter` and `MethodValidationAdapter` performance [#&#8203;36621](https://github.com/spring-projects/spring-framework/issues/36621) - Support JSON array decoding to `Flux` in `KotlinSerializationJsonDecoder` [#&#8203;36597](https://github.com/spring-projects/spring-framework/pull/36597) - Deprecate `methodIdentification()` in `CacheAspectSupport` for removal [#&#8203;36575](https://github.com/spring-projects/spring-framework/issues/36575) - Add MockRestServiceServer#createServer variant for RestClient [#&#8203;36572](https://github.com/spring-projects/spring-framework/issues/36572) - Create RestClientXhrTransport variant replacing RestTemplateXhrTransport [#&#8203;36566](https://github.com/spring-projects/spring-framework/issues/36566) - Improve error handling in multipart codecs [#&#8203;36563](https://github.com/spring-projects/spring-framework/issues/36563) - Make `ApplicationListenerMethodAdapter#getTargetMethod()` public [#&#8203;36558](https://github.com/spring-projects/spring-framework/issues/36558) - ApiVersionConfigurer.setSupportedVersionPredicate() returns void instead of ApiVersionConfigurer [#&#8203;36551](https://github.com/spring-projects/spring-framework/issues/36551) - LazyConnectionDataSourceProxy does not work well with Hibernate's multi-tenancy by schema strategy [#&#8203;36527](https://github.com/spring-projects/spring-framework/issues/36527) - Add registerManagedResource variant with bean key argument to MBeanExporter [#&#8203;36520](https://github.com/spring-projects/spring-framework/issues/36520) - Handle blank Accept-Language header in AcceptHeaderLocaleResolver [#&#8203;36513](https://github.com/spring-projects/spring-framework/pull/36513) - Make AbstractStreamingClientHttpRequest and AbstractBufferingClientHttpRequest public [#&#8203;36501](https://github.com/spring-projects/spring-framework/issues/36501) - MySQL Error 149 (Galera/WSREP conflict) not translated to ConcurrencyFailureException in Spring JDBC/ORM [#&#8203;36499](https://github.com/spring-projects/spring-framework/issues/36499) - Add PreFlightRequestFilter [#&#8203;36482](https://github.com/spring-projects/spring-framework/issues/36482) - Support configuration of extension context scope for `SpringExtension` via Spring or JUnit properties [#&#8203;36460](https://github.com/spring-projects/spring-framework/issues/36460) - Lower log level of "Cache miss for REQUEST dispatch" in HandlerMappingIntrospector [#&#8203;36309](https://github.com/spring-projects/spring-framework/issues/36309) #### :lady\_beetle: Bug Fixes - WebDataBinder unnecessarily instantiates collections when using the "!" and "\_" prefixes [#&#8203;36625](https://github.com/spring-projects/spring-framework/issues/36625) - Cache pollution from high-cardinality FieldError default messages in MessageSourceSupport [#&#8203;36609](https://github.com/spring-projects/spring-framework/issues/36609) - `MergedAnnotation` does not use `ClassLoader` for method or field [#&#8203;36606](https://github.com/spring-projects/spring-framework/pull/36606) - `@Sql` fails if `DataSource` is wrapped in a `TransactionAwareDataSourceProxy` [#&#8203;36611](https://github.com/spring-projects/spring-framework/issues/36611) - `AnnotatedTypeMetadata` no longer retains source declaration order on Java 24+ [#&#8203;36598](https://github.com/spring-projects/spring-framework/issues/36598) - `MergedAnnotation.asMap()` fails when an attribute references a non-existent class [#&#8203;36586](https://github.com/spring-projects/spring-framework/issues/36586) - `FileSystemResource` does not strictly follow the `Resource#isReadable()` contract [#&#8203;36584](https://github.com/spring-projects/spring-framework/issues/36584) - Converter overrides in HttpMessageConverters only apply when defaults are registered [#&#8203;36579](https://github.com/spring-projects/spring-framework/issues/36579) - Invalid method return type metadata for ClassFile variant on JDK 24+ [#&#8203;36577](https://github.com/spring-projects/spring-framework/pull/36577) - Fix Writer lifecycle for `AbstractJsonHttpMessageConverter.writeInternal(Object, Type, Writer)` [#&#8203;36565](https://github.com/spring-projects/spring-framework/issues/36565) - Flushing-related regression in `SseServerResponse` [#&#8203;36537](https://github.com/spring-projects/spring-framework/issues/36537) - LazyConnectionDataSourceProxy does not pass on holdability to target Connection [#&#8203;36528](https://github.com/spring-projects/spring-framework/issues/36528) - `AnnotationBeanNameGenerator` fails when an annotation references a non-existent class [#&#8203;36524](https://github.com/spring-projects/spring-framework/issues/36524) - Perserve default API version in RestClientAdapter [#&#8203;36514](https://github.com/spring-projects/spring-framework/pull/36514) - Inconsistent codings resolution in resource resolvers [#&#8203;36507](https://github.com/spring-projects/spring-framework/issues/36507) - `DefaultJmsListenerContainer` may hang in an endless loop in `doShutdown` [#&#8203;36506](https://github.com/spring-projects/spring-framework/issues/36506) - Query not hidden in DefaultClientResponse checkpoint [#&#8203;36502](https://github.com/spring-projects/spring-framework/issues/36502) - RestClient closes stream for ResponseEntity<InputStream> responses [#&#8203;36492](https://github.com/spring-projects/spring-framework/issues/36492) - IllegalStateException when using websocket handshake headers with Tomcat [#&#8203;36486](https://github.com/spring-projects/spring-framework/issues/36486) - Invalid nullness information for ParameterizedTypeReference [#&#8203;36477](https://github.com/spring-projects/spring-framework/issues/36477) - WebTestClient cannot assert null list elements [#&#8203;36476](https://github.com/spring-projects/spring-framework/issues/36476) - Handle Kotlin nullable value class param correctly in `CoroutineUtils` [#&#8203;36449](https://github.com/spring-projects/spring-framework/pull/36449) - Remove RFC 2047 encoding from Content-Disposition filename [#&#8203;36328](https://github.com/spring-projects/spring-framework/pull/36328) - Parent traceId is not reused when calling WebClient.awaitExchange function [#&#8203;36182](https://github.com/spring-projects/spring-framework/issues/36182) #### :notebook\_with\_decorative\_cover: Documentation - Clarify semantics of HttpMethod.valueOf() [#&#8203;36652](https://github.com/spring-projects/spring-framework/pull/36652) - Document whitespace semantics in SpEL expressions [#&#8203;36628](https://github.com/spring-projects/spring-framework/issues/36628) - Document that `spring.profiles.active` is ignored by `@ActiveProfiles` [#&#8203;36600](https://github.com/spring-projects/spring-framework/pull/36600) - `MergedAnnotation.asAnnotationAttributes()` Javadoc incorrectly states that it creates an immutable map [#&#8203;36567](https://github.com/spring-projects/spring-framework/issues/36567) - Fix incorrect Javadoc in HandlerMethodReturnValueHandlerComposite regarding caching [#&#8203;36555](https://github.com/spring-projects/spring-framework/pull/36555) - Fix incorrect method name in `TypeDescriptor.array()` Javadoc [#&#8203;36549](https://github.com/spring-projects/spring-framework/pull/36549) - Introduce Kotlin examples for Bean Overrides (`@MockitoBean`, etc.) [#&#8203;36541](https://github.com/spring-projects/spring-framework/issues/36541) - Fix incorrect cross-reference links in AbstractEnvironment Javadoc [#&#8203;36516](https://github.com/spring-projects/spring-framework/pull/36516) - Document RetryTemplate#invoke variants in reference manual [#&#8203;36452](https://github.com/spring-projects/spring-framework/issues/36452) - Link observability section to Micrometer Observation Handler docs [#&#8203;34994](https://github.com/spring-projects/spring-framework/issues/34994) #### :hammer: Dependency Upgrades - Upgrade to Micrometer 1.16.5 [#&#8203;36659](https://github.com/spring-projects/spring-framework/issues/36659) - Upgrade to Reactor 2025.0.5 [#&#8203;36658](https://github.com/spring-projects/spring-framework/issues/36658) #### :heart: Contributors Thank you to all the contributors who worked on this release: [@&#8203;Mohak-Nagaraju](https://github.com/Mohak-Nagaraju), [@&#8203;Sineaggi](https://github.com/Sineaggi), [@&#8203;T45K](https://github.com/T45K), [@&#8203;angry-2k](https://github.com/angry-2k), [@&#8203;bebeis](https://github.com/bebeis), [@&#8203;cookie-meringue](https://github.com/cookie-meringue), [@&#8203;dmitrysulman](https://github.com/dmitrysulman), [@&#8203;elgunshukurov](https://github.com/elgunshukurov), [@&#8203;itsmevichu](https://github.com/itsmevichu), [@&#8203;junhyung8795](https://github.com/junhyung8795), [@&#8203;msridhar](https://github.com/msridhar), [@&#8203;nameearly](https://github.com/nameearly), [@&#8203;tobifasc](https://github.com/tobifasc), and [@&#8203;xxxxxxjun](https://github.com/xxxxxxjun) </details> <details> <summary>projectlombok/lombok (org.projectlombok:lombok)</summary> ### [`v1.18.46`](https://github.com/projectlombok/lombok/compare/v1.18.44...v1.18.46) [Compare Source](https://github.com/projectlombok/lombok/compare/v1.18.44...v1.18.46) </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Enabled. ♻ **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](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4xNDAuMCIsInVwZGF0ZWRJblZlciI6IjQzLjE0MC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
Update all non-major dependencies
All checks were successful
Verify Build / verify (pull_request) Successful in 3m8s
cd1d666634
ci scheduled this pull request to auto merge when all checks succeed 2026-04-24 04:06:48 +02:00
ci merged commit dd7cd48f30 into main 2026-04-24 04:17:41 +02:00
ci deleted branch renovate/all-minor-patch 2026-04-24 04:17:42 +02:00
ci referenced this pull request from a commit 2026-04-24 04:17:43 +02:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
golatar-oss/memstoredb!27
No description provided.