Commit Graph

413 Commits

Author SHA1 Message Date
Jens Schauder
c79ee63518 Prepare 3.2.8 (2023.1.8).
See #1817
2024-07-12 13:32:46 +02:00
Mark Paluch
107a66b607 Prepare 3.2.7 (2023.1.7).
See #1788
2024-06-14 10:04:06 +02:00
Mark Paluch
2c81eccb0a Prepare 3.2.6 (2023.1.6).
See #1767
2024-05-17 11:22:00 +02:00
Jens Schauder
a0a01a70b6 Fix typo in documentation example.
Closes #1782
2024-04-29 09:58:06 +02:00
Mark Paluch
0cda559b7f Prepare 3.2.5 (2023.1.5).
See #1753
2024-04-12 10:14:56 +02:00
Aaron Paterson
374ccc3bed Small documentation fix.
Improve grammar.
Remove redundant line.

Original pull request #1765
2024-04-11 09:23:29 +02:00
Vitalii Mahas
7a4cc64fa1 Fix typo ignoreing -> ignoring
Original pull request #1756
2024-04-03 12:08:55 +02:00
Mark Paluch
0feade80bf Prepare 3.2.4 (2023.1.4).
See #1741
2024-03-15 10:17:31 +01:00
Mourjo Sen
8946089fca Grammatical improvement in documentation.
This fixes a minor grammatical error.

Closes #1746
2024-03-04 15:18:15 +01:00
Mark Paluch
544bde10a5 Prepare 3.2.3 (2023.1.3).
See #1718
2024-02-16 13:50:02 +01:00
Nick
6d988f9b7c Fix documentation grammar.
Replace "significant" with "significantly"

Closes #1731
Original pull request: #1735
2024-02-07 09:06:44 +01:00
Mark Paluch
6c2bad0f11 Prepare 3.2.2 (2023.1.2).
See #1703
2024-01-12 10:50:45 +01:00
Jens Schauder
134556ff72 Fix documenation.
Replace the deprecated `NamingStrategy.getReverseColumnName(PersistentPropertyPathExtension path)` with `getReverseColumnName(RelationalPersistentEntity<?> owner)`

Closes #1693
2024-01-04 09:29:12 +01:00
Mark Paluch
cdb74cbe78 Prepare 3.2.1 (2023.1.1).
See #1671
2023-12-15 14:11:24 +01:00
Runbing
f07a322e3c Fixed URL to Spring Data Commons documentation.
Fixes an incorrect URL in the `antora.yml` file that was preventing other pages from linking to the Spring Data Commons documentation.

Original pull request #1674
2023-11-20 11:56:27 +01:00
Mark Paluch
a311b9a105 Prepare 3.2 GA (2023.1.0).
See #1642
2023-11-17 14:28:30 +01:00
Mark Paluch
5312731623 Reject Limit parameter using String-based queries.
Document limitations, add test cases for derived queries.

Closes #1654
2023-11-02 09:26:43 +01:00
Jens Schauder
4ceb982197 Clarify that converters are for simple values only.
Closes #1533
2023-10-20 11:58:34 +02:00
Jens Schauder
7a7d3a3e83 Clarify not to map backreferences and key columns.
Closes #504
2023-10-20 11:55:30 +02:00
Jens Schauder
13d4f120f8 Mention usage of SpEL in queries.
Closes #1566
2023-10-20 10:32:20 +02:00
Jens Schauder
09f3ceeb82 Polishing.
See #650
2023-10-20 10:32:20 +02:00
Jens Schauder
fdc85a91ff Explain custom RowMapper and ResultSetExtractor.
Closes #650
2023-10-19 16:42:40 +02:00
Jens Schauder
778d368725 Improve documentation about custom conversion registration.
Closes #1625
2023-10-17 13:25:57 +02:00
Jens Schauder
28d40b017a Improve documentation for mapping sets.
The documentation now correctly states that the back reference name can by customized via annotation.

Closes #797
2023-10-16 11:01:23 +02:00
John Blum
4c0e10fca7 Prepare 3.2 RC1 (2023.1.0).
See #1614
2023-10-13 08:43:57 -07:00
Mark Paluch
a72bf1a65d Polishing.
Delegate BatchJdbcOperations calls to NamedParameterJdbcOperations. Refine since and deprecation tags.

