Commit Graph

46 Commits

Author SHA1 Message Date
Mark Paluch
424e463fcc Prepare next development iteration.
See #3195
2023-11-17 11:00:15 +01:00
Mark Paluch
86254b1388 Release version 3.0.12 (2022.0.12).
See #3195
2023-11-17 10:57:13 +01:00
Mark Paluch
54479d9ef6 Prepare next development iteration.
See #3162
2023-10-13 11:44:27 +02:00
Mark Paluch
099b94a151 Release version 3.0.11 (2022.0.11).
See #3162
2023-10-13 11:41:40 +02:00
Mark Paluch
5f7c9b4d8b Prepare next development iteration.
See #3117
2023-09-15 10:20:49 +02:00
Mark Paluch
4ca11de9b7 Release version 3.0.10 (2022.0.10).
See #3117
2023-09-15 10:17:45 +02:00
Mark Paluch
dd59de6350 Prepare next development iteration.
See #3070
2023-08-18 10:46:28 +02:00
Mark Paluch
b40a45f022 Release version 3.0.9 (2022.0.9).
See #3070
2023-08-18 10:43:12 +02:00
Mark Paluch
d1e770b84f Prepare next development iteration.
See #3032
2023-07-14 11:25:30 +02:00
Mark Paluch
7fbd974eed Release version 3.0.8 (2022.0.8).
See #3032
2023-07-14 11:22:38 +02:00
Mark Paluch
0d06c67fc2 Prepare next development iteration.
See #2948
2023-06-16 15:43:08 +02:00
Mark Paluch
6a91748c25 Release version 3.0.7 (2022.0.7).
See #2948
2023-06-16 15:39:45 +02:00
Christoph Strobl
aa81cd3f57 Prepare next development iteration.
See #2918
2023-05-12 11:11:30 +02:00
Christoph Strobl
7b8bfaaf31 Release version 3.0.6 (2022.0.6).
See #2918
2023-05-12 11:08:06 +02:00
Greg L. Turnquist
9d6a7504b3 Prepare next development iteration.
See #2872
2023-04-14 10:24:57 -05:00
Greg L. Turnquist
528cec8dc8 Release version 3.0.5 (2022.0.5).
See #2872
2023-04-14 10:19:12 -05:00
Christoph Strobl
f38c1b59ad Prepare next development iteration.
See #2838
2023-03-20 14:26:19 +01:00
Christoph Strobl
2f7b87fec4 Release version 3.0.4 (2022.0.4).
See #2838
2023-03-20 14:22:48 +01:00
Mark Paluch
3aff1024c3 Prepare next development iteration.
See #2804
2023-03-03 11:02:45 +01:00
Mark Paluch
1b54bcfce9 Release version 3.0.3 (2022.0.3).
See #2804
2023-03-03 10:59:33 +01:00
Mark Paluch
fc30158545 Prepare next development iteration.
See #2770
2023-02-17 11:02:24 +01:00
Mark Paluch
70372279cd Release version 3.0.2 (2022.0.2).
See #2770
2023-02-17 10:59:27 +01:00
Mark Paluch
67019b0d5b Prepare next development iteration.
See #2706
2023-01-13 11:43:29 +01:00
Mark Paluch
9d40b91b85 Release version 3.0.1 (2022.0.1).
See #2706
2023-01-13 11:40:50 +01:00
Mark Paluch
e57c7587c1 Prepare next development iteration.
See #2669
2022-11-18 14:30:30 +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