Update dependency org.springframework:spring-expression to v6.2.13 #10

Merged
ci merged 1 commit from renovate/all-minor-patch into main 2025-11-14 03:18:05 +01:00
Member

This PR contains the following updates:

Package Type Update Change
org.springframework:spring-expression compile patch 6.2.12 -> 6.2.13

⚠️ Warning

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


Release Notes

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

v6.2.13

Compare Source

New Features

  • Support response encoding in select and options JSP form tags #​35783
  • Preserve Connection readOnly state for DataSource with defaultReadOnly configuration #​35743
  • Optimize resource URL resolution in SortedResourcesFactoryBean #​35687
  • Relax multiple segment matching constraints in PathPattern #​35686
  • Support wildcard path elements at the start of path patterns #​35679
  • Validating byte[]s may produce OutOfMemoryError #​35675
  • Update in FragmentsRendering to names of static methods #​33974

🐞 Bug Fixes

  • ConcurrentReferenceHashMap misses dedicated computeIfAbsent, computeIfPresent, compute, merge implementations #​35794
  • Avoid unnecessary bridge method resolution around getMostSpecificMethod #​35780
  • Fix multi-release JAR issue with VirtualThreadDelegate #​35773
  • ContentNegotiationManager not finding media type when request includes quality parameter #​35754
  • Race condition in BufferingClientHttpResponseWrapper.getBody() #​35745
  • Deprecate setConnectTimeout on HttpComponentsClientHttpRequestFactory #​35748
  • Fix PathMatchingResourcePatternResolver to handle absolute paths in JAR manifests #​35732
  • BeanDefinitionBuilder.addAutowiredProperty causes error during AOT processing #​35731
  • Improve HttpServiceMethod support for Kotlin suspending functions returning Flow #​35718
  • Exception translation does not expose original BatchUpdateException anymore #​35717
  • Add hints for entities package-private methods #​35711
  • Fix concurrency permit leak causing deadlock in SimpleAsyncTaskExecutor #​35708
  • Remove jibx-marshaller element from spring-oxm.xsd #​35699
  • NullPointerException When Handling 407 with JdkClientHttpConnector in WebClient #​35692
  • Method-based Map injection fails against target Map with incomplete generics despite bean name or qualifier match #​35690
  • JUnit Jupiter TEST_METHOD ExtensionContextScope is not fully supported #​35680
  • Introduce isAutowirableConstructor(Executable, PropertyProvider) in TestConstructorUtils and deprecate existing variants #​35676
  • Reflection on java.sql.Types without runtime hints #​35674
  • getPubliclyAccessibleMethodIfPossible() returns hidden static method #​35667
  • RestClient hangs during upload with ReactorClientHttpRequestFactory #​34707

📔 Documentation

  • Correct formatting for Mono type #​35786
  • Improve Java Bean Validation documentation for controller methods #​35759
  • Fix typo in @NumberFormat Javadoc #​35742
  • Javadoc of AsyncConfigurer does not match runtime behavior #​35736
  • Document PathPattern behavior difference between */{name} and **/{*path} #​35727
  • Fix minor typo in RestClient documentation #​35723
  • Document test-method scoped TestContext semantics #​35716
  • Improve docs on AbstractStreamingClientHttpRequest for streaming vs buffering mode #​35700
  • Fix minor typo in JDBC Core Classes documentation #​35684
  • Fix typos #​35656
  • Improve spring-web filter documentation #​30454

🔨 Dependency Upgrades

❤️ Contributors

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

@​Anxton, @​Artur-, @​HJC96, @​MoadElfatihi, @​NYgomets, @​cbsingh1, @​dmitrysulman, @​ekcom, and @​scordio


Configuration

📅 Schedule: 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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [org.springframework:spring-expression](https://github.com/spring-projects/spring-framework) | compile | patch | `6.2.12` -> `6.2.13` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>spring-projects/spring-framework (org.springframework:spring-expression)</summary> ### [`v6.2.13`](https://github.com/spring-projects/spring-framework/releases/tag/v6.2.13) [Compare Source](https://github.com/spring-projects/spring-framework/compare/v6.2.12...v6.2.13) #### :star: New Features - Support response encoding in `select` and `options` JSP form tags [#&#8203;35783](https://github.com/spring-projects/spring-framework/issues/35783) - Preserve Connection readOnly state for DataSource with defaultReadOnly configuration [#&#8203;35743](https://github.com/spring-projects/spring-framework/issues/35743) - Optimize resource URL resolution in SortedResourcesFactoryBean [#&#8203;35687](https://github.com/spring-projects/spring-framework/pull/35687) - Relax multiple segment matching constraints in PathPattern [#&#8203;35686](https://github.com/spring-projects/spring-framework/issues/35686) - Support wildcard path elements at the start of path patterns [#&#8203;35679](https://github.com/spring-projects/spring-framework/issues/35679) - Validating byte\[]s may produce OutOfMemoryError [#&#8203;35675](https://github.com/spring-projects/spring-framework/issues/35675) - Update in FragmentsRendering to names of static methods [#&#8203;33974](https://github.com/spring-projects/spring-framework/issues/33974) #### :lady\_beetle: Bug Fixes - `ConcurrentReferenceHashMap` misses dedicated `computeIfAbsent`, `computeIfPresent`, `compute`, `merge` implementations [#&#8203;35794](https://github.com/spring-projects/spring-framework/issues/35794) - Avoid unnecessary bridge method resolution around getMostSpecificMethod [#&#8203;35780](https://github.com/spring-projects/spring-framework/issues/35780) - Fix multi-release JAR issue with VirtualThreadDelegate [#&#8203;35773](https://github.com/spring-projects/spring-framework/issues/35773) - ContentNegotiationManager not finding media type when request includes quality parameter [#&#8203;35754](https://github.com/spring-projects/spring-framework/issues/35754) - Race condition in BufferingClientHttpResponseWrapper.getBody() [#&#8203;35745](https://github.com/spring-projects/spring-framework/issues/35745) - Deprecate setConnectTimeout on HttpComponentsClientHttpRequestFactory [#&#8203;35748](https://github.com/spring-projects/spring-framework/issues/35748) - Fix PathMatchingResourcePatternResolver to handle absolute paths in JAR manifests [#&#8203;35732](https://github.com/spring-projects/spring-framework/pull/35732) - BeanDefinitionBuilder.addAutowiredProperty causes error during AOT processing [#&#8203;35731](https://github.com/spring-projects/spring-framework/issues/35731) - Improve `HttpServiceMethod` support for Kotlin suspending functions returning `Flow` [#&#8203;35718](https://github.com/spring-projects/spring-framework/pull/35718) - Exception translation does not expose original `BatchUpdateException` anymore [#&#8203;35717](https://github.com/spring-projects/spring-framework/issues/35717) - Add hints for entities package-private methods [#&#8203;35711](https://github.com/spring-projects/spring-framework/issues/35711) - Fix concurrency permit leak causing deadlock in SimpleAsyncTaskExecutor [#&#8203;35708](https://github.com/spring-projects/spring-framework/pull/35708) - Remove `jibx-marshaller` element from `spring-oxm.xsd` [#&#8203;35699](https://github.com/spring-projects/spring-framework/issues/35699) - NullPointerException When Handling 407 with JdkClientHttpConnector in WebClient [#&#8203;35692](https://github.com/spring-projects/spring-framework/issues/35692) - Method-based `Map` injection fails against target `Map` with incomplete generics despite bean name or qualifier match [#&#8203;35690](https://github.com/spring-projects/spring-framework/issues/35690) - JUnit Jupiter `TEST_METHOD` `ExtensionContextScope` is not fully supported [#&#8203;35680](https://github.com/spring-projects/spring-framework/issues/35680) - Introduce `isAutowirableConstructor(Executable, PropertyProvider)` in `TestConstructorUtils` and deprecate existing variants [#&#8203;35676](https://github.com/spring-projects/spring-framework/issues/35676) - Reflection on java.sql.Types without runtime hints [#&#8203;35674](https://github.com/spring-projects/spring-framework/issues/35674) - `getPubliclyAccessibleMethodIfPossible()` returns hidden static method [#&#8203;35667](https://github.com/spring-projects/spring-framework/issues/35667) - RestClient hangs during upload with ReactorClientHttpRequestFactory [#&#8203;34707](https://github.com/spring-projects/spring-framework/issues/34707) #### :notebook\_with\_decorative\_cover: Documentation - Correct formatting for `Mono` type [#&#8203;35786](https://github.com/spring-projects/spring-framework/pull/35786) - Improve Java Bean Validation documentation for controller methods [#&#8203;35759](https://github.com/spring-projects/spring-framework/issues/35759) - Fix typo in `@NumberFormat` Javadoc [#&#8203;35742](https://github.com/spring-projects/spring-framework/pull/35742) - Javadoc of AsyncConfigurer does not match runtime behavior [#&#8203;35736](https://github.com/spring-projects/spring-framework/issues/35736) - Document PathPattern behavior difference between \*/{name} and \*\*/{\*path} [#&#8203;35727](https://github.com/spring-projects/spring-framework/issues/35727) - Fix minor typo in RestClient documentation [#&#8203;35723](https://github.com/spring-projects/spring-framework/pull/35723) - Document test-method scoped `TestContext` semantics [#&#8203;35716](https://github.com/spring-projects/spring-framework/issues/35716) - Improve docs on AbstractStreamingClientHttpRequest for streaming vs buffering mode [#&#8203;35700](https://github.com/spring-projects/spring-framework/issues/35700) - Fix minor typo in JDBC Core Classes documentation [#&#8203;35684](https://github.com/spring-projects/spring-framework/pull/35684) - Fix typos [#&#8203;35656](https://github.com/spring-projects/spring-framework/pull/35656) - Improve spring-web filter documentation [#&#8203;30454](https://github.com/spring-projects/spring-framework/issues/30454) #### :hammer: Dependency Upgrades - Upgrade to ASM 9.9 plus lenient version check patch [#&#8203;35763](https://github.com/spring-projects/spring-framework/issues/35763) - Upgrade to Jetty 12.0.30 [#&#8203;35806](https://github.com/spring-projects/spring-framework/issues/35806) - Upgrade to Micrometer 1.14.13 [#&#8203;35810](https://github.com/spring-projects/spring-framework/issues/35810) - Upgrade to Reactor 2024.0.12 [#&#8203;35809](https://github.com/spring-projects/spring-framework/issues/35809) #### :heart: Contributors Thank you to all the contributors who worked on this release: [@&#8203;Anxton](https://github.com/Anxton), [@&#8203;Artur-](https://github.com/Artur-), [@&#8203;HJC96](https://github.com/HJC96), [@&#8203;MoadElfatihi](https://github.com/MoadElfatihi), [@&#8203;NYgomets](https://github.com/NYgomets), [@&#8203;cbsingh1](https://github.com/cbsingh1), [@&#8203;dmitrysulman](https://github.com/dmitrysulman), [@&#8203;ekcom](https://github.com/ekcom), and [@&#8203;scordio](https://github.com/scordio) </details> --- ### Configuration 📅 **Schedule**: 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. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS41LjAiLCJ1cGRhdGVkSW5WZXIiOiI0MS41LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
Update dependency org.springframework:spring-expression to v6.2.13
All checks were successful
Check code on push / build-and-deploy (push) Successful in 3m11s
aaf280f05d
ci scheduled this pull request to auto merge when all checks succeed 2025-11-14 03:06:13 +01:00
ci merged commit aaf280f05d into main 2025-11-14 03:18:05 +01:00
ci deleted branch renovate/all-minor-patch 2025-11-14 03:18:06 +01: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!10
No description provided.