Commit Graph

44 Commits

Author SHA1 Message Date
Christoph Strobl
7114852802 Release version 3.3 M1 (2024.0.0).
See #3229
2024-02-16 14:37:37 +01:00
Mark Paluch
21d307db3f Prepare next development iteration.
See #3197
2023-11-17 14:33:24 +01:00
Mark Paluch
76a03e2d06 Release version 3.2 GA (2023.1.0).
See #3197
2023-11-17 14:29:58 +01:00
John Blum
58ce0f331f Prepare next development iteration.
See #3164
2023-10-13 08:51:58 -07:00
John Blum
c4a616149b Release version 3.2 RC1 (2023.1.0).
See #3164
2023-10-13 08:44:25 -07:00
Mark Paluch
11ab43501b Prepare next development iteration.
See #3119
2023-09-15 11:33:20 +02:00
Mark Paluch
1b50d23b9f Release version 3.2 M3 (2023.1.0).
See #3119
2023-09-15 11:30:14 +02:00
Julia Lee
f23115b6eb Prepare next development iteration.
See #3071
2023-08-18 08:59:35 -04:00
Julia Lee
851ad8b490 Release version 3.2 M2 (2023.1.0).
See #3071
2023-08-18 08:50:31 -04:00
Mark Paluch
239dc25986 Prepare next development iteration.
See #2950
2023-07-14 14:57:10 +02:00
Mark Paluch
36c678853d Release version 3.2 M1 (2023.1.0).
See #2950
2023-07-14 14:53:18 +02:00
Mark Paluch
7627b23c39 Upgrade to H2 2.2.220.
Also upgrade Postgres and MySQL drivers.

Closes #3059
2023-07-10 14:19:23 +02:00
Christoph Strobl
fa29178fc3 Prepare next development iteration.
See #2919
2023-05-12 14:18:51 +02:00
Christoph Strobl
0ef008ad4f Release version 3.1 GA (2023.0.0).
See #2919
2023-05-12 14:14:38 +02:00
Greg L. Turnquist
699b18f307 Prepare next development iteration.
See #2873
2023-04-14 11:59:55 -05:00
Greg L. Turnquist
01a0e5b156 Release version 3.1 RC1 (2023.0.0).
See #2873
2023-04-14 11:53:58 -05:00
Christoph Strobl
6e8f11433f Prepare next development iteration.
See #2807
2023-03-20 15:05:33 +01:00
Christoph Strobl
f60c8a6643 Release version 3.1 M3 (2023.0.0).
See #2807
2023-03-20 15:01:47 +01:00
Christoph Strobl
af16b08bfd Prepare next development iteration.
See #2806
2023-02-17 14:25:46 +01:00
Christoph Strobl
0b51bdd1cd Release version 3.1 M2 (2023.0.0).
See #2806
2023-02-17 14:22:30 +01:00
Christoph Strobl
a3022c56cb Prepare next development iteration.
See #2707
2023-02-17 13:31:52 +01:00
Christoph Strobl
2cab87e75e Release version 3.1 M1 (2023.0.0).
See #2707
2023-02-17 13:27:49 +01:00
Mark Paluch
f9dd15e187 Prepare next development iteration.
See #2669
2022-11-18 14:30:18 +01:00
Mark Paluch
de4af44466 Release version 3.0 GA (2022.0.0).
See #2669
2022-11-18 14:26:22 +01:00
Mark Paluch
b68eb0ae45 Prepare next development iteration.
See #2675
2022-11-04 15:26:37 +01:00
Mark Paluch
38509909d3 Release version 3.0 RC2 (2022.0.0).
See #2675
2022-11-04 15:23:17 +01:00
Mark Paluch
3121d12b9c Prepare next development iteration.
See #2638
2022-10-13 17:31:15 +02:00
Mark Paluch
5d2c8be54e Release version 3.0 RC1 (2022.0.0).
See #2638
2022-10-13 17:24:25 +02:00
Spring Builds
8c3d19096a Prepare next development iteration.
See #2599
2022-09-19 14:38:52 +00:00
Spring Builds
9a30685e38 Release version 3.0 M6 (2022.0.0).
See #2599
2022-09-19 14:15:20 +00:00
Christoph Strobl
48e6f3189e Prepare next development iteration.
See #2531
2022-07-15 15:30:45 +02:00
Christoph Strobl
c4148e5bd5 Release version 3.0 M5 (2022.0.0).
See #2531
2022-07-15 15:18:29 +02:00
Oliver Drotbohm
453f879af3 Upgrade to Hibernate and Hibernate Envers 6.
TypedQuery inspection through its String representations seems to be a bit flaky in Hibernate 6 still [0]. Tweaked the code to extract a query string from a query object to try the new way first but fall back to the old way, as this seems to work under some conditions, too. Adapted the test case in which we could rather inspect the new SqmQuery API for test result verification.

