Compatibility of Couchbase Features, Couchbase Versions and the Couchbase .NET SDK
Compatibility Information for the Couchbase .NET SDK
Couchbase Version/SDK Version Matrix
Couchbase SDKs are tested against a variety of different environments to ensure both backward and forward compatibility with different versions of Couchbase Server. The matrix below denotes the version of Couchbase Server, the version of the .NET SDK and whether the SDK is:
-
✖ Unsupported: This combination is not tested, and is not within the scope of technical support if you have purchased a support agreement.
-
◎ Compatible: This combination has been tested previously, and should be compatible. This combination is not recommended by our technical support organization. It is best to upgrade either the SDK or the Couchbase version you are using.
-
✔ Supported:This combination is subject to ongoing quality assurance, and is fully supported by our technical support organization.
SDK 2.2, 2.3 | SDK 2.4, 2.5 | SDK 2.6 | SDK 2.7 | |
---|---|---|---|---|
Server 4.0-4.5 |
◎ |
✔ |
✔ |
✔ |
Server 4.6 |
◎ |
✔ |
✔ |
✔ |
Server 5.0-5.5 |
◎ |
✔ |
✔ |
✔ |
Server 6.0 |
✖ |
✔ |
✔ |
✔ |
Server 6.5, 6.6 |
✖ |
✖ |
◎ |
✔ |
Note the End of Life dates for Couchbase Server and SDK versions. See the notes there for Support details.
Couchbase Feature Availability Matrix
Server 4.0, 4.1 | Server 4.5, 4.6 | Server 5.x | Server 6.0, 6.5 | |
---|---|---|---|---|
Basic Features |
||||
CRUD Operations |
All Versions |
|||
View Querying APIs |
All Versions |
|||
Geospatial Views |
All Versions |
|||
Advanced Features |
||||
Durability Requirements |
Since 1.3 |
|||
Carrier Publication Configuration |
All Versions |
|||
SSL Connectivity |
All Versions |
|||
Bulk Operations |
All Versions |
|||
N1QL Querying |
All Versions |
|||
Multi-Dimensional Scaling |
All Versions |
|||
Sub-document API |
Since 2.3 |
|||
Full Text Search |
Since 2.3 (Experimental) |
Since 2.4 |
||
Global Secondary Indexes (GSI) |
All Versions |
|||
Memory Optimized Indexes (MOI) |
Not Supported |
All SDK versions |
||
Plasma Storage for Indexes |
Not Supported |
All SDK versions |
||
FTS Index Management from the SDK |
Not Supported |
Since 2.3 |
||
Data Structures |
Not Supported |
Since 2.3 |
||
Extended Attributes |
Not Supported |
Since 2.4 |
||
RBAC |
Not Supported |
Since 2.4 |
||
Analytics |
Not supported |
DP in 5.5 with 2.6 |
Since 2.7 |
|
Administrative Features |
||||
Administrative API |
All Versions |
.NET Framework Version Compatibility
The Couchbase .NET SDK is compatible with .NET framework 4.5.2 on Windows. On both Windows and Ubuntu GNU/Linux, it is tested with .NET Standard 1.5, which supports .NET Core 1.1+, and .NET Standard 2.0, which supports .NET Core 2.0+. Other .NET implementations might work but are not tested and are outside of the scope of our technical support organization.
Interface Stability
Couchbase SDKs indicate the stability of an API through documentation. Since there are different meanings when developers mention stability, we mean interface stability: how likely the interface is to change or be removed entirely. A stable interface is one that is guaranteed not to change between versions, meaning that you may use an API of a given SDK version and be assured that the given API will retain the same parameters and behavior in subsequent versions. An unstable interface is one which may appear to work or behave in a specific way within a given SDK version, but may change in its behavior or arguments in future SDK versions, causing odd application behavior or compiler/API usage errors. Implementation stability is implied to be more reliable at higher levels, but all are tested to the level that is appropriate for their stability.
Couchbase uses three interface stability classifiers. You may find these classifiers appended as annotations or comments within documentation for each API:
-
Committed: This stability level is used to indicate the most stable interfaces that are guaranteed to be supported and remain stable between SDK versions.
-
Uncommitted: This level is used to indicate APIs that are unlikely to change, but may still change as final consensus on their behavior has not yet been reached. Uncommitted APIs usually end up becoming stable APIs.
-
Volatile: This level is used to indicate experimental APIs that are still in flux and may likely be changed. It may also be used to indicate inherently private APIs that may be exposed, but "YMMV" (your mileage may vary) principles apply. Volatile APIs typically end up being promoted to Uncommitted after undergoing some modifications.
-
Internal: This level is used to indicate you should not rely on this API as it is not intended for use outside the module, even to other Couchbase components.
APIs that are marked as Committed have a stable implementation. Uncommitted and Volatile APIs should be stable within the bounds of any known and often documented issues, but Couchbase has not made a commitment to these APIs and may not respond to reported defects with the same priority.