See #1616
2023-10-11 09:54:44 +02:00
Jens Schauder
9e41d25d15 Support Single Query Loading for aggregates with more than one collection.
Closes #1448
Original pull request: #1622
2023-09-27 10:04:55 +02:00
Mark Paluch
3b9e0626da Prepare 3.2 M3 (2023.1.0).
See #1592
2023-09-15 15:06:53 +02:00
Mark Paluch
5fd9951060 Fix links to spring.io docs.
Closes #1571
2023-09-13 15:08:04 +02:00
Mark Paluch
c50942a2a8 Polishing.
Use dynamic copyright year for docs.

See #1597
2023-09-11 09:00:00 +02:00
Mark Paluch
24d3584488 Polishing.
Update documentation URL.

See #1597
2023-09-08 11:57:17 +02:00
Mark Paluch
99a8b01809 Harmonize content.
Refactor content to a natural flow, remove duplications, extract partials.

See #1597
2023-09-01 11:14:02 +02:00
Mark Paluch
4202b090ed Migrate documentation to Antora.
Closes #1597
2023-08-31 11:56:42 +02:00
Julia Lee
0c39621c73 Prepare 3.2 M2 (2023.1.0).
See #1562
2023-08-18 08:49:41 -04:00
Jens Schauder
93821f5f42 Enable Single Query Loading for simple aggregates.
Single Query Loading loads as the name suggests complete aggregates using a single select.
While the ultimate goal is to support this for all aggregates, this commit enables it only for simple aggregate and also only for some operations.
A simple aggregate is an aggregate that only reference up to one other entity and does not have embedded entities.
The supported operations are those available via `CrudRepository`: `findAll`, `findById`, and `findAllByIds`.

Single Query Loading does NOT work with the supported in memory databases H2 and HSQLDB, since these do not properly support windowing functions, which are essential for Single Query Loading.

To turn on Single Query Loading call `RelationalMappingContext.setSingleQueryLoadingEnabled(true)`.

Closes #1446
See #1450
See #1445
Original pull request: #1572
2023-08-15 10:16:41 +02:00
Mark Paluch
290fea4ae3 Prepare 3.2 M1 (2023.1.0).
See #1511
2023-07-14 14:52:14 +02:00
Mark Paluch
c55a54e613 Polishing.
See #1538
2023-06-15 09:17:46 +02:00
Mark Paluch
b07abd7afc Update event documentation to reflect the notification-only aspect of lifecycle events.
Closes #1538
2023-06-13 14:39:15 +02:00
Mark Paluch
6b3819c6db Use snapshot and milestone repositories instead of libs-snapshot and libs-milestone.
Closes #1527
2023-06-06 09:59:33 +02:00
Mark Paluch
b35c7cb317 Add documentation.
See #756
Original pull request: #1520
2023-06-06 08:51:22 +02:00
Mark Paluch
064b3d3da7 Move Projections documentation to the top level.
Closes #1515
2023-05-30 15:18:50 +02:00
Christoph Strobl
370b757a2c Prepare 3.1 GA (2023.0.0).
See #1498
2023-05-12 14:14:09 +02:00
Greg L. Turnquist
6fc4243327 Prepare 3.1 RC1 (2023.0.0).
See #1456
2023-04-14 11:53:26 -05:00
Christoph Strobl
16241e1288 Prepare 3.1 M3 (2023.0.0).
See #1430
2023-03-20 15:01:20 +01:00
Kurt Niemi
5c16a753ea Fix broken links in reference documentation.
Closes #1412
Original pull request #1453
2023-03-17 09:42:19 +01:00
Christoph Strobl
6252318df3 Prepare 3.1 M2 (2023.0.0).
See #1429
2023-02-17 14:22:18 +01:00
Christoph Strobl
d2f3e3faa6 Prepare 3.1 M1 (2023.0.0).
See #1389
2023-02-17 13:27:11 +01:00
Mark Paluch
690488ef99 Prepare 3.0 GA (2022.0.0).
See #1361
2022-11-18 14:26:13 +01:00
Levani Kokhreidze
bb23f86d11 Fix jdbc-custom-conversions.adoc Java code snippet alignment.
Original pull request #1369
2022-11-16 10:26:28 +01:00
Jens Schauder
5349fde133 Replace New and Noteworthy with links to release notes.
Closes #1351
Original pull request #1352
See spring-projects/spring-data-commons#2723
2022-11-10 10:34:31 +01:00