Re-bootstrapping the EntityManagerFactory for the same persistence unit causes the second bootstrap to fail als apparently foreign key names are randomized and the second bootstrap doesn't create a new constraint but tries to work with a new name. Tweaked the offending test case to reuse the existing EMF declaration as it actually only tests the qualified wiring into clients.

Applying an entity graph is causing a StackOverflow in current Hibernate 6. Filed an issue [1] and disabled the test case for now.

Dial back on the flip to use String as parameter type for like expression escape characters as Eclipselink rejects that. The JPA spec chapter 4.2.10 allows both Character and String to be used. Filed [2] with Hibernate to ask for reintroduction of the support for characters and commented out the test cases for now.

Deprecated CustomHsqlHibernateJpaVendorAdapter as it's not needed on Hibernate 6 anymore. Rewrote HibernateJpaParametersParameterAccessor to use Hibernate 6 API.

Add Hibernate 6 upgrade information to the reference docs.

Related ticket: #2423.

[0] https://hibernate.atlassian.net/browse/HHH-15389
[1] https://hibernate.atlassian.net/browse/HHH-15391
[2] https://hibernate.atlassian.net/browse/HHH-15392
2022-07-12 10:23:45 +02:00
Greg L. Turnquist
bc4347c507 Upgrade Hibernate to 5.6.9.Final.
Closes #2583.
2022-06-28 13:52:07 -05:00
Christoph Strobl
95201377d1 Prepare next development iteration.
See #2471
2022-05-13 10:53:23 +02:00
Christoph Strobl
5b4a4d9490 Release version 3.0 M4 (2022.0.0).
See #2471
2022-05-13 10:43:58 +02:00
Greg L. Turnquist
9049594908 Bump h2 from 1.4.200 to 2.1.212 in /spring-data-envers.
See #2501.
2022-05-05 11:57:15 -05:00
Mark Paluch
8d04597c69 Prepare next development iteration.
See #2470
2022-03-22 14:07:36 +01:00
Mark Paluch
06f4165dbe Release version 3.0 M3 (2022.0.0).
See #2470
2022-03-22 14:00:23 +01:00
Mark Paluch
bcb996f743 Prepare next development iteration.
See #2407
2022-03-21 16:44:39 +01:00
Mark Paluch
826de597b8 Release version 3.0 M2 (2022.0.0).
See #2407
2022-03-21 16:35:08 +01:00
Mark Paluch
ba1350429f Prepare next development iteration.
See #2402
2022-01-21 16:31:06 +01:00
Mark Paluch
ee9af38332 Release version 3.0 M1 (2022.0.0).
See #2402
2022-01-21 16:31:06 +01:00
Jens Schauder
0ae3d43502 Merge the Envers repo.
Spring Data JPA is now a multimodule project.
The artifacts build are still separate, except for the documentation which is now a single one.

Closes # 2316
2022-01-21 16:31:05 +01:00