Cosium / spring-data-jpa-entity-graph

Spring Data JPA extension allowing full dynamic usage of EntityGraph on repositories
MIT License
478 stars 49 forks source link

Bump hibernate.version from 6.1.5.Final to 6.2.7.Final #116

Closed dependabot[bot] closed 1 year ago

dependabot[bot] commented 1 year ago

Bumps hibernate.version from 6.1.5.Final to 6.2.7.Final. Updates org.hibernate.orm:hibernate-jpamodelgen from 6.1.5.Final to 6.2.7.Final

Changelog

Sourced from org.hibernate.orm:hibernate-jpamodelgen's changelog.

Changes in 6.2.7.Final (July 20, 2023)

https://hibernate.atlassian.net/projects/HHH/versions/32170

** Bug * [HHH-16943] - Column ordering leads to wrong column order in unique constraints * [HHH-16926] - AssertionError when sorting by fields of joined entity * [HHH-16923] - Deleting all entities of a given type fails when using a composite primary key and order_updates * [HHH-16912] - Hibernate 6.2 breaks backward compatibility * [HHH-16905] - Since 6.2.6 criteria query with nested fetches do not fetch some entities any more * [HHH-16892] - LocalXmlResourceResolver does not resolve dtd URLs that use https scheme * [HHH-16890] - StackOverflowError when loading entities with @​Proxy(lazy = false) * [HHH-16886] - Incorrect SQL alternative for tuple-in-lists on DBMS not supporting tuple-in-lists * [HHH-16872] - JDBC fetch size seems to be ignored post migration to hibernate6 * [HHH-16871] - Queries returning null values for related entities depending on 'max_fetch_depth' * [HHH-16845] - Cached entity with @​EmbeddedId cannot use @​ElementCollection * [HHH-16837] - UnknownTableReferenceException with @​ManyToMany and @​OrderBy and InheritenceType.JOINED * [HHH-16833] - Assertion Error when inserting two entities linked with a OneToOne relation * [HHH-16812] - StackOverflowError an embeddable's @​Parent is a subclass in an inheritance tree * [HHH-16811] - Dirty property lost and not detected with Batch Fetch, Embedded and FetchMode SELECT * [HHH-16810] - Fail to delete entity with a composite id using an @​IdClass with one of its fields mapped from the id of a @​ManyToOne association * [HHH-16803] - Setting value of enum type to null using nullLiteral: "Not a managed type" * [HHH-16792] - Incorrect generated SQL query when using CriteriaUpdate on an entity with inheritance * [HHH-16765] - Cannot parse quoted table name * [HHH-16754] - unionAll with subquery orderby using path expression throws an error * [HHH-16709] - @​EmbeddedId Foreign key comparator throws NPE with order_updates enabled * [HHH-16667] - Hibernate 6 PrimaryKeyJoinColumn causes implicit version update to fail * [HHH-16586] - When merging a persisted entity with a null Version, Hibernate treats entity as transient instead of throwing an Exception * [HHH-15917] - Unrelated Entity Join throws IllegalStateException * [HHH-15720] - Using multiple select in a multiselect generates java.lang.ArrayIndexOutOfBoundsException

** Task * [HHH-16877] - Improved efficiency of lookup for MutationExecutorService

Changes in 6.2.6.Final (June 30, 2023)

https://hibernate.atlassian.net/projects/HHH/versions/32164

** Bug * [HHH-16868] - IN clause with more than 1000 expressions * [HHH-16839] - Failing to update a one-to-one lazy association with OptimisticLockType.DIRTY and enabled bytecode enhancement * [HHH-16832] - Bytecode enhancement leads to broken constructor for a generic embedded field in a MappedSuperclass * [HHH-16831] - Revisit logging statement that use string concat for formatted logging * [HHH-16821] - Fail to delete entity that contains an embedded with a many to many association as field * [HHH-16820] - When batching enabled the LockModeType is ignored * [HHH-16799] - Using bytecode enhancement may result in incorrect AccessType being picked * [HHH-16784] - @​MappedSuperclass with parameterized interface types no longer works

... (truncated)

Commits
  • 46d907d Post-steps for release : 6.2.7.Final
  • 253008e Pre-steps for release : 6.2.7.Final
  • a9ca41d HHH-16872 - Verify that statement fetch size is properly used
  • 5247156 HHH-16912 return null from deprecated method instead of producing a CCE
  • ff0479c HHH-16890 StackOverflowError when loading entities with @​Proxy(lazy = false)
  • 9555a1d HHH-16890 Add test for issue
  • ff5a7bc HHH-16765 - Cannot parse quoted table name
  • 16117dd HHH-16943 Column ordering leads to wrong column order in unique constraints +...
  • 58eaf74 HHH-16953 Ad test for issue
  • e33ece3 HHH-16943 Add UniqueConstraintColumnOrderTest showing the column order issue
  • Additional commits viewable in compare view


