676 Commits

Author SHA1 Message Date
JaeYeon Kim
3c3293d91c Fixing Typo in JdbcAggregateChangeExecutionContext Exception Message.
Signed-off-by: JaeYeon Kim <ghgh415263@naver.com>

Original pull request #2074
2025-06-16 15:43:07 +02:00
Mark Paluch
ffa647a1e6 Prepare next development iteration.
See #2056
2025-06-13 11:17:51 +02:00
Mark Paluch
dd2c361ed7 Release version 3.4.7 (2024.1.7).
See #2056
2025-06-13 11:15:17 +02:00
Jens Schauder
376dce436e Polishing.
Formatting.
Simplification of code.

Original pull request #2065
See #2064
2025-06-11 15:13:48 +02:00
Jens Schauder
e2c085136e Switch to VARCHAR2 for Oracle tests.
VARCHAR should not be used with Oracle.

Original pull request #2065
See #2064
2025-06-11 15:11:28 +02:00
Jens Schauder
1a981513cc Fixes integration tests.
Adding sizes to VARCHAR fields.

Original pull request #2065
See #2064
2025-06-11 15:11:00 +02:00
mipo256
5b3fa3d995 Applies proper event handling before saving in batch.
Signed-off-by: mipo256 <mikhailpolivakha@gmail.com>

Commit message edited by Jens Schauder.

Original pull request #2065
Closes #2064
2025-06-11 15:10:57 +02:00
Mark Paluch
263482be1c Prepare next development iteration.
See #2041
2025-05-16 10:51:19 +02:00
Mark Paluch
d2d669689e Release version 3.4.6 (2024.1.6).
See #2041
2025-05-16 10:48:33 +02:00
Mark Paluch
a5414baa64 Prepare next development iteration.
See #2014
2025-04-22 10:47:45 +02:00
Mark Paluch
11968c6f9d Release version 3.4.5 (2024.1.5).
See #2014
2025-04-22 10:45:18 +02:00
Mark Paluch
31712be780 Prepare next development iteration.
See #1995
2025-03-14 08:20:02 +01:00
Mark Paluch
9594250dae Release version 3.4.4 (2024.1.4).
See #1995
2025-03-14 08:17:35 +01:00
Mark Paluch
1b51545de6 Prepare next development iteration.
See #1983
2025-02-14 10:42:41 +01:00
Mark Paluch
673e9bf08c Release version 3.4.3 (2024.1.3).
See #1983
2025-02-14 10:40:05 +01:00
luckygc
4bd5958f68 Fix typo SqlGenerator.java
Original pull request #1987

Signed-off-by: luckygc <chenwwecm@gmail.com>

Commit message edited.
2025-02-11 13:01:25 +01:00
Mark Paluch
85e8c5c0be Prepare next development iteration.
See #1958
2025-01-17 11:39:59 +01:00
Mark Paluch
6922172be3 Release version 3.4.2 (2024.1.2).
See #1958
2025-01-17 11:37:36 +01:00
Jens Schauder
1c9c014fa0 Invoke callbacks for find by Query methods.
Callback handlers are now properly called for findAll/One with Query parameter.

Closes #1979
2025-01-13 09:42:49 +01:00
Jens Schauder
496f151227 Simplified EntityRowMapper.
Removes an unused field and moves operations into  constructor, to make the mapRow method simpler.

Closes #1974
2025-01-08 15:09:50 +01:00
Mark Paluch
f483d385d2 Extend license header copyright years to 2025.
See #1971
2025-01-08 09:58:51 +01:00
Christoph Strobl
2437280232 Prepare next development iteration.
See #1941
2024-12-13 09:38:11 +01:00
Christoph Strobl
0c728ee0ec Release version 3.4.1 (2024.1.1).
See #1941
2024-12-13 09:34:48 +01:00
Mark Paluch
b13ba5f4aa Prepare next development iteration.
See #1916
2024-11-15 14:13:25 +01:00
Mark Paluch
2bda8fec26 Release version 3.4 GA (2024.1.0).
See #1916
2024-11-15 14:10:52 +01:00
Jens Schauder
49e343fe8a Fix Callback order.
This undos the changes to `JdbcAggregateTemplate` done by 7cf81ae.
Since we are in the RC phase I opt against trying to redo the refactoring

Closes #1924
2024-10-29 09:47:31 +01:00
Jens Schauder
a351a66fcb Polishing.
Using records in tests.
Removing "public" modifier in tests.

