Mark Paluch
|
e7e8903e38
|
Prepare next development iteration.
See #2023
|
2025-02-14 09:52:50 +01:00 |
|
Mark Paluch
|
35c1c9fa70
|
Release version 5.3.9 (2024.0.9).
See #2023
|
2025-02-14 09:50:00 +01:00 |
|
Mark Paluch
|
bc2d69733e
|
Prepare 5.3.9 (2024.0.9).
See #2023
|
2025-02-14 09:49:41 +01:00 |
|
Mark Paluch
|
31d8c08b0c
|
Update CI Properties.
See #2023
|
2025-02-11 15:22:27 +01:00 |
|
Mark Paluch
|
c35a906f5a
|
After release cleanups.
See #2010
|
2025-01-17 10:34:47 +01:00 |
|
Mark Paluch
|
ea7a2996ff
|
Prepare next development iteration.
See #2010
|
2025-01-17 10:34:46 +01:00 |
|
Mark Paluch
|
5fef0720fd
|
Release version 5.3.8 (2024.0.8).
See #2010
|
2025-01-17 10:32:18 +01:00 |
|
Mark Paluch
|
ceeffde64c
|
Prepare 5.3.8 (2024.0.8).
See #2010
|
2025-01-17 10:32:01 +01:00 |
|
Mark Paluch
|
c3381fbeac
|
Extend license header copyright years to 2025.
See #2012
|
2025-01-08 09:56:49 +01:00 |
|
Christoph Strobl
|
d7999985bc
|
After release cleanups.
See #2002
|
2024-12-13 10:54:22 +01:00 |
|
Christoph Strobl
|
e05df46680
|
Prepare next development iteration.
See #2002
|
2024-12-13 10:54:21 +01:00 |
|
Christoph Strobl
|
47423f5c66
|
Release version 5.3.7 (2024.0.7).
See #2002
|
2024-12-13 10:51:13 +01:00 |
|
Christoph Strobl
|
3c3f2606e2
|
Prepare 5.3.7 (2024.0.7).
See #2002
|
2024-12-13 10:50:51 +01:00 |
|
Mark Paluch
|
65b6ecc327
|
After release cleanups.
See #1997
|
2024-11-15 11:47:58 +01:00 |
|
Mark Paluch
|
1021bed0ca
|
Prepare next development iteration.
See #1997
|
2024-11-15 11:47:57 +01:00 |
|
Mark Paluch
|
ec0b6aa3f5
|
Release version 5.3.6 (2024.0.6).
See #1997
|
2024-11-15 11:45:38 +01:00 |
|
Mark Paluch
|
cfed1cb052
|
Prepare 5.3.6 (2024.0.6).
See #1997
|
2024-11-15 11:45:23 +01:00 |
|
Mark Paluch
|
bb9d72eb31
|
Update CI Properties.
See #1997
|
2024-11-15 10:39:02 +01:00 |
|
Mark Paluch
|
c6f2ed7985
|
Upgrade to Maven Wrapper 3.9.9.
See #2000
|
2024-11-07 09:49:33 +01:00 |
|
Mark Paluch
|
55ac298ecd
|
After release cleanups.
See #1963
|
2024-10-18 11:39:06 +02:00 |
|
Mark Paluch
|
ed7be1e04f
|
Prepare next development iteration.
See #1963
|
2024-10-18 11:39:04 +02:00 |
|
Mark Paluch
|
1ae91a73f6
|
Release version 5.3.5 (2024.0.5).
See #1963
|
2024-10-18 11:36:33 +02:00 |
|
Mark Paluch
|
aade8d0670
|
Prepare 5.3.5 (2024.0.5).
See #1963
|
2024-10-18 11:36:17 +02:00 |
|
Michael Reiche
|
7e2f1c1a34
|
Update QueryDSL doc. (#1994)
Closes #1993.
|
2024-10-17 15:32:04 -07:00 |
|
Michael Reiche
|
40d8562a91
|
Remove dependency on javax.inject from querydsl. (#1992)
To use querydsl, the spring application will need to add a dependency
<dependency>
<groupId>com.querydsl</groupId>
<artifactId>querydsl-apt</artifactId>
<version>${querydsl}</version>
<classifier>jakarta</classifier>
<scope>provided</scope>
</dependency>
And explicitly specify CouchbasseAnnotationProcessor
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<executions>
<execution>
<id>annotation-processing</id>
<phase>generate-sources</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<proc>only</proc>
<annotationProcessors>
<annotationProcessor>org.springframework.data.couchbase.repository.support.CouchbaseAnnotationProcessor</annotationProcessor>
</annotationProcessors>
<generatedTestSourcesDirectory>target/generated-test-sources</generatedTestSourcesDirectory>
<compilerArgs>
<arg>-Aquerydsl.logInfo=true</arg>
</compilerArgs>
</configuration>
</execution>
</executions>
</plugin>
Closes #1989.
|
2024-10-17 13:31:14 -07:00 |
|
mikereiche
|
27ce8ab513
|
Revert "Change scope of javax.inject.Inject to compile. (#1983)"
This reverts commit e98e1939f3.
|
2024-10-10 16:53:58 -07:00 |
|
Michael Reiche
|
92f2750c24
|
Fix javadoc in couchbase cache. (#1985)
Closes #1984.
|
2024-10-10 11:08:27 -07:00 |
|
Michael Reiche
|
e98e1939f3
|
Change scope of javax.inject.Inject to compile. (#1983)
Closes #1948.
|
2024-10-10 09:52:31 -07:00 |
|
Michael Reiche
|
46426c3d54
|
Fix to sdc_1944 to handle null SecurityContext. (#1981)
Closes #1944.
|
2024-10-10 09:40:06 -07:00 |
|
Michael Reiche
|
d75b4b665f
|
Propagate SecurityContext into @Transactional methods. (#1979)
Closes #1944.
|
2024-10-10 09:35:15 -07:00 |
|
Michael Reiche
|
8360fe3787
|
Allow primitive repository args for DynamicProxyable repositories.. (#1972)
Closes #1965.
|
2024-10-10 09:30:01 -07:00 |
|
Michael Reiche
|
2ead91f819
|
Add transcoder support on Cache get, putIfAbsent. (#1970)
Closes #1966.
|
2024-10-10 09:09:53 -07:00 |
|
Michael Reiche
|
ce57f76ea4
|
Fix test for being inside a transaction. (#1969)
Closes #1968.
|
2024-10-10 09:03:16 -07:00 |
|
Mark Paluch
|
6eccb39e95
|
Fix CI permission issues.
Consistently build all steps with the same docker user.
Closes #1973
|
2024-10-09 09:22:15 +02:00 |
|
Jens Schauder
|
07f738f8f4
|
After release cleanups.
See #1959
|
2024-09-13 11:40:09 +02:00 |
|
Jens Schauder
|
24c5ac4dd2
|
Prepare next development iteration.
See #1959
|
2024-09-13 11:40:08 +02:00 |
|
Jens Schauder
|
4786d2c9ec
|
Release version 5.3.4 (2024.0.4).
See #1959
|
2024-09-13 11:36:55 +02:00 |
|
Jens Schauder
|
a91ed152d4
|
Prepare 5.3.4 (2024.0.4).
See #1959
|
2024-09-13 11:36:35 +02:00 |
|
Jens Schauder
|
cc846b8cc6
|
Upgrade Couchbase Client to 3.6.3.
Closes #1960
|
2024-09-11 16:08:18 +02:00 |
|
Jens Schauder
|
cea8dd5c80
|
After release cleanups.
See #1952
|
2024-08-16 10:08:54 +02:00 |
|
Jens Schauder
|
f49a8eb2b6
|
Prepare next development iteration.
See #1952
|
2024-08-16 10:08:53 +02:00 |
|
Jens Schauder
|
be5f9e99b9
|
Release version 5.3.3 (2024.0.3).
See #1952
|
2024-08-16 10:05:57 +02:00 |
|
Jens Schauder
|
57fe6f663d
|
Prepare 5.3.3 (2024.0.3).
See #1952
|
2024-08-16 10:05:39 +02:00 |
|
Mark Paluch
|
00793be707
|
Upgrade to Maven Wrapper 3.9.8.
See #1957
|
2024-08-08 10:23:15 +02:00 |
|
Mark Paluch
|
33fae86839
|
Update CI properties.
See #1952
|
2024-08-08 10:19:20 +02:00 |
|
Eric Haag
|
2612c56469
|
Migrate build to Spring Develocity Conventions extension.
* Migrate build to Spring Develocity Conventions extension.
* Adopt Develocity environment variables.
Closes #1954
|
2024-08-01 15:48:34 +02:00 |
|
Mark Paluch
|
20dee2db45
|
Bundle Javadoc with Antora documentation site.
Closes #1953
|
2024-07-31 14:57:20 +02:00 |
|
Jens Schauder
|
bc7f1a5a49
|
After release cleanups.
See #1946
|
2024-07-12 19:12:15 +02:00 |
|
Jens Schauder
|
a898bfcbc4
|
Prepare next development iteration.
See #1946
|
2024-07-12 19:12:14 +02:00 |
|
Jens Schauder
|
0e69c7a475
|
Release version 5.3.2 (2024.0.2).
See #1946
|
2024-07-12 19:09:19 +02:00 |
|