Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update spring data #3256

Open
wants to merge 1 commit into
base: 4.10.x
Choose a base branch
from
Open

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
org.springframework.data:spring-data-bom 2024.0.5 -> 2024.1.0 age adoption passing confidence
org.springframework.data:spring-data-commons (source) 3.3.5 -> 3.4.0 age adoption passing confidence
org.springframework.data:spring-data-jpa (source) 3.3.5 -> 3.4.0 age adoption passing confidence

Release Notes

spring-projects/spring-data-bom (org.springframework.data:spring-data-bom)

v2024.1.0

Compare Source

:shipit: Participating Modules
🔨 Dependency Upgrades
  • Upgrade to Maven Wrapper 3.9.9 #​235
  • Upgrade to Maven Wrapper 3.9.8 #​224

v2024.0.6

Compare Source

:shipit: Participating Modules
🔨 Dependency Upgrades
  • Upgrade to Maven Wrapper 3.9.9 #​236
spring-projects/spring-data-commons (org.springframework.data:spring-data-commons)

v3.4.0

Compare Source

📗 Links

⭐ New Features

  • Prepare for removal of ListenableFuture #​3190
  • Revisit internal caching arrangements #​3185
  • Move RepositoryMethodContext to repository.core package #​3175
  • Expose ReturnedType factory method #​3163
  • KotlinBeanInfoFactory does not consider overridden bean property accessors #​3140
  • Add support for interface projection using Kotlin "is"-properties #​3127
  • Introduce Parameter.getRequiredName() method #​3124
  • Kotlin lazy property identified as persistent entity #​3112
  • Add type name to AbstractRepositoryMetadata verification exception message #​3091
  • Add SPI mechanism for ahead-of-time repository fragment registration #​3090
  • Add ValueExpression infrastructure for query methods #​3049

🐞 Bug Fixes

  • KotlinBeanInfoFactory throws IntrospectionException when the setter doesn't match getter type #​3167
  • Open projections with accessors not following JavaBeans Spec naming identified as closed projection #​3164
  • JSON rendering setup to issue warning logs causes custom Page implementations not to render correctly #​3137
  • IndexOutOfBoundsException on KotlinCopyMethod.shouldUsePublicCopyMethod(…) when saving single-property Kotlin data class with Association #​3131
  • Thread Pinning in Repositories#cacheRepositoryFactory() #​3126
  • Custom Repository returns Optional as return type for T #​3125
  • @EnableSpringDataWebSupport not working in native image #​3117
  • ConcurrentModificationException for registerEvent in TransactionalEventListener #​3116
  • KotlinBeanInfoFactory.getBeanInfo throws exception when introspecting getter on value class #​3109
  • DTO projection properties mapping to associations are not propulated #​3104
  • PageModel uses wrapping serialization mode if no SpringDataWebSettings found #​3101

📔 Documentation

  • Loading non-bean instance to spring context, due to custom repository configuration. #​3200
  • Refine Scrolling refdocs #​3192
  • Minor improvements in BootstrapMode Javadoc #​3191
  • Fix spelling mistake in SimplePropertyValueConversions #​3189
  • Remove outdated information from Javadoc for PageableHandlerMethodArgumentResolver[Support] #​3188
  • Incorrect implementation of "ID" in SQL queries #​3173
  • Update query-methods-details.adoc #​3172
  • Fix typo in definition.adoc #​3147
  • Split projections document fragment into multiple subfragments #​3144
  • Corrected the definition of coroutines #​3136
  • Bundle Javadoc with Antora documentation site #​3128

🔨 Dependency Upgrades

  • Upgrade to Maven Wrapper 3.9.9 #​3197
  • Upgrade org.codehaus.groovy:groovy-all to 2.4.21 #​3180
  • Upgrade to Maven Wrapper 3.9.8 #​3134

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

v3.3.6

Compare Source

📗 Links

