Mark Paluch
bd2e706ea2
Updated changelog.
...
See #963
5 years ago
Greg L. Turnquist
eac9b267ee
Update CI to JDK 16.
...
See #946 .
5 years ago
Jens Schauder
920b2d47ef
Upgrades MySql for testing to 8.0.24.
...
This version of the docker container doesn't allow to use `root` as the database user name.
We still have to connect as `root` so we can create alternative schemata.
5 years ago
Greg L. Turnquist
574ff2680f
Polishing.
5 years ago
Greg L. Turnquist
f750b6df4c
Authenticate with artifactory.
...
See #955 .
5 years ago
Greg L. Turnquist
3aa5ece2c9
Migrate to main branch.
...
See #955 .
5 years ago
Mark Paluch
7585f870cf
After release cleanups.
...
See #955
5 years ago
Mark Paluch
aa7d68d8c3
Prepare next development iteration.
...
See #955
5 years ago
Mark Paluch
1ba42993c6
Release version 2.2 GA (2021.0.0).
...
See #955
5 years ago
Mark Paluch
87d54655cd
Prepare 2.2 GA (2021.0.0).
...
See #955
5 years ago
Mark Paluch
bbe98a7312
Updated changelog.
...
See #955
5 years ago
Mark Paluch
30d2b0355f
Updated changelog.
...
See #956
5 years ago
Mark Paluch
8fc9b06eea
Updated changelog.
...
See #943
5 years ago
Jens Schauder
ce048afb2f
Upgrade MyBatis dependencies.
...
Original pull request: #961 .
5 years ago
Jens Schauder
5d127cf2a3
Upgrade DB2 driver to 11.5.5.0.
...
Original pull request: #961 .
5 years ago
Jens Schauder
45e61ad907
Upgrade Hsqldb driver to 2.5.2.
...
Original pull request: #961 .
5 years ago
Jens Schauder
d85ba75d7c
Upgrade MariaDB driver to 2.7.2.
...
Original pull request: #961 .
5 years ago
Jens Schauder
47e06bd3af
Upgrade Sql Server driver to 9.2.1.jre8.
...
Original pull request: #961 .
5 years ago
Jens Schauder
44833531b9
Upgrade mysql driver to 8.0.23.
...
Original pull request: #961 .
5 years ago
Jens Schauder
08c4fd57a6
Upgrade postgres driver to 42.2.19.
...
Original pull request: #961 .
5 years ago
Jens Schauder
cb505aebc7
Upgrade awaitility to 4.0.3.
...
Original pull request: #961 .
5 years ago
Jens Schauder
978d91c9c3
Polishing.
...
Organize version properties in groups and alphabetically.
Extracted additional version properties.
Original pull request: #961 .
5 years ago
Mark Paluch
02c64013da
Polishing.
...
Fix includes.
Original pull request: #951 .
5 years ago
Jens Schauder
140c774c3e
Improve documentation of entity state detection.
...
The use of a version property to determine the state of an entity wasn't properly documented so far.
Closes : #951 .
5 years ago
Jens Schauder
79923b66dc
Polishing.
...
Tried to clarify the two step process of `JdbcQueryExecution` construction in `PartTreeJdbcQuery` by comments and renaming.
Original pull request #952
5 years ago
Mark Paluch
d191938e59
Add support for Slice and Page queries using query derivation.
...
We now support pagination for queries returning Slice and Page.
interface PersonRepository extends PagingAndSortingRepository<Person, String> {
Slice<Person> findFirstByLastname(String lastname, Pageable pageable);
Page<Person> findFirstByLastname(String lastname, Pageable pageable);
}
Closes #774
Original pull request #952
5 years ago
Mark Paluch
842b5cd176
Updated changelog.
...
See #944
5 years ago
Mark Paluch
6bc9afa8d2
After release cleanups.
...
See #941
5 years ago
Mark Paluch
308ed6b081
Prepare next development iteration.
...
See #941
5 years ago
Mark Paluch
743f13949b
Release version 2.2 RC1 (2021.0.0).
...
See #941
5 years ago
Mark Paluch
a69958bd85
Prepare 2.2 RC1 (2021.0.0).
...
See #941
5 years ago
Mark Paluch
2deb4f39ca
Updated changelog.
...
See #941
5 years ago
zimmse
7a324e9fb5
Fix small typo in dialect section.
...
Original pull request #953 .
5 years ago
Mark Paluch
b6c41c68b3
Polishing.
...
Refactor ArrayUtil into a proper utility class providing toPrimitive and toObject methods for each primitive type. Add boolean support. Move convertToObjectArray to BasicJdbcConverter as its placement in ArrayUtils creates a certain amount of ambiguity over its actual purpose.
Create unit test.
See #945
Original pull request: #949 .
5 years ago
Jens Schauder
55c6c0e858
Properly convert primitive array arguments.
...
Closes #945
Original pull request: #949 .
5 years ago
Jens Schauder
f20192cc05
Corrects documentation about query derivation.
...
Closes #947
5 years ago
Mark Paluch
aeb585a536
After release cleanups.
...
See #925
5 years ago
Mark Paluch
dc88c16bef
Prepare next development iteration.
...
See #925
5 years ago
Mark Paluch
e43bc507b0
Release version 2.2 M5 (2021.0.0).
...
See #925
5 years ago
Mark Paluch
c82497141b
Prepare 2.2 M5 (2021.0.0).
...
See #925
5 years ago
Mark Paluch
6a087ef59b
Updated changelog.
...
See #925
5 years ago
Mark Paluch
09c0d89856
Updated changelog.
...
See #927
5 years ago
Mark Paluch
60fc36c297
Updated changelog.
...
See #923
5 years ago
Jens Schauder
53bed2613b
Polishing.
...
Extract method in order to make the code more readable.
Switch to #xxx syntax for issue numbers instead of gh-xxx.
Original pull request #939
5 years ago
Radim Tlusty
304345c4c8
Don't retrieve generated keys on INSERT if id is set.
...
Closes #933
Original pull request #939
5 years ago
Jens Schauder
0e8e8a4799
Polishing.
...
Improves tests by also testing for the negative case.
Original pull request #938
5 years ago
Oliver Drotbohm
32d79cce59
Move to Spring Data Commons' association abstraction.
...
Deprecated Spring Data JDBC's custom PersistentProperty.isReference() in favor of the already existing ….isAssociation() with the same semantics to benefit from association definitions implemented in Spring Data Commons. Make use of the newly introduced PersistentEntity.doWithAll(…) to apply the previously existing property handling to both properties and now associations, too.
Original pull request #938
5 years ago
Oliver Drotbohm
faaaeab4b5
JdbcCustomConversion does not reject non-Date related default converters.
...
Previously, JdbcCustomConversion rejected any default converter that was not converting from and to java.util.Date. This probably stemmed from the fact that up until recently, Spring Data Commons' CustomConversions only registered date related default converters. As of spring-projects/spring-data-commons#2315 we also support jMolecules' Association and Identifier converters. We've relaxed the rejection to only explicitly reject all non Date/Time related converters if the conversion is from/to java.util.Date but allow everything else out of the box.
Original pull request #937
5 years ago
Greg L. Turnquist
0058752754
Add support for Query by Example.
...
Resolves #929 .
5 years ago
Christoph Strobl
802e4a773d
After release cleanups.
...
See #926
5 years ago