Bump version.hibernate from 3.6.10.Final to 5.6.15.Final
Type: Pull Request
State: Open
Association: None
Comments: 1
(11 months ago)
(11 months ago)
Bumps version.hibernate from 3.6.10.Final to 5.6.15.Final.
Updates org.hibernate:hibernate-core from 3.6.10.Final to 5.6.15.Final
Release notes
Sourced from org.hibernate:hibernate-core's releases.
Hibernate ORM 5.2.0
5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done.
Many of the changes in 5.2.0 have important ramifications in terms of both usage and extension. Be sure to read the 5.2 Migration Guide for details.
Below is a discussion of the major changes.
Java 8 baseline
5.2 moves to Java 8 as its baseline. This means:
- The
hibernate-java8module has been removed, and that functionality has been moved intohibernate-core.- Native support for Java 8 date/time types as Query parameters.
- Support for streaming (
java.util.stream.Stream) query results.- Support for
java.util.Optionalas return from methods that may return null.- Leveraging Java 8 "default methods" when introducing new methods to extension points.
Consolidating JPA support into
hibernate-core.That effectively means that the
hibernate-entitymanagermodule no longer exists. Its functionality being consumed intohibernate-core.JCache support
Support for using any JCache-compliant cache impl as a second-level caching provider.
Session-level batch size support
Support has been added for specifying a batch size for write operations per Session.
5th bug-fix release for 5.0
The 5th bug-fix release for Hibernate ORM 5.0. This release and the upcoming 5.0.6 release have been done on an accelerated time-box of 2 weeks (from the normal 4 weeks for bug-fix releases) due to US holidays.
The complete list of changes can be found here (or here for people without a Hibernate Jira account).
For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/
For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.
Fourth bug-fix release for 5.0
The fourth bug-fix release for Hibernate ORM 5.0
There are 52 issues resolved in this release. 20 of those came out of the recent Jira cleanup. Initially that initiative pulled in roughly 750 issues. To date, 66 of those have been resolved - fixed or verified as out-of-date, unable-to-reproduce, etc. An additional 14 have been more properly reclassified as feature or enhancement requests rather than bugs. The really cool part is the amount of community help we have gotten in making that happen! Thanks to everyone responding, verifying and even fixing alot of these bugs!
The complete list of changes can be found here. People without a Hibernate Jira account will not be able to access the previous link and can access the changelog in GitHub; the issue I reported with Atlassian has been resolved and is ready for deployment into our hosted environment, I just do not know when that will happen.
For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/
For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.
Third bug-fix release for 5.0
http://in.relation.to/2015/10/28/hibernate-orm-503-final-release/
... (truncated)
Changelog
Sourced from org.hibernate:hibernate-core's changelog.
Changes in 5.6.15.Final (February 06, 2023)
https://hibernate.atlassian.net/projects/HHH/versions/32121
** Bug * [HHH-16049] - Setting a property to its current value with bytecode enhancement enabled results in unnecessary SQL Update in some (many) cases * [HHH-15665] - Mariadb is missing identifier quote on SEQUENCE QUERY * [HHH-15618] - Procedure should accept TypedParameterValue as parameter
** Improvement * [HHH-15693] - Introduce a fast-path access for ClassLoaderService being retrieved from ServiceRegistry * [HHH-15690] - HQLQueryPlan to have a direct reference to QueryTranslatorFactory * [HHH-15685] - Improve efficiency of Dialect lookup in Loader and HqlSqlWalker
** Patch * [HHH-15792] - Explicitly add JavaDoc to make
@deprecatedhint for createSQLQuery visible in EclipseChanges in 5.6.14.Final (November 04, 2022)
https://hibernate.atlassian.net/projects/HHH/versions/32120
** Improvement * [HHH-15662] - ClasscastException caused by check for Managed rather than ManagedEntity
Changes in 5.6.13.Final (November 03, 2022)
https://hibernate.atlassian.net/projects/HHH/versions/32112
** Bug * [HHH-15634] - Lazy basic property does not get updated on change * [HHH-15561] - Function "IDENTITY" not found when inserting audited revision using Hibernate Envers * [HHH-15554] - Merge of an Entity with an immutable composite user type throws Exception
** Improvement * [HHH-15649] - Additional performance fixes relating to Klass's _secondary_super_cache interaction with entity enhancement * [HHH-15639] - Upgrade to ByteBuddy 1.12.18 * [HHH-15637] - Upgrade to Byteman 4.0.20 * [HHH-15616] - Mitigate performance impact of entity enhancement on Klass's _secondary_super_cache * [HHH-15585] - Add support for DB2 aliases for schema validation * [HHH-15575] - Make getter org.hibernate.criterion.SimpleExpression#getOp() public
** Task * [HHH-15594] - Remove Oracle RDS and all test matrix uses
... (truncated)
Commits
e924c275.6.15.Final38ec412HHH-15665 - Fix and added test for issue1078caaHHH-16049 Setting a property to its current value with bytecode enhancement e...802fc76HHH-16049 Test setting a property to its current value with bytecode enhancem...ac55bb2HHH-16049 Test setting a property to its current value with bytecode enhancem...84662bfHHH-16049 Restructure lazy-basic tests for easier re-execution and better tes...49fbe84HHH-15618 Accept TypedParameterValue for procedure45c7fc5Add TCK build throttlingcc3b389Switch from LGTM to CodeQLd7fa18aHHH-15792: Explicitly add JavaDoc to make@deprecatedhint for createSQLQuery...- Additional commits viewable in compare view
Updates org.hibernate:hibernate-entitymanager from 3.6.10.Final to 5.6.15.Final
Release notes
Sourced from org.hibernate:hibernate-entitymanager's releases.
Hibernate ORM 5.2.0
5.2.0 includes many improvements and bug-fixes. For a complete list of changes, see https://hibernate.atlassian.net/projects/HHH/versions/23150/tab/release-report-done.
Many of the changes in 5.2.0 have important ramifications in terms of both usage and extension. Be sure to read the 5.2 Migration Guide for details.
Below is a discussion of the major changes.
Java 8 baseline
5.2 moves to Java 8 as its baseline. This means:
- The
hibernate-java8module has been removed, and that functionality has been moved intohibernate-core.- Native support for Java 8 date/time types as Query parameters.
- Support for streaming (
java.util.stream.Stream) query results.- Support for
java.util.Optionalas return from methods that may return null.- Leveraging Java 8 "default methods" when introducing new methods to extension points.
Consolidating JPA support into
hibernate-core.That effectively means that the
hibernate-entitymanagermodule no longer exists. Its functionality being consumed intohibernate-core.JCache support
Support for using any JCache-compliant cache impl as a second-level caching provider.
Session-level batch size support
Support has been added for specifying a batch size for write operations per Session.
5th bug-fix release for 5.0
The 5th bug-fix release for Hibernate ORM 5.0. This release and the upcoming 5.0.6 release have been done on an accelerated time-box of 2 weeks (from the normal 4 weeks for bug-fix releases) due to US holidays.
The complete list of changes can be found here (or here for people without a Hibernate Jira account).
For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/
For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.
Fourth bug-fix release for 5.0
The fourth bug-fix release for Hibernate ORM 5.0
There are 52 issues resolved in this release. 20 of those came out of the recent Jira cleanup. Initially that initiative pulled in roughly 750 issues. To date, 66 of those have been resolved - fixed or verified as out-of-date, unable-to-reproduce, etc. An additional 14 have been more properly reclassified as feature or enhancement requests rather than bugs. The really cool part is the amount of community help we have gotten in making that happen! Thanks to everyone responding, verifying and even fixing alot of these bugs!
The complete list of changes can be found here. People without a Hibernate Jira account will not be able to access the previous link and can access the changelog in GitHub; the issue I reported with Atlassian has been resolved and is ready for deployment into our hosted environment, I just do not know when that will happen.
For information on consuming the release via your favorite dependency-management-capable build tool, see http://hibernate.org/orm/downloads/
For those of you allergic to dependency-management-capable build tools, the release bundles can be obtained from SourceForge or BinTray.
Third bug-fix release for 5.0
http://in.relation.to/2015/10/28/hibernate-orm-503-final-release/
... (truncated)
Changelog
Sourced from org.hibernate:hibernate-entitymanager's changelog.
Changes in 5.6.15.Final (February 06, 2023)
https://hibernate.atlassian.net/projects/HHH/versions/32121
** Bug * [HHH-16049] - Setting a property to its current value with bytecode enhancement enabled results in unnecessary SQL Update in some (many) cases * [HHH-15665] - Mariadb is missing identifier quote on SEQUENCE QUERY * [HHH-15618] - Procedure should accept TypedParameterValue as parameter
** Improvement * [HHH-15693] - Introduce a fast-path access for ClassLoaderService being retrieved from ServiceRegistry * [HHH-15690] - HQLQueryPlan to have a direct reference to QueryTranslatorFactory * [HHH-15685] - Improve efficiency of Dialect lookup in Loader and HqlSqlWalker
** Patch * [HHH-15792] - Explicitly add JavaDoc to make
@deprecatedhint for createSQLQuery visible in EclipseChanges in 5.6.14.Final (November 04, 2022)
https://hibernate.atlassian.net/projects/HHH/versions/32120
** Improvement * [HHH-15662] - ClasscastException caused by check for Managed rather than ManagedEntity
Changes in 5.6.13.Final (November 03, 2022)
https://hibernate.atlassian.net/projects/HHH/versions/32112
** Bug * [HHH-15634] - Lazy basic property does not get updated on change * [HHH-15561] - Function "IDENTITY" not found when inserting audited revision using Hibernate Envers * [HHH-15554] - Merge of an Entity with an immutable composite user type throws Exception
** Improvement * [HHH-15649] - Additional performance fixes relating to Klass's _secondary_super_cache interaction with entity enhancement * [HHH-15639] - Upgrade to ByteBuddy 1.12.18 * [HHH-15637] - Upgrade to Byteman 4.0.20 * [HHH-15616] - Mitigate performance impact of entity enhancement on Klass's _secondary_super_cache * [HHH-15585] - Add support for DB2 aliases for schema validation * [HHH-15575] - Make getter org.hibernate.criterion.SimpleExpression#getOp() public
** Task * [HHH-15594] - Remove Oracle RDS and all test matrix uses
... (truncated)
Commits
e924c275.6.15.Final38ec412HHH-15665 - Fix and added test for issue1078caaHHH-16049 Setting a property to its current value with bytecode enhancement e...802fc76HHH-16049 Test setting a property to its current value with bytecode enhancem...ac55bb2HHH-16049 Test setting a property to its current value with bytecode enhancem...84662bfHHH-16049 Restructure lazy-basic tests for easier re-execution and better tes...49fbe84HHH-15618 Accept TypedParameterValue for procedure45c7fc5Add TCK build throttlingcc3b389Switch from LGTM to CodeQLd7fa18aHHH-15792: Explicitly add JavaDoc to make@deprecatedhint for createSQLQuery...- 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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Pull Request Statistics
0
0
+0
-0
Technical Details
| ID: | 4294248 |
| UUID: | 3273122261 |
| Node ID: | PR_kwDOPUqBAc6hJo8_ |
| Host: | GitHub |
| Repository: | MissionOpen/BenchmarkJava |