Commit Graph

1334 Commits

Author SHA1 Message Date
Mark Paluch
9a9a264e5b After release cleanups.
See #2033
2025-03-14 08:20:03 +01:00
Mark Paluch
ce838794de Prepare next development iteration.
See #2033
2025-03-14 08:20:02 +01:00
Mark Paluch
1528e3d008 Release version 5.4.4 (2024.1.4).
See #2033
2025-03-14 08:17:35 +01:00
Mark Paluch
a8c49aa3bf Prepare 5.4.4 (2024.1.4).
See #2033
2025-03-14 08:17:18 +01:00
Mark Paluch
740de4d4f3 After release cleanups.
See #2024
2025-02-14 10:42:42 +01:00
Mark Paluch
4718e26bff Prepare next development iteration.
See #2024
2025-02-14 10:42:41 +01:00
Mark Paluch
2fe909789e Release version 5.4.3 (2024.1.3).
See #2024
2025-02-14 10:40:05 +01:00
Mark Paluch
9be35b7832 Prepare 5.4.3 (2024.1.3).
See #2024
2025-02-14 10:39:46 +01:00
Michael Reiche
cd3d88310f Bump Couchbase SDK to 3.7.8. (#2029)
Closes #2028.

Signed-off-by: mikereiche <michael.reiche@couchbase.com>
2025-02-13 09:57:36 -08:00
Mark Paluch
4996b88c0b Update CI Properties.
See #2024
2025-02-11 15:22:46 +01:00
Mark Paluch
b31bc256ae After release cleanups.
See #2009
2025-01-17 11:40:00 +01:00
Mark Paluch
30ce0b20b9 Prepare next development iteration.
See #2009
2025-01-17 11:39:59 +01:00
Mark Paluch
7472b7f767 Release version 5.4.2 (2024.1.2).
See #2009
2025-01-17 11:37:36 +01:00
Mark Paluch
1761d855ff Prepare 5.4.2 (2024.1.2).
See #2009
2025-01-17 11:37:19 +01:00
Michael Reiche
f2d171f447 Bump Couchbase Java SDK to 3.7.7. (#2021)
Closes #2020.

Signed-off-by: mikereiche <michael.reiche@couchbase.com>
2025-01-14 14:30:11 -08:00
Mark Paluch
592a721c63 Extend license header copyright years to 2025.
See #2013
2025-01-08 09:58:50 +01:00
Christoph Strobl
1e5dc96fc5 After release cleanups.
See #2003
2024-12-13 09:38:13 +01:00
Christoph Strobl
255a1891ea Prepare next development iteration.
See #2003
2024-12-13 09:38:11 +01:00
Christoph Strobl
82adbf3428 Release version 5.4.1 (2024.1.1).
See #2003
2024-12-13 09:34:48 +01:00
Christoph Strobl
693fdfb9b5 Prepare 5.4.1 (2024.1.1).
See #2003
2024-12-13 09:34:27 +01:00
Mark Paluch
0c1aac2712 After release cleanups.
See #1998
2024-11-15 14:13:26 +01:00
Mark Paluch
ed4aa9b7ef Prepare next development iteration.
See #1998
2024-11-15 14:13:25 +01:00
Mark Paluch
0647b7e7f1 Release version 5.4 GA (2024.1.0).
See #1998
2024-11-15 14:10:52 +01:00
Mark Paluch
eb6621411a Prepare 5.4 GA (2024.1.0).
See #1998
2024-11-15 14:10:37 +01:00
Mark Paluch
68b6682c6c Update CI Properties.
See #1998
2024-11-15 10:39:50 +01:00
Mark Paluch
2816d11474 Upgrade to Maven Wrapper 3.9.9.
See #1999
2024-11-07 09:47:28 +01:00
Mark Paluch
ec46928fc4 After release cleanups.
See #1964
2024-10-18 12:49:41 +02:00
Mark Paluch
1d8992c30e Prepare next development iteration.
See #1964
2024-10-18 12:49:40 +02:00
Mark Paluch
344c11e2cc Release version 5.4 RC1 (2024.1.0).
See #1964
2024-10-18 12:47:01 +02:00
Mark Paluch
49e704c4ea Prepare 5.4 RC1 (2024.1.0).
See #1964
2024-10-18 12:46:44 +02:00
Michael Reiche
3d7e10ec5f Add compatibility in doc. (#1995)
Closes #1901.
2024-10-17 17:21:14 -07:00
Michael Reiche
b751bdd12a Update QueryDSL doc. (#1994)
Closes #1993.
2024-10-17 14:29:27 -07:00
Michael Reiche
bc0c757df3 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 10:17:08 -07:00
mikereiche
756a8c5ae9 Revert "Change scope of javax.inject.Inject to compile. (#1983)"
This reverts commit 9db3d6d152.
2024-10-10 16:52:08 -07:00
Michael Reiche
f4f808a9f4 Fix javadoc in couchbase cache. (#1985)
Closes #1984.
2024-10-10 11:06:17 -07:00
Michael Reiche
9db3d6d152 Change scope of javax.inject.Inject to compile. (#1983)
Closes #1948.
2024-10-10 08:53:55 -07:00
Michael Reiche
9bd5e96635 Bump Couchbase Java SDK to 3.7.4. (#1982)
Closes #1980.
2024-10-09 18:46:22 -07:00
Michael Reiche
52a386b517 Fix to sdc_1944 to handle null SecurityContext. (#1981)
Closes #1944.
2024-10-09 18:25:21 -07:00
Michael Reiche
98d39b153f Propagate SecurityContext into @Transactional methods. (#1979)
Closes #1944.
2024-10-09 17:46:32 -07:00
Michael Reiche
2ff18ebc2b Fix number of parameters in string based @Query queries. (#1978)
Closed #1977.
2024-10-09 17:23:54 -07:00
Mark Paluch
395c7aa811 Fix CI permission issues.
Consistently build all steps with the same docker user.

Closes #1973
2024-10-09 09:22:43 +02:00
Michael Reiche
bc7912e786 Revert "Fix ci/clean.sh permission denied. (#1974)" (#1976)
This reverts commit 13d39949ad.

Closes #1975.
2024-10-03 15:14:17 -07:00
Michael Reiche
13d39949ad Fix ci/clean.sh permission denied. (#1974)
Closes #1973.
2024-10-03 15:02:58 -07:00
Michael Reiche
d0a2d7e6d2 Allow primitive repository args for DynamicProxyable repositories.. (#1972)
Closes #1965.
2024-10-03 14:13:23 -07:00
Michael Reiche
9cf484440b Fix auditing. (#1971)
Closes #1967.
2024-10-03 13:38:07 -07:00
Michael Reiche
10ffd42284 Add transcoder support on Cache get, putIfAbsent. (#1970)
Closes #1966.
2024-10-03 13:17:44 -07:00
Michael Reiche
78ee99afbf Fix test for being inside a transaction. (#1969)
Closes #1968.
2024-10-03 09:37:09 -07:00
Jens Schauder
10f71c9db4 After release cleanups.
See #1943
2024-09-13 12:42:28 +02:00
Jens Schauder
a91e6a1ab8 Prepare next development iteration.
See #1943
2024-09-13 12:42:27 +02:00
Jens Schauder
d073072a5d Release version 5.4 M1 (2024.1.0).
See #1943
2024-09-13 12:39:33 +02:00