Commit Graph

802 Commits

Author SHA1 Message Date
Michael Reiche
e65e53e294 Exclude javax.inject and CouchbaseAnnotationProcessor to exit gracefully without. (#1934)
CouchbaseAnnotationProcessor will provide a warning and skip generation
if javax.inject is not present.
2024-04-10 17:41:37 -07:00
Michael Reiche
bccab34cc3 Store BigDecimal and BigInteger as Numbers like the Java SDK does. (#1933)
Also be able to read BigDecimal and BigInteger that were written as String.
Also does not lose precision by converting BigDecimal to double in the transcoder.

Closes #1611.
2024-04-10 17:40:39 -07:00
Mark Paluch
d86c09ae74 Prepare 5.2.4 (2023.1.4).
See #1903
2024-03-15 10:17:30 +01:00
Michael Reiche
b18ee9d5f1 Make CrudMethodMetadataPostProcessor public and make factory getTargetRepository() not final. (#1913)
This is to ease extending spring-data-couchbase.

Closes #1877.
2024-03-13 15:05:26 -07:00
Michael Reiche
4469cefb9d Eliminate split packages. (#1912)
Closes #1906.
2024-03-13 15:04:26 -07:00
Michael Reiche
4e8626ce6c Change AuditingEventListener Constructor Signature. (#1908)
Closes #1884.
2024-03-13 15:01:32 -07:00
Mark Paluch
959d9f0358 Prepare 5.2.3 (2023.1.3).
See #1895
2024-02-16 13:50:02 +01:00
Vipul Gupta
2104952ec6 Added functionality to add customConverters. (#1886)
* Added functionality to add customConverters.

Added functionality to register custom converters in the list + cleaned up the code a little and.

* Review chages.

Function name changed and restored to old implementation

* Documentation Changes.
2024-01-17 16:22:37 -08:00
Tigran Babloyan
86713c527c Mark CouchbaseAnnotationProcessor for auto-discovery. (#1871)
Closes #1870
2024-01-17 16:21:37 -08:00
Vipul Gupta
38212b45c1 Propagated CouchbaseCustomConverters bean into MappingConverter (#1885)
* Propagated CouchbaseCustomConverters bean into MappingConverter.

Just a polishing fix to propagate CouchbaseCustomConversions directly to MappingCouchbaseConverter -> AbstractCouchbaseConverter , So that we won't have to set it explicitly.

* Removed unnecessary constructor.
2024-01-17 16:17:15 -08:00
Michael Reiche
1434f59a55 Fix regression - unable to store and read properties of type Object. (#1883)
Closes #1875.
2024-01-17 16:14:23 -08:00
Michael Reiche
0e985d212e Use scope and collection in transaction in findByQuery.count(). (#1868)
Closes #1862.
2024-01-17 16:13:19 -08:00
Tigran Babloyan
4ce7f1bf2a Fixed issue with querying documents annotated with @Collection with QuerydslPredicateExecutor. (#1867)
Closes #1866
2024-01-17 16:08:26 -08:00
Mark Paluch
0e2ce8ea4f Prepare 5.2.2 (2023.1.2).
See #1882
2024-01-12 10:50:45 +01:00
Mark Paluch
f6d1851a58 Extend license header copyright years to 2024.
See #1889
2024-01-02 13:55:06 +01:00
Mark Paluch
973f078741 Prepare 5.2.1 (2023.1.1).
See #1864
2023-12-15 14:11:23 +01:00
Runbing
7dd110a924 Fixed the URL for the Spring Data Commons documentation.
I fixed an incorrect URL in the **antora.yml file** that was preventing it from linking to the Spring Data Commons documentation.

Closes #1869
2023-11-20 11:30:55 +01:00
Mark Paluch
6b13404851 Prepare 5.2 GA (2023.1.0).
See #1849
2023-11-17 14:28:30 +01:00
Michael Reiche
19fddc939f Provide Default CouchbaseCustomConversions with Enum Converters. (#1856)
Closes #1837.
2023-10-24 17:32:41 -07:00
John Blum
ad496403e2 Prepare 5.2 RC1 (2023.1.0).
See #1831
2023-10-13 08:43:56 -07:00
Michael Reiche
afaf2ec97c Don't use String version of enum parameters. (#1846)
Just use the converted value as-is (in case of boolean or Number) enum value.

Closes #1837.
2023-10-11 15:38:39 -07:00
Michael Reiche
247164c6c2 Remove unused test file. (#1845)
Closes #1766.
2023-10-10 15:31:41 -07:00
Michael Reiche
0abf846755 Fix ThreadLocal Issue with Repository Save. (#1840)
The issue was introduced when the Mono.deferContextual() was added to
determine if the save() is in a transaction. It may be executing in a
different thread when the PseudoArgs (scope, collection, and options)
are retrieved ThreadLocal. This change ensures scope and collection
are retrieved, but options are ignored and discarded.

Closes #1838.
2023-10-09 18:19:50 -07:00
Mark Paluch
fa726c22b9 Prepare 5.2 M3 (2023.1.0).
See #1813
2023-09-15 11:29:22 +02:00
Michael Reiche
62bee5cfb4 Allow non-exact argument type matching for DynamicProxyable. (#1819)
Allow non-exact (isAssignableFrom) argument matching for methods
called by DyanmicProxyable. If there are exactly two candidates,
and one returns an Iterable and the other returns a List, use
the method that returns the List.  This is due to
CouchbaseRepository defining findAll() methods as List<?>, while
PagingAndSortyRepository defines findAll() to return an Iterable.
This needs to be addressed separately.

Closes #1818.
2023-09-11 19:13:55 -07:00
Mark Paluch
51324655fd Polishing.
Use dynamic copyright year.

See #1815
2023-09-11 09:04:25 +02:00
Greg L. Turnquist
258c0611c6 Properly test against JDK 21.
See #1813
2023-09-06 10:06:18 -05:00
Mark Paluch
1b3d9f37e3 Migrate documentation to Antora.
Closes #1815
2023-08-31 14:37:02 +02:00
Julia Lee
90a88a873e Prepare 5.2 M2 (2023.1.0).
See #1786
2023-08-18 08:49:41 -04:00
Tigran Babloyan
a258ad82da Fixed issue with #n1ql.bucket evaluated as collection name in string based queries. (#1804)
Closes #1799
2023-08-10 10:24:05 -07:00
Michael Reiche
00eaa8f9a0 Add doc for multiple buckets and heading for overriding SDK. (#1791)
Closes #878, #1788.
2023-08-03 11:39:56 -07:00
Mark Paluch
6794ed2217 Prepare 5.2 M1 (2023.1.0).
See #1742
2023-07-14 14:52:14 +02:00
Michael Reiche
9156d463d6 Add Doc to Change Couchbase SDK Version. (#1782)
Closes #1781.
2023-07-13 16:47:53 -07:00
Michael Reiche
47999dcd71 Remove lombok from test cases. (#1778)
Closes #1753.
2023-07-07 08:23:46 -07:00
Michael Reiche
bbcabbc6d4 Option to not use typeKey=typeAlias property and predicate. (#1777)
If the configuration getType() or the @TypeAlias is an empty string,
then do not add the typeKey:typeAlias property when storing documents,
and do not add the typeKey=typeAlias property on queries - including
removeByQuery.
2023-07-06 16:49:26 -07:00
Michael Reiche
0ba6423f2b Restore StringQuery constructor that takes only string. (#1770)
Closes #1769.
2023-06-29 11:55:48 -07:00
Michael Reiche
80eb56e206 Non-reactive template.save() use non-reactive auditor and close clusters in tests. (#1765)
Closed #1756, #1764.
2023-06-23 14:14:15 -07:00
Michael Reiche
6e1f43d142 Fix compile error from #1757. (#1760)
Closes #1759.
2023-06-15 18:33:16 -07:00
Michael Reiche
abca4e6d62 Allow template.save() to find if it is in a transaction. (#1758)
Closes #1757.
2023-06-15 18:25:06 -07:00
Michael Reiche
240512d56c Bump Couchbase Java SDK to 3.4.7. (#1755)
Closes #1754.
2023-06-14 10:49:06 -07:00
Mark Paluch
c03ac0fe0a Use snapshot and milestone repositories instead of libs-snapshot and libs-milestone.
Closes #1748
2023-06-06 11:02:10 +02:00
Michael Reiche
336014c65e Fix compile error introduced by #1745. (#1747)
* Fix compile error in #1745.

Closes #1745.
2023-05-31 09:18:59 -07:00
Michael Reiche
1087b2d20d Was not using QueryContext in tx when scope=_default, but collection!=_default. (#1746)
Closes #1745.
2023-05-30 15:18:45 -07:00
Michael Reiche
591dc5a43b Use only converter for elements of parameter array. (#1744)
Closes #1743.
2023-05-23 16:41:46 -07:00
Michael Reiche
cf9bdde6ef Datacouch 1599 add rangescan support (#1738)
* Add RangeScan to Template.

Closes #1599.

* Add RangeScan support.

Closes #1599.
2023-05-12 14:00:52 -07:00
Christoph Strobl
85ab3f4f4f Prepare 5.1 GA (2023.0.0).
See #1714
2023-05-12 14:14:08 +02:00
Michael Reiche
502c5322bf Try Object.class if cannot get persistent entity for class. (#1737)
Closes #1726.
2023-05-11 11:12:12 -07:00
Michael Reiche
354ddd43fa ClassTypeInformation is now deprecated. (#1735)
Closes #1456.
2023-05-10 10:59:44 -07:00
Michael Reiche
e126bff1b0 Fix Typo in Cache Documentation. (#1734)
Closes #1525.
2023-05-09 14:14:29 -07:00
Michael Reiche
6194b070cb Fix code example for field level encryption. (#1733)
Closes #1613.
2023-05-09 14:10:46 -07:00