Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 3.5.1)
30
30
# Couchbase mock path to download
31
31
SET (COUCHBASE_MOCK_VERSION 1.5.25 )
32
32
SET (COUCHBASE_MOCK_URL "https://github.com/couchbase/CouchbaseMock/releases/download/${COUCHBASE_MOCK_VERSION} /CouchbaseMock-${COUCHBASE_MOCK_VERSION} .jar" )
33
- project (libcouchbase VERSION 3.3.9 LANGUAGES C CXX )
33
+ project (libcouchbase VERSION 3.3.10 LANGUAGES C CXX )
34
34
35
35
if (NOT CMAKE_VERSION VERSION_LESS "3.13" )
36
36
# CMP0077: option() honors normal variables
Original file line number Diff line number Diff line change 1
1
# Release Notes
2
2
3
+ # 3.3.10 (2023-10-10)
4
+
5
+ * CCBC-1616: apply ` wait_for_config ` check for all pipelines. Previously, the ` lcb_wait ` function would wait for the
6
+ pending configuration updates, but don't do it if the configuration update operation is being retried for some reason.
7
+ Now, the operation also will not wait for pending configuration updates, and rather return from ` lcb_wait ` as soon as
8
+ the operation completes. The old behaviour still works when ` wait_for_config=true ` is passed in connection string (or
9
+ ` LCB_CNTL_WAIT_FOR_CONFIG ` set to non-zero value), in this case the library will wait for the configuration. This
10
+ setting does not affect the mode, when the event loop is executed by the application, and without ` lcb_wait ` .
11
+
3
12
# 3.3.9 (2023-09-20)
4
13
5
14
* CCBC-1608: reduce timeout for idle HTTP connections to 1 second
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ IF(APPLE)
65
65
ELSE ()
66
66
SET (LCB_SONAME_MAJOR "8" )
67
67
ENDIF ()
68
- SET (LCB_SONAME_FULL "${LCB_SONAME_MAJOR} .0.17 " )
68
+ SET (LCB_SONAME_FULL "${LCB_SONAME_MAJOR} .0.18 " )
69
69
70
70
MESSAGE (STATUS "libcouchbase ${LCB_VERSION_MAJOR} ,${LCB_VERSION_MINOR} ,${LCB_VERSION_PATCH} " )
71
71
MESSAGE (STATUS "Building libcouchbase ${LCB_VERSION} /${LCB_VERSION_CHANGESET} " )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ PROJECT_NAME = "Couchbase C Client"
38
38
# could be handy for archiving the generated documentation or if some version
39
39
# control system is used.
40
40
41
- PROJECT_NUMBER = 3.3.9
41
+ PROJECT_NUMBER = 3.3.10
42
42
43
43
# Using the PROJECT_BRIEF tag one can provide an optional one line description
44
44
# for a project that appears at the top of each page and should give viewer a
0 commit comments