Updates org.hibernate.orm:hibernate-core from 6.1.5.Final to 6.2.7.Final

Changelog

Sourced from org.hibernate.orm:hibernate-core's changelog.

Changes in 6.2.7.Final (July 20, 2023)

https://hibernate.atlassian.net/projects/HHH/versions/32170

** Bug * [HHH-16943] - Column ordering leads to wrong column order in unique constraints * [HHH-16926] - AssertionError when sorting by fields of joined entity * [HHH-16923] - Deleting all entities of a given type fails when using a composite primary key and order_updates * [HHH-16912] - Hibernate 6.2 breaks backward compatibility * [HHH-16905] - Since 6.2.6 criteria query with nested fetches do not fetch some entities any more * [HHH-16892] - LocalXmlResourceResolver does not resolve dtd URLs that use https scheme * [HHH-16890] - StackOverflowError when loading entities with @​Proxy(lazy = false) * [HHH-16886] - Incorrect SQL alternative for tuple-in-lists on DBMS not supporting tuple-in-lists * [HHH-16872] - JDBC fetch size seems to be ignored post migration to hibernate6 * [HHH-16871] - Queries returning null values for related entities depending on 'max_fetch_depth' * [HHH-16845] - Cached entity with @​EmbeddedId cannot use @​ElementCollection * [HHH-16837] - UnknownTableReferenceException with @​ManyToMany and @​OrderBy and InheritenceType.JOINED * [HHH-16833] - Assertion Error when inserting two entities linked with a OneToOne relation * [HHH-16812] - StackOverflowError an embeddable's @​Parent is a subclass in an inheritance tree * [HHH-16811] - Dirty property lost and not detected with Batch Fetch, Embedded and FetchMode SELECT * [HHH-16810] - Fail to delete entity with a composite id using an @​IdClass with one of its fields mapped from the id of a @​ManyToOne association * [HHH-16803] - Setting value of enum type to null using nullLiteral: "Not a managed type" * [HHH-16792] - Incorrect generated SQL query when using CriteriaUpdate on an entity with inheritance * [HHH-16765] - Cannot parse quoted table name * [HHH-16754] - unionAll with subquery orderby using path expression throws an error * [HHH-16709] - @​EmbeddedId Foreign key comparator throws NPE with order_updates enabled * [HHH-16667] - Hibernate 6 PrimaryKeyJoinColumn causes implicit version update to fail * [HHH-16586] - When merging a persisted entity with a null Version, Hibernate treats entity as transient instead of throwing an Exception * [HHH-15917] - Unrelated Entity Join throws IllegalStateException * [HHH-15720] - Using multiple select in a multiselect generates java.lang.ArrayIndexOutOfBoundsException

** Task * [HHH-16877] - Improved efficiency of lookup for MutationExecutorService

Changes in 6.2.6.Final (June 30, 2023)

https://hibernate.atlassian.net/projects/HHH/versions/32164

** Bug * [HHH-16868] - IN clause with more than 1000 expressions * [HHH-16839] - Failing to update a one-to-one lazy association with OptimisticLockType.DIRTY and enabled bytecode enhancement * [HHH-16832] - Bytecode enhancement leads to broken constructor for a generic embedded field in a MappedSuperclass * [HHH-16831] - Revisit logging statement that use string concat for formatted logging * [HHH-16821] - Fail to delete entity that contains an embedded with a many to many association as field * [HHH-16820] - When batching enabled the LockModeType is ignored * [HHH-16799] - Using bytecode enhancement may result in incorrect AccessType being picked * [HHH-16784] - @​MappedSuperclass with parameterized interface types no longer works

... (truncated)

Commits
  • 46d907d Post-steps for release : 6.2.7.Final
  • 253008e Pre-steps for release : 6.2.7.Final
  • a9ca41d HHH-16872 - Verify that statement fetch size is properly used
  • 5247156 HHH-16912 return null from deprecated method instead of producing a CCE
  • ff0479c HHH-16890 StackOverflowError when loading entities with @​Proxy(lazy = false)
  • 9555a1d HHH-16890 Add test for issue
  • ff5a7bc HHH-16765 - Cannot parse quoted table name
  • 16117dd HHH-16943 Column ordering leads to wrong column order in unique constraints +...
  • 58eaf74 HHH-16953 Ad test for issue
  • e33ece3 HHH-16943 Add UniqueConstraintColumnOrderTest showing the column order issue
  • Additional commits viewable in compare view


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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 1 year ago

Superseded by #124.