couchbase 3.5.6 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +2 -2
- data/ext/cache/extconf_include.rb +3 -3
- data/ext/cache/mozilla-ca-bundle.crt +3 -165
- data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
- data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/CMakeLists.txt +14 -10
- data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy.cc +7 -4
- data/ext/couchbase/CMakeLists.txt +12 -1
- data/ext/couchbase/cmake/Profiler.cmake +15 -0
- data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +2 -2
- data/ext/couchbase/cmake/couchbase_cxx_client.pc.in +1 -1
- data/ext/couchbase/core/app_telemetry_address.cxx +55 -0
- data/ext/couchbase/core/app_telemetry_address.hxx +39 -0
- data/ext/couchbase/core/app_telemetry_meter.cxx +753 -0
- data/ext/couchbase/core/app_telemetry_meter.hxx +198 -0
- data/ext/couchbase/core/app_telemetry_reporter.cxx +895 -0
- data/ext/couchbase/core/app_telemetry_reporter.hxx +59 -0
- data/ext/couchbase/core/bucket.cxx +77 -35
- data/ext/couchbase/core/bucket.hxx +17 -10
- data/ext/couchbase/core/cluster.cxx +54 -16
- data/ext/couchbase/core/cluster_credentials.cxx +27 -0
- data/ext/couchbase/core/cluster_credentials.hxx +36 -0
- data/ext/couchbase/core/cluster_options.hxx +12 -0
- data/ext/couchbase/core/collections_component.cxx +7 -5
- data/ext/couchbase/core/http_component.cxx +6 -0
- data/ext/couchbase/core/impl/binary_collection.cxx +4 -0
- data/ext/couchbase/core/impl/bucket_manager.cxx +2 -0
- data/ext/couchbase/core/impl/cluster.cxx +9 -0
- data/ext/couchbase/core/impl/collection.cxx +2 -0
- data/ext/couchbase/core/impl/error.cxx +1 -0
- data/ext/couchbase/core/impl/logger.cxx +51 -0
- data/ext/couchbase/core/impl/replica_utils.cxx +1 -1
- data/ext/couchbase/core/impl/transaction_get_multi_replicas_from_preferred_server_group_spec.cxx +32 -0
- data/ext/couchbase/core/impl/transaction_get_multi_spec.cxx +30 -0
- data/ext/couchbase/core/impl/transaction_op_error_category.cxx +2 -0
- data/ext/couchbase/core/io/config_tracker.cxx +6 -6
- data/ext/couchbase/core/io/http_command.hxx +35 -11
- data/ext/couchbase/core/io/http_session.cxx +10 -0
- data/ext/couchbase/core/io/http_session.hxx +4 -0
- data/ext/couchbase/core/io/http_session_manager.hxx +83 -34
- data/ext/couchbase/core/io/mcbp_command.hxx +41 -2
- data/ext/couchbase/core/io/mcbp_session.cxx +52 -19
- data/ext/couchbase/core/io/mcbp_session.hxx +3 -0
- data/ext/couchbase/core/logger/logger.cxx +46 -0
- data/ext/couchbase/core/logger/logger.hxx +41 -1
- data/ext/couchbase/core/management/bucket_settings.hxx +1 -0
- data/ext/couchbase/core/management/bucket_settings_json.hxx +4 -0
- data/ext/couchbase/core/meta/features.hxx +32 -0
- data/ext/couchbase/core/operations/document_analytics.cxx +9 -9
- data/ext/couchbase/core/operations/document_append.cxx +1 -0
- data/ext/couchbase/core/operations/document_append.hxx +1 -0
- data/ext/couchbase/core/operations/document_get_all_replicas.hxx +10 -2
- data/ext/couchbase/core/operations/document_lookup_in.cxx +4 -0
- data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +14 -2
- data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +4 -0
- data/ext/couchbase/core/operations/document_mutate_in.cxx +4 -0
- data/ext/couchbase/core/operations/document_mutate_in.hxx +1 -0
- data/ext/couchbase/core/operations/document_prepend.cxx +1 -0
- data/ext/couchbase/core/operations/document_prepend.hxx +1 -0
- data/ext/couchbase/core/operations/document_query.cxx +12 -10
- data/ext/couchbase/core/operations/http_noop.cxx +1 -0
- data/ext/couchbase/core/operations/management/bucket_create.cxx +3 -0
- data/ext/couchbase/core/operations/management/bucket_update.cxx +3 -0
- data/ext/couchbase/core/origin.cxx +0 -5
- data/ext/couchbase/core/origin.hxx +2 -11
- data/ext/couchbase/core/platform/random.cc +6 -3
- data/ext/couchbase/core/platform/random.h +2 -2
- data/ext/couchbase/core/protocol/cmd_mutate_in.hxx +9 -0
- data/ext/couchbase/core/timeout_defaults.hxx +4 -0
- data/ext/couchbase/core/topology/configuration.cxx +10 -13
- data/ext/couchbase/core/topology/configuration.hxx +14 -15
- data/ext/couchbase/core/topology/configuration_json.hxx +6 -0
- data/ext/couchbase/core/transactions/async_attempt_context.hxx +22 -2
- data/ext/couchbase/core/transactions/attempt_context.hxx +25 -7
- data/ext/couchbase/core/transactions/attempt_context_impl.cxx +688 -238
- data/ext/couchbase/core/transactions/attempt_context_impl.hxx +91 -12
- data/ext/couchbase/core/transactions/exceptions.cxx +5 -0
- data/ext/couchbase/core/transactions/exceptions.hxx +20 -0
- data/ext/couchbase/core/transactions/exceptions_fmt.hxx +3 -0
- data/ext/couchbase/core/transactions/forward_compat.cxx +71 -6
- data/ext/couchbase/core/transactions/forward_compat.hxx +45 -59
- data/ext/couchbase/core/transactions/get_multi_orchestrator.cxx +616 -0
- data/ext/couchbase/core/transactions/get_multi_orchestrator.hxx +61 -0
- data/ext/couchbase/core/transactions/internal/doc_record.cxx +8 -0
- data/ext/couchbase/core/transactions/internal/doc_record.hxx +16 -5
- data/ext/couchbase/core/transactions/internal/exceptions_internal.hxx +12 -0
- data/ext/couchbase/core/transactions/internal/transaction_context.hxx +13 -0
- data/ext/couchbase/core/transactions/internal/transaction_fields.hxx +1 -0
- data/ext/couchbase/core/transactions/staged_mutation.cxx +277 -96
- data/ext/couchbase/core/transactions/staged_mutation.hxx +28 -76
- data/ext/couchbase/core/transactions/transaction_context.cxx +33 -0
- data/ext/couchbase/core/transactions/transaction_get_multi_mode.hxx +28 -0
- data/ext/couchbase/core/transactions/transaction_get_multi_replicas_from_preferred_server_group_mode.hxx +27 -0
- data/ext/couchbase/core/transactions/transaction_get_multi_replicas_from_preferred_server_group_result.hxx +71 -0
- data/ext/couchbase/core/transactions/transaction_get_multi_result.hxx +66 -0
- data/ext/couchbase/core/transactions/transaction_links.hxx +10 -0
- data/ext/couchbase/core/transactions/transactions.cxx +8 -3
- data/ext/couchbase/core/utils/connection_string.cxx +4 -0
- data/ext/couchbase/core/utils/url_codec.cxx +26 -0
- data/ext/couchbase/core/utils/url_codec.hxx +11 -0
- data/ext/couchbase/core/websocket_codec.cxx +647 -0
- data/ext/couchbase/core/websocket_codec.hxx +77 -0
- data/ext/couchbase/couchbase/analytics_options.hxx +70 -6
- data/ext/couchbase/couchbase/application_telemetry_options.hxx +124 -0
- data/ext/couchbase/couchbase/cluster_options.hxx +17 -0
- data/ext/couchbase/couchbase/error_codes.hxx +1 -0
- data/ext/couchbase/couchbase/logger.hxx +16 -0
- data/ext/couchbase/couchbase/management/bucket_settings.hxx +1 -0
- data/ext/couchbase/couchbase/query_options.hxx +70 -6
- data/ext/couchbase/couchbase/transactions/async_attempt_context.hxx +29 -5
- data/ext/couchbase/couchbase/transactions/attempt_context.hxx +24 -7
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_mode.hxx +47 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_options.hxx +44 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_mode.hxx +46 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_options.hxx +48 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_result.hxx +109 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_spec.hxx +47 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_result.hxx +102 -0
- data/ext/couchbase/couchbase/transactions/transaction_get_multi_spec.hxx +45 -0
- data/ext/extconf.rb +6 -0
- data/ext/rcb_buckets.cxx +26 -0
- data/lib/active_support/cache/couchbase_store.rb +1 -1
- data/lib/couchbase/cluster.rb +1 -1
- data/lib/couchbase/collection.rb +1 -1
- data/lib/couchbase/collection_options.rb +2 -2
- data/lib/couchbase/management/analytics_index_manager.rb +4 -4
- data/lib/couchbase/management/bucket_manager.rb +8 -2
- data/lib/couchbase/protostellar/cluster.rb +2 -2
- data/lib/couchbase/protostellar/collection.rb +1 -1
- data/lib/couchbase/protostellar/management/collection_query_index_manager.rb +1 -1
- data/lib/couchbase/protostellar/request_generator/admin/bucket.rb +4 -4
- data/lib/couchbase/protostellar/request_generator/admin/collection.rb +6 -6
- data/lib/couchbase/protostellar/request_generator/admin/query.rb +13 -13
- data/lib/couchbase/protostellar/request_generator/kv.rb +25 -25
- data/lib/couchbase/protostellar/request_generator/query.rb +4 -4
- data/lib/couchbase/protostellar/request_generator/search.rb +25 -25
- data/lib/couchbase/protostellar/response_converter/search.rb +1 -1
- data/lib/couchbase/protostellar/retry/reason.rb +1 -1
- data/lib/couchbase/protostellar/timeouts.rb +1 -1
- data/lib/couchbase/scope.rb +1 -1
- data/lib/couchbase/transcoder_flags.rb +1 -1
- data/lib/couchbase/utils/stdlib_logger_adapter.rb +1 -1
- data/lib/couchbase/version.rb +1 -1
- metadata +47 -19
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/COPYING +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/cmake/SnappyConfig.cmake.in +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/cmake/config.h.in +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-c.cc +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-c.h +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-internal.h +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-sinksource.cc +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-sinksource.h +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-stubs-internal.cc +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-stubs-internal.h +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy-stubs-public.h.in +0 -0
- /data/ext/cache/snappy/{585305c8dbb8f762f2c2e17f937f1cf3ac6cbc9c → 3cde171792b3607f75c14e5011eaf69da4857bd8}/snappy/snappy.h +0 -0
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: couchbase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sergey Avseyev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-06-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -2122,20 +2122,20 @@ files:
|
|
2122
2122
|
- ext/cache/llhttp/c67596e14f24b689a867a26fa36e02bdba733b9b/llhttp/src/llhttp.c
|
2123
2123
|
- ext/cache/mozilla-ca-bundle.crt
|
2124
2124
|
- ext/cache/mozilla-ca-bundle.sha256
|
2125
|
-
- ext/cache/snappy/
|
2126
|
-
- ext/cache/snappy/
|
2127
|
-
- ext/cache/snappy/
|
2128
|
-
- ext/cache/snappy/
|
2129
|
-
- ext/cache/snappy/
|
2130
|
-
- ext/cache/snappy/
|
2131
|
-
- ext/cache/snappy/
|
2132
|
-
- ext/cache/snappy/
|
2133
|
-
- ext/cache/snappy/
|
2134
|
-
- ext/cache/snappy/
|
2135
|
-
- ext/cache/snappy/
|
2136
|
-
- ext/cache/snappy/
|
2137
|
-
- ext/cache/snappy/
|
2138
|
-
- ext/cache/snappy/
|
2125
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/CMakeLists.txt
|
2126
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/COPYING
|
2127
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/cmake/SnappyConfig.cmake.in
|
2128
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/cmake/config.h.in
|
2129
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-c.cc
|
2130
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-c.h
|
2131
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-internal.h
|
2132
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-sinksource.cc
|
2133
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-sinksource.h
|
2134
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-stubs-internal.cc
|
2135
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-stubs-internal.h
|
2136
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy-stubs-public.h.in
|
2137
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy.cc
|
2138
|
+
- ext/cache/snappy/3cde171792b3607f75c14e5011eaf69da4857bd8/snappy/snappy.h
|
2139
2139
|
- ext/cache/spdlog/7251ead404dccd824789f8f3a13df2a6fb56440c/spdlog/CMakeLists.txt
|
2140
2140
|
- ext/cache/spdlog/7251ead404dccd824789f8f3a13df2a6fb56440c/spdlog/LICENSE
|
2141
2141
|
- ext/cache/spdlog/7251ead404dccd824789f8f3a13df2a6fb56440c/spdlog/cmake/ide.cmake
|
@@ -2273,6 +2273,7 @@ files:
|
|
2273
2273
|
- ext/couchbase/cmake/OpenSSL.cmake
|
2274
2274
|
- ext/couchbase/cmake/Packaging.cmake
|
2275
2275
|
- ext/couchbase/cmake/PreventInSourceBuilds.cmake
|
2276
|
+
- ext/couchbase/cmake/Profiler.cmake
|
2276
2277
|
- ext/couchbase/cmake/RPath.cmake
|
2277
2278
|
- ext/couchbase/cmake/Sanitizers.cmake
|
2278
2279
|
- ext/couchbase/cmake/StandardProjectSettings.cmake
|
@@ -2301,6 +2302,12 @@ files:
|
|
2301
2302
|
- ext/couchbase/core/analytics_query_options.cxx
|
2302
2303
|
- ext/couchbase/core/analytics_query_options.hxx
|
2303
2304
|
- ext/couchbase/core/analytics_scan_consistency.hxx
|
2305
|
+
- ext/couchbase/core/app_telemetry_address.cxx
|
2306
|
+
- ext/couchbase/core/app_telemetry_address.hxx
|
2307
|
+
- ext/couchbase/core/app_telemetry_meter.cxx
|
2308
|
+
- ext/couchbase/core/app_telemetry_meter.hxx
|
2309
|
+
- ext/couchbase/core/app_telemetry_reporter.cxx
|
2310
|
+
- ext/couchbase/core/app_telemetry_reporter.hxx
|
2304
2311
|
- ext/couchbase/core/bucket.cxx
|
2305
2312
|
- ext/couchbase/core/bucket.hxx
|
2306
2313
|
- ext/couchbase/core/capella_ca.hxx
|
@@ -2310,6 +2317,8 @@ files:
|
|
2310
2317
|
- ext/couchbase/core/cluster_agent.hxx
|
2311
2318
|
- ext/couchbase/core/cluster_agent_config.cxx
|
2312
2319
|
- ext/couchbase/core/cluster_agent_config.hxx
|
2320
|
+
- ext/couchbase/core/cluster_credentials.cxx
|
2321
|
+
- ext/couchbase/core/cluster_credentials.hxx
|
2313
2322
|
- ext/couchbase/core/cluster_options.cxx
|
2314
2323
|
- ext/couchbase/core/cluster_options.hxx
|
2315
2324
|
- ext/couchbase/core/cluster_options_fwd.hxx
|
@@ -2540,6 +2549,8 @@ files:
|
|
2540
2549
|
- ext/couchbase/core/impl/term_query.cxx
|
2541
2550
|
- ext/couchbase/core/impl/term_range_query.cxx
|
2542
2551
|
- ext/couchbase/core/impl/transaction_error_category.cxx
|
2552
|
+
- ext/couchbase/core/impl/transaction_get_multi_replicas_from_preferred_server_group_spec.cxx
|
2553
|
+
- ext/couchbase/core/impl/transaction_get_multi_spec.cxx
|
2543
2554
|
- ext/couchbase/core/impl/transaction_get_result.cxx
|
2544
2555
|
- ext/couchbase/core/impl/transaction_op_error_category.cxx
|
2545
2556
|
- ext/couchbase/core/impl/vector_query.cxx
|
@@ -3067,6 +3078,8 @@ files:
|
|
3067
3078
|
- ext/couchbase/core/transactions/exceptions_fmt.hxx
|
3068
3079
|
- ext/couchbase/core/transactions/forward_compat.cxx
|
3069
3080
|
- ext/couchbase/core/transactions/forward_compat.hxx
|
3081
|
+
- ext/couchbase/core/transactions/get_multi_orchestrator.cxx
|
3082
|
+
- ext/couchbase/core/transactions/get_multi_orchestrator.hxx
|
3070
3083
|
- ext/couchbase/core/transactions/internal/atr_cleanup_entry.hxx
|
3071
3084
|
- ext/couchbase/core/transactions/internal/atr_entry.hxx
|
3072
3085
|
- ext/couchbase/core/transactions/internal/binary.hxx
|
@@ -3089,6 +3102,10 @@ files:
|
|
3089
3102
|
- ext/couchbase/core/transactions/staged_mutation.hxx
|
3090
3103
|
- ext/couchbase/core/transactions/transaction_attempt.cxx
|
3091
3104
|
- ext/couchbase/core/transactions/transaction_context.cxx
|
3105
|
+
- ext/couchbase/core/transactions/transaction_get_multi_mode.hxx
|
3106
|
+
- ext/couchbase/core/transactions/transaction_get_multi_replicas_from_preferred_server_group_mode.hxx
|
3107
|
+
- ext/couchbase/core/transactions/transaction_get_multi_replicas_from_preferred_server_group_result.hxx
|
3108
|
+
- ext/couchbase/core/transactions/transaction_get_multi_result.hxx
|
3092
3109
|
- ext/couchbase/core/transactions/transaction_get_result.cxx
|
3093
3110
|
- ext/couchbase/core/transactions/transaction_get_result.hxx
|
3094
3111
|
- ext/couchbase/core/transactions/transaction_keyspace.cxx
|
@@ -3133,6 +3150,8 @@ files:
|
|
3133
3150
|
- ext/couchbase/core/view_scan_consistency.hxx
|
3134
3151
|
- ext/couchbase/core/view_sort_order.hxx
|
3135
3152
|
- ext/couchbase/core/wait_until_ready_options.hxx
|
3153
|
+
- ext/couchbase/core/websocket_codec.cxx
|
3154
|
+
- ext/couchbase/core/websocket_codec.hxx
|
3136
3155
|
- ext/couchbase/couchbase/allow_querying_search_index_options.hxx
|
3137
3156
|
- ext/couchbase/couchbase/analytics_index_manager.hxx
|
3138
3157
|
- ext/couchbase/couchbase/analytics_meta_data.hxx
|
@@ -3144,6 +3163,7 @@ files:
|
|
3144
3163
|
- ext/couchbase/couchbase/analytics_warning.hxx
|
3145
3164
|
- ext/couchbase/couchbase/analyze_document_options.hxx
|
3146
3165
|
- ext/couchbase/couchbase/append_options.hxx
|
3166
|
+
- ext/couchbase/couchbase/application_telemetry_options.hxx
|
3147
3167
|
- ext/couchbase/couchbase/behavior_options.hxx
|
3148
3168
|
- ext/couchbase/couchbase/best_effort_retry_strategy.hxx
|
3149
3169
|
- ext/couchbase/couchbase/binary_collection.hxx
|
@@ -3390,6 +3410,14 @@ files:
|
|
3390
3410
|
- ext/couchbase/couchbase/transactions.hxx
|
3391
3411
|
- ext/couchbase/couchbase/transactions/async_attempt_context.hxx
|
3392
3412
|
- ext/couchbase/couchbase/transactions/attempt_context.hxx
|
3413
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_mode.hxx
|
3414
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_options.hxx
|
3415
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_mode.hxx
|
3416
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_options.hxx
|
3417
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_result.hxx
|
3418
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_replicas_from_preferred_server_group_spec.hxx
|
3419
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_result.hxx
|
3420
|
+
- ext/couchbase/couchbase/transactions/transaction_get_multi_spec.hxx
|
3393
3421
|
- ext/couchbase/couchbase/transactions/transaction_get_result.hxx
|
3394
3422
|
- ext/couchbase/couchbase/transactions/transaction_keyspace.hxx
|
3395
3423
|
- ext/couchbase/couchbase/transactions/transaction_options.hxx
|
@@ -3577,9 +3605,9 @@ metadata:
|
|
3577
3605
|
homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
|
3578
3606
|
bug_tracker_uri: https://jira.issues.couchbase.com/browse/RCBC
|
3579
3607
|
mailing_list_uri: https://www.couchbase.com/forums/c/ruby-sdk
|
3580
|
-
source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.
|
3581
|
-
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.
|
3582
|
-
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.
|
3608
|
+
source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.6.0
|
3609
|
+
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.6.0
|
3610
|
+
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.6.0/index.html
|
3583
3611
|
github_repo: https://github.com/couchbase/couchbase-ruby-client
|
3584
3612
|
rubygems_mfa_required: 'true'
|
3585
3613
|
post_install_message:
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|