John Blum
8346badf54
Prepare 3.1.5 (2023.0.5).
...
See #1613
2 years ago
Mark Paluch
abaad79af4
Prepare 3.1.4 (2023.0.4).
...
See #1591
3 years ago
Ramil Sayetov
8e40e63f64
Fix links to spring.io docs.
...
Closes #1571
3 years ago
Mark Paluch
32b6850f3a
Prepare 3.1.3 (2023.0.3).
...
See #1563
3 years ago
Mark Paluch
1ee4479d54
Prepare 3.1.2 (2023.0.2).
...
See #1542
3 years ago
John Blum
2e794c9e76
Prepare 3.1.1 (2023.0.1).
...
See #1510
3 years ago
Mark Paluch
7ca1797eda
Polishing.
...
See #1538
3 years ago
Mark Paluch
54093711e0
Update event documentation to reflect the notification-only aspect of lifecycle events.
...
Closes #1538
3 years ago
Mark Paluch
69ccc565aa
Use snapshot and milestone repositories instead of libs-snapshot and libs-milestone.
...
Closes #1527
3 years ago
Mark Paluch
a0fd9851d5
Move Projections documentation to the top level.
...
Closes #1515
3 years ago
Christoph Strobl
370b757a2c
Prepare 3.1 GA (2023.0.0).
...
See #1498
3 years ago
Greg L. Turnquist
6fc4243327
Prepare 3.1 RC1 (2023.0.0).
...
See #1456
3 years ago
Christoph Strobl
16241e1288
Prepare 3.1 M3 (2023.0.0).
...
See #1430
3 years ago
Kurt Niemi
5c16a753ea
Fix broken links in reference documentation.
...
Closes #1412
Original pull request #1453
3 years ago
Christoph Strobl
6252318df3
Prepare 3.1 M2 (2023.0.0).
...
See #1429
3 years ago
Christoph Strobl
d2f3e3faa6
Prepare 3.1 M1 (2023.0.0).
...
See #1389
3 years ago
Mark Paluch
690488ef99
Prepare 3.0 GA (2022.0.0).
...
See #1361
3 years ago
Levani Kokhreidze
bb23f86d11
Fix `jdbc-custom-conversions.adoc` Java code snippet alignment.
...
Original pull request #1369
3 years ago
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
3 years ago
Mark Paluch
e0a5f88b56
Prepare 3.0 RC2 (2022.0.0).
...
See #1366
3 years ago
Mark Paluch
debf0b7563
Prepare 3.0 RC1 (2022.0.0).
...
See #1333
3 years ago
Jens Schauder
d7f2a27ee9
Revised default behaviour for back reference naming.
...
The new default is to take `@Table` annotations into account.
The behaviour can be configured by setting the `foreignKeyNaming` property on the `RelationalMappingContext`.
Closes #1162
See #1147
Original pull request: #1324 .
3 years ago
Jens Schauder
40446f9ca9
The back reference generation is now configurable.
...
The default version is the behavior that existed so far:
The back reference is the table name as generated by the `NamingStrategy` without taking `@Table` annotations into account.
The new alternative is to take `@Table` into account.
The behavior can be configured by setting the `foreignKeyNaming` property on the `RelationalMappingContext`.
Closes #1161
Closes #1147
Original pull request: #1324 .
3 years ago
Jens Schauder
15796b88fe
Fix broken includes in reference documentation.
...
Closes #1349
3 years ago
Jens Schauder
004804aad8
Introduce `@InsertOnlyProperty`.
...
You may now annotate properties of the aggregate root with `@InsertOnlyProperty`.
Properties annotated in such way will be written to the database only during insert operations, but they will not be updated afterwards.
Closes #637
Original pull request #1327
3 years ago
Christopher Klein
9abaa5a911
Support for SpEL inside @Query annotations.
...
Constructs like the following work now.
```
@Query("select u from User u where u.firstname = :#{#customer.firstname}")
List<User> findUsersByCustomersFirstname(@Param("customer") Customer customer);
```
Closes #619
Original pull request #229
See https://spring.io/blog/2014/07/15/spel-support-in-spring-data-jpa-query-definitions
4 years ago
Spring Builds
2c28684347
Prepare 3.0 M6 (2022.0.0).
...
See #1295
4 years ago
Jens Schauder
09dfbf14a3
Clarify that events and callbacks documentation.
...
Events and callbacks only get triggered for aggregate roots.
Closes #1328
4 years ago
Jens Schauder
bf356f561d
Clarify documentation for `@Modifying`.
...
Modifying queries are executed directly against the database.
No events or callbacks get called.
Therefore also fields with auditing annotations do not get updated if they don't get updated in the annotated query.
Closes #970
4 years ago
Jens Schauder
7a4143fb50
Changelog removed.
...
Closes #1013
4 years ago
Jens Schauder
fcbecda414
Remove the namespace reference and links to it.
...
Closes #1290
See https://github.com/spring-projects/spring-data-commons/issues/2662
Original pull request #1298
4 years ago
Mark Paluch
d79ba7911f
Allow disabling entity lifecycle events.
...
We now support disabling lifecycle events through the Template API to reduce the framework overhead when events are not needed.
Closes #1291
4 years ago
Christoph Strobl
2a101fea35
Prepare 3.0 M5 (2022.0.0).
...
See #1247
4 years ago
Jens Schauder
27e2aa285a
Documentation for Query By Example.
...
Original pull request #1195
See #1192
4 years ago
Jens Schauder
dcd4ef0cdc
Support readonly properties for references.
...
The `@ReadOnlyProperty` annotation is now honoured for references to entities or collections of entities.
For tables mapped to such annotated references, no insert, delete or update statements will be created.
The user has to maintain that data through some other means.
These could be triggers or external process or `ON DELETE CASCADE` configuration in the database schema.
Closes #1249
Original pull request #1250
4 years ago
Christoph Strobl
fd86f429e7
Prepare 3.0 M4 (2022.0.0).
...
See #1206
4 years ago
Jens Schauder
4353dc8e06
Improve and clarify documentation of callbacks.
...
This also removes deprecated Events and Callbacks.
Closes #1236
4 years ago
Mark Paluch
6ffe53553a
Prepare 3.0 M3 (2022.0.0).
...
See #1205
4 years ago
Chirag Tailor
2ee908c217
Update java and reference doc info on lifecycle events/callbacks.
...
Original pull request #1200
4 years ago
Mark Paluch
cd6e47cae4
Prepare 3.0 M2 (2022.0.0).
...
See #1132
4 years ago
Christoph Strobl
6289f4de9b
Update copyright year to 2022.
...
See: #722
4 years ago
Christoph Strobl
c1c38a71d6
Update copyright year to 2022.
...
See: #1168
4 years ago
Oliver Drotbohm
4218d5a321
Adapt to changes in entity creation metadata APIs in Spring Data Commons.
4 years ago
Jens Schauder
31dc93a0e2
Polishing.
...
Original pull request #1166
4 years ago
Diego Krupitza
55b6180d12
Added reference documentation for Lock on derived queries.
...
The reference documentation now contains how to use `@Lock` on derived queries and what to expect from it.
Original pull request #1166
4 years ago
Jan Michal
c0cd813f3d
Fix a typo in the docs for query methods.
...
Original pull request #1163
4 years ago
Jens Schauder
a17e4bba49
Follow through with the split of CRUD repository and sorting repository.
...
Closes #719
See spring-projects/spring-data-commons#2537
4 years ago
Mark Paluch
7c3ff05cb5
Upgrade tests to use R2DBC 0.9.
...
See #710
4 years ago
Mark Paluch
907f4865b5
Upgrade to R2DBC 0.9.
...
Remove MySQL support as the MySQL driver is not yet published. Update groupId for Postgres driver to org.postgresql.
See #710
4 years ago
Mark Paluch
b06c90cfa1
Upgrade to Oracle JDBC driver 21.4.0.0.1.
...
See #710
4 years ago