See #1924
2024-10-29 09:47:31 +01:00
Jens Schauder
593d73ab16 Fix SQL generation for query with sorting.
Closes #1919
2024-10-25 15:24:23 +02:00
Mark Paluch
73e503338d Polishing.
Eliminate potential NoSuchElementException from unchecked Optional.get usage. Simplify stream. Return Staged value, fix Nullability annotations.

See #1907
Original pull request: #1920
2024-10-25 14:56:54 +02:00
Jens Schauder
a7d7adaaf2 Fix id setting for partial updates of collections of immutable types.
We gather immutable entities of which the id has changed, in order to set them as values in the parent entity.
We now also gather unchanged entities.
So they get set with the changed one in the parent.

Closes #1907
Original pull request: #1920
2024-10-25 14:56:54 +02:00
Tran Ngoc Nhan
f2d62ad7e7 Polishing.
Pattern matching usage.
Diamond operator usage.
Remove unused import.
isEmpty usage.

Original pull request #1912
2024-10-21 09:10:13 +02:00
Mark Paluch
b788e7abac Prepare next development iteration.
See #1883
2024-10-18 12:49:40 +02:00
Mark Paluch
22f12e341e Release version 3.4 RC1 (2024.1.0).
See #1883
2024-10-18 12:47:01 +02:00
Mark Paluch
8c6364b4bf Polishing.
Simplify R2DBC expression handling. Use new ValueExpression API instead of holding parameter binding duplicates.

Reformat code. Add author tags.

See #1904
Original pull request: #1906
2024-10-09 13:35:18 +02:00
Marcin Grzejszczak
d526cd3a22 Add support for Value Expressions for Repository Query methods.
Closes #1904
Original pull request: #1906
2024-10-09 13:35:16 +02:00
Mark Paluch
8622d70ba4 Polishing.
Refine tests. Extend comment for future-me.

See #1900
Original pull request: #1903
2024-10-02 15:08:11 +02:00
Jens Schauder
ae8651869e Do not convert binary data in List<byte[]> to array SQL type.
byte[] is mapped to BINARY data and is not considered tuple data.

The explicit check for byte[] is not very nice but matches the special handling in MappingJdbcConverter.writeJdbcValue

Closes #1900
Original pull request: #1903
2024-10-02 15:08:10 +02:00
Jens Schauder
b3040a1044 Removes superfluous EnabledOnDatabase.
Closes #1902
2024-10-01 15:57:04 +02:00
Mark Paluch
7cf81aed35 Polishing.
Replace code duplications with doWithBatch(…) method. Return most concrete type in DefaultDataAccessStrategy and MyBatisDataAccessStrategy.

See #1623
Original pull request: #1897
2024-10-01 09:10:59 +02:00
Jens Schauder
c4f62e9f56 Return List instead of Iterable in JDBC Repositories and JdbcAggregateOperations.
Closes #1623
Original pull request: #1897
2024-10-01 09:10:58 +02:00
Jens Schauder
4d5a382a73 Polishing.
Original pull request #1901
2024-09-30 12:20:11 +02:00
Mikhail2048
08daf47842 Refactoring.
Clarified nullabillity for Identifier.
Removed usage of deprecated constructor for StringBasedJdbcQuery.

Original pull request #1901
2024-09-30 12:18:43 +02:00
Tran Ngoc Nhan
146e5495df Minor refactoring.
Original pull request #1895
2024-09-24 09:09:08 +02:00
Tran Ngoc Nhan
9277792d87 Polishing.
Original pull request #1894
2024-09-23 09:20:47 +02:00
Mark Paluch
033ac1f95a Polishing.
Refactor JdbcLookupStrategy to not generally require BeanFactory. Reintroduce deprecated setBeanFactory(…) method.

See #1872
Original pull request: #1874
2024-09-16 09:10:12 +02:00
Jens Schauder
d2bb64f4ca StringBasedJdbcQuery no longer requires BeanFactory.
The lookup is now performed by the `RowMapperFactory`.

Closes #1872
Original pull request: #1874
2024-09-16 09:10:12 +02:00
Jens Schauder
9e91a0e7a5 Polishing.
Fix Javadoc.

See #1872
Original pull request: #1874
2024-09-16 09:10:12 +02:00
Jens Schauder
eb9168f95e Prepare next development iteration.
See #1791
2024-09-13 12:42:27 +02:00
Jens Schauder
f7936e0fe6 Release version 3.4 M1 (2024.1.0).
See #1791
2024-09-13 12:39:33 +02:00
Jens Schauder
615c79cb3e Polishing.
See #1873
Original pull request #1875
2024-09-12 09:24:43 +02:00