📔 Documentation

  • Loading non-bean instance to spring context, due to custom repository configuration. #​3200
  • Refine Scrolling refdocs #​3192
  • Minor improvements in BootstrapMode Javadoc #​3191
  • Fix spelling mistake in SimplePropertyValueConversions #​3189
  • Remove outdated information from Javadoc for PageableHandlerMethodArgumentResolver[Support] #​3188

🔨 Dependency Upgrades

  • Upgrade to Maven Wrapper 3.9.9 #​3198
  • Upgrade org.codehaus.groovy:groovy-all to 2.4.21 #​3180

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

spring-projects/spring-data-jpa (org.springframework.data:spring-data-jpa)

v3.4.0

Compare Source

📗 Links

⭐ New Features

  • Add support for value expressions in repository query methods #​3619
  • Optimize entity deletion in SimpleJpaRepository #​3564
  • Support NULLS {FIRST | LAST} in JPQL queries #​3529
  • Support of CTE with Pageable #​3504
  • Sorting of Pageable.unpaged(sort) is ignored by JPA Repository #​3476
  • Split string query transformation into multiple parts #​3326
  • Redundant parameter in the Limit query #​3242
  • Add @NativeQuery annotation as alias for @Query(nativeQuery=true) #​3155
  • Provide an option to disable JSqlParserQueryEnhancer #​2989

🐞 Bug Fixes

  • NPE in HqlQueryTransformer.isSubquery for UPDATE HQL #​3649
  • findLastChangeRevision() returns the wrong result in a multi-node env #​3643
  • QueryEnhancer.hasConstructorExpression() returns false for some_function(…) IS TRUE #​3628
  • limit in FetchableFluentQueryBySpecification addes duplicate order by clause #​3600
  • Fix typo in assertion message #​3565
  • Exceptions in NamedQuery creation lead to query derivation #​3550
  • Native query with #sort generates a broken query #​3546
  • Сan no longer use distinct and cast(... as ...) together #​3536
  • [Virtual Threads] Possible Thread Pinning in PartTreeJpaQuery.QueryPreparer#createQuery() #​3505
  • Missing @Transactional on SimpleJpaRepository.delete(spec) #​3499
  • BadJpqlGrammarException when parsing query containing lateral keyword used as property name. #​3496
  • Spring Data JPA generates incorrect JPQL query for sorted pagination request with UNION clause #​3427
  • @Procedure returning also ResultSet no longer returns Map for OUT params #​2381
  • Procedure with one output parameter [DATAJPA-1442] #​1759

📔 Documentation

  • Reflect IS NULL/IS NOT NULL usage for derived queries using null as argument #​3674
  • Allow returning Map from the repository methods #​3636
  • Reorder documentation of class-based projection support for JPA Native Queries #​3599
  • Bundle Javadoc with Antora documentation site #​3549
  • Update docs #​3544
  • Fix typo in documentation #​3489
  • How to pass collection to stored procedure when using @Procedure #​3081

🔨 Dependency Upgrades

❤️ Contributors

We'd like to thank all the contributors who worked on this release!

v3.3.6

Compare Source

📗 Links

🐞 Bug Fixes

  • NPE in HqlQueryTransformer.isSubquery for UPDATE HQL #​3649
  • findLastChangeRevision() returns the wrong result in a multi-node env #​3643
  • @Procedure returning also ResultSet no longer returns Map for OUT params #​2381
  • Procedure with one output parameter [DATAJPA-1442] #​1759

📔 Documentation

  • Reflect IS NULL/IS NOT NULL usage for derived queries using null as argument #​3674
  • How to pass collection to stored procedure when using @Procedure #​3081

🔨 Dependency Upgrades

  • Upgrade to Maven Wrapper 3.9.9 #​3664

❤️ Contributors

We'd like to thank all the contributors who worked on this release!


Configuration

📅 Schedule: Branch creation - "after 10pm" in timezone Europe/Prague, Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, 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 added the type: dependency-upgrade Upgrade a dependency label Nov 30, 2024
Copy link

sonarcloud bot commented Nov 30, 2024

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type: dependency-upgrade Upgrade a dependency
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants