couchbase 3.7.0 → 3.8.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.
Files changed (286) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/ext/CMakeLists.txt +4 -1
  4. data/ext/cache/extconf_include.rb +4 -3
  5. data/ext/cache/mozilla-ca-bundle.crt +66 -93
  6. data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
  7. data/ext/couchbase/CMakeLists.txt +24 -11
  8. data/ext/couchbase/cmake/APKBUILD.in +17 -1
  9. data/ext/couchbase/cmake/Bundler.cmake +9 -1
  10. data/ext/couchbase/cmake/Cache.cmake +48 -19
  11. data/ext/couchbase/cmake/CompilerOptions.cmake +3 -1
  12. data/ext/couchbase/cmake/OpenSSL.cmake +10 -2
  13. data/ext/couchbase/cmake/Packaging.cmake +48 -8
  14. data/ext/couchbase/cmake/ThirdPartyDependencies.cmake +43 -1
  15. data/ext/couchbase/cmake/build_config.hxx.in +2 -0
  16. data/ext/couchbase/cmake/couchbase-cxx-client.spec.in +18 -0
  17. data/ext/couchbase/cmake/tarball_glob.txt +10 -0
  18. data/ext/couchbase/core/app_telemetry_meter.cxx +1 -0
  19. data/ext/couchbase/core/app_telemetry_reporter.cxx +45 -43
  20. data/ext/couchbase/core/app_telemetry_reporter.hxx +4 -3
  21. data/ext/couchbase/core/bucket.cxx +128 -13
  22. data/ext/couchbase/core/bucket.hxx +12 -2
  23. data/ext/couchbase/core/cluster.cxx +304 -152
  24. data/ext/couchbase/core/cluster.hxx +32 -0
  25. data/ext/couchbase/core/cluster_credentials.cxx +25 -0
  26. data/ext/couchbase/core/cluster_credentials.hxx +5 -0
  27. data/ext/couchbase/core/cluster_label_listener.cxx +72 -0
  28. data/ext/couchbase/core/cluster_label_listener.hxx +46 -0
  29. data/ext/couchbase/core/cluster_options.hxx +4 -0
  30. data/ext/couchbase/core/deprecation_utils.hxx +26 -0
  31. data/ext/couchbase/core/error.hxx +27 -0
  32. data/ext/couchbase/core/free_form_http_request.hxx +0 -2
  33. data/ext/couchbase/core/http_component.cxx +12 -48
  34. data/ext/couchbase/core/impl/analytics.cxx +3 -2
  35. data/ext/couchbase/core/impl/analytics.hxx +2 -1
  36. data/ext/couchbase/core/impl/analytics_index_manager.cxx +249 -137
  37. data/ext/couchbase/core/impl/binary_collection.cxx +134 -58
  38. data/ext/couchbase/core/impl/bucket_manager.cxx +87 -35
  39. data/ext/couchbase/core/impl/collection.cxx +560 -245
  40. data/ext/couchbase/core/impl/collection_manager.cxx +89 -49
  41. data/ext/couchbase/core/impl/dns_srv_tracker.cxx +4 -4
  42. data/ext/couchbase/core/impl/error.cxx +20 -13
  43. data/ext/couchbase/core/impl/error.hxx +15 -10
  44. data/ext/couchbase/core/impl/get_all_replicas.hxx +1 -1
  45. data/ext/couchbase/core/impl/get_any_replica.hxx +2 -1
  46. data/ext/couchbase/core/impl/get_replica.hxx +2 -0
  47. data/ext/couchbase/core/impl/lookup_in_replica.hxx +1 -1
  48. data/ext/couchbase/core/impl/observability_recorder.cxx +161 -0
  49. data/ext/couchbase/core/impl/observability_recorder.hxx +77 -0
  50. data/ext/couchbase/core/impl/observe_seqno.hxx +2 -0
  51. data/ext/couchbase/core/impl/public_bucket.cxx +31 -7
  52. data/ext/couchbase/core/impl/public_cluster.cxx +107 -19
  53. data/ext/couchbase/core/impl/query.cxx +6 -3
  54. data/ext/couchbase/core/impl/query.hxx +3 -1
  55. data/ext/couchbase/core/impl/query_index_manager.cxx +267 -102
  56. data/ext/couchbase/core/impl/scope.cxx +53 -11
  57. data/ext/couchbase/core/impl/search.cxx +8 -4
  58. data/ext/couchbase/core/impl/search.hxx +6 -2
  59. data/ext/couchbase/core/impl/search_index_manager.cxx +131 -41
  60. data/ext/couchbase/core/impl/with_cancellation.hxx +75 -0
  61. data/ext/couchbase/core/io/config_tracker.cxx +9 -9
  62. data/ext/couchbase/core/io/config_tracker.hxx +2 -1
  63. data/ext/couchbase/core/io/http_command.hxx +98 -49
  64. data/ext/couchbase/core/io/http_context.hxx +2 -0
  65. data/ext/couchbase/core/io/http_session.cxx +23 -10
  66. data/ext/couchbase/core/io/http_session.hxx +17 -9
  67. data/ext/couchbase/core/io/http_session_manager.hxx +163 -228
  68. data/ext/couchbase/core/io/http_traits.hxx +0 -7
  69. data/ext/couchbase/core/io/mcbp_command.hxx +123 -44
  70. data/ext/couchbase/core/io/mcbp_session.cxx +251 -26
  71. data/ext/couchbase/core/io/mcbp_session.hxx +9 -1
  72. data/ext/couchbase/core/io/mcbp_traits.hxx +0 -8
  73. data/ext/couchbase/core/io/streams.cxx +3 -3
  74. data/ext/couchbase/core/io/streams.hxx +3 -2
  75. data/ext/couchbase/core/meta/features.hxx +15 -0
  76. data/ext/couchbase/core/meta/version.cxx +13 -0
  77. data/ext/couchbase/core/meta/version.hxx +3 -0
  78. data/ext/couchbase/core/metrics/constants.hxx +23 -0
  79. data/ext/couchbase/core/metrics/logging_meter.cxx +5 -5
  80. data/ext/couchbase/core/metrics/meter_wrapper.cxx +65 -63
  81. data/ext/couchbase/core/metrics/meter_wrapper.hxx +12 -10
  82. data/ext/couchbase/core/operations/document_analytics.hxx +0 -5
  83. data/ext/couchbase/core/operations/document_append.hxx +0 -4
  84. data/ext/couchbase/core/operations/document_decrement.hxx +0 -5
  85. data/ext/couchbase/core/operations/document_exists.hxx +0 -7
  86. data/ext/couchbase/core/operations/document_get.hxx +0 -7
  87. data/ext/couchbase/core/operations/document_get_all_replicas.hxx +77 -27
  88. data/ext/couchbase/core/operations/document_get_and_lock.hxx +0 -9
  89. data/ext/couchbase/core/operations/document_get_and_touch.hxx +0 -9
  90. data/ext/couchbase/core/operations/document_get_any_replica.hxx +83 -2
  91. data/ext/couchbase/core/operations/document_get_projected.hxx +0 -9
  92. data/ext/couchbase/core/operations/document_increment.hxx +0 -5
  93. data/ext/couchbase/core/operations/document_insert.hxx +0 -4
  94. data/ext/couchbase/core/operations/document_lookup_in.hxx +0 -9
  95. data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +46 -4
  96. data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +121 -43
  97. data/ext/couchbase/core/operations/document_mutate_in.hxx +0 -5
  98. data/ext/couchbase/core/operations/document_prepend.hxx +0 -4
  99. data/ext/couchbase/core/operations/document_query.hxx +0 -4
  100. data/ext/couchbase/core/operations/document_remove.hxx +0 -4
  101. data/ext/couchbase/core/operations/document_replace.hxx +0 -4
  102. data/ext/couchbase/core/operations/document_search.hxx +0 -7
  103. data/ext/couchbase/core/operations/document_touch.hxx +0 -7
  104. data/ext/couchbase/core/operations/document_unlock.hxx +0 -6
  105. data/ext/couchbase/core/operations/document_upsert.hxx +0 -4
  106. data/ext/couchbase/core/operations/document_view.cxx +2 -0
  107. data/ext/couchbase/core/operations/document_view.hxx +10 -13
  108. data/ext/couchbase/core/operations/http_noop.hxx +2 -0
  109. data/ext/couchbase/core/operations/management/analytics_dataset_create.hxx +2 -0
  110. data/ext/couchbase/core/operations/management/analytics_dataset_drop.hxx +2 -0
  111. data/ext/couchbase/core/operations/management/analytics_dataset_get_all.hxx +2 -0
  112. data/ext/couchbase/core/operations/management/analytics_dataverse_create.hxx +2 -0
  113. data/ext/couchbase/core/operations/management/analytics_dataverse_drop.hxx +2 -0
  114. data/ext/couchbase/core/operations/management/analytics_get_pending_mutations.hxx +2 -0
  115. data/ext/couchbase/core/operations/management/analytics_index_create.hxx +2 -0
  116. data/ext/couchbase/core/operations/management/analytics_index_drop.hxx +2 -0
  117. data/ext/couchbase/core/operations/management/analytics_index_get_all.hxx +2 -0
  118. data/ext/couchbase/core/operations/management/analytics_link_connect.hxx +2 -0
  119. data/ext/couchbase/core/operations/management/analytics_link_create.hxx +2 -0
  120. data/ext/couchbase/core/operations/management/analytics_link_disconnect.hxx +2 -0
  121. data/ext/couchbase/core/operations/management/analytics_link_drop.hxx +2 -0
  122. data/ext/couchbase/core/operations/management/analytics_link_get_all.hxx +2 -0
  123. data/ext/couchbase/core/operations/management/analytics_link_replace.hxx +2 -0
  124. data/ext/couchbase/core/operations/management/bucket_create.hxx +2 -0
  125. data/ext/couchbase/core/operations/management/bucket_describe.hxx +2 -0
  126. data/ext/couchbase/core/operations/management/bucket_drop.hxx +2 -0
  127. data/ext/couchbase/core/operations/management/bucket_flush.hxx +2 -0
  128. data/ext/couchbase/core/operations/management/bucket_get.hxx +2 -0
  129. data/ext/couchbase/core/operations/management/bucket_get_all.hxx +2 -0
  130. data/ext/couchbase/core/operations/management/bucket_update.hxx +2 -0
  131. data/ext/couchbase/core/operations/management/change_password.hxx +2 -0
  132. data/ext/couchbase/core/operations/management/cluster_describe.hxx +2 -0
  133. data/ext/couchbase/core/operations/management/cluster_developer_preview_enable.hxx +2 -0
  134. data/ext/couchbase/core/operations/management/collection_create.hxx +2 -0
  135. data/ext/couchbase/core/operations/management/collection_drop.hxx +2 -0
  136. data/ext/couchbase/core/operations/management/collection_update.hxx +2 -0
  137. data/ext/couchbase/core/operations/management/collections_manifest_get.hxx +2 -0
  138. data/ext/couchbase/core/operations/management/error_utils.cxx +4 -1
  139. data/ext/couchbase/core/operations/management/eventing_deploy_function.hxx +2 -0
  140. data/ext/couchbase/core/operations/management/eventing_drop_function.hxx +2 -0
  141. data/ext/couchbase/core/operations/management/eventing_get_all_functions.hxx +2 -0
  142. data/ext/couchbase/core/operations/management/eventing_get_function.hxx +2 -0
  143. data/ext/couchbase/core/operations/management/eventing_get_status.hxx +2 -0
  144. data/ext/couchbase/core/operations/management/eventing_pause_function.hxx +2 -0
  145. data/ext/couchbase/core/operations/management/eventing_resume_function.hxx +2 -0
  146. data/ext/couchbase/core/operations/management/eventing_undeploy_function.hxx +2 -0
  147. data/ext/couchbase/core/operations/management/eventing_upsert_function.hxx +2 -0
  148. data/ext/couchbase/core/operations/management/freeform.hxx +2 -0
  149. data/ext/couchbase/core/operations/management/group_drop.hxx +2 -0
  150. data/ext/couchbase/core/operations/management/group_get.hxx +2 -0
  151. data/ext/couchbase/core/operations/management/group_get_all.hxx +2 -0
  152. data/ext/couchbase/core/operations/management/group_upsert.hxx +2 -0
  153. data/ext/couchbase/core/operations/management/query_index_build.hxx +2 -0
  154. data/ext/couchbase/core/operations/management/query_index_build_deferred.hxx +68 -30
  155. data/ext/couchbase/core/operations/management/query_index_create.hxx +2 -0
  156. data/ext/couchbase/core/operations/management/query_index_drop.hxx +2 -0
  157. data/ext/couchbase/core/operations/management/query_index_get_all.hxx +4 -3
  158. data/ext/couchbase/core/operations/management/query_index_get_all_deferred.hxx +2 -1
  159. data/ext/couchbase/core/operations/management/role_get_all.hxx +2 -0
  160. data/ext/couchbase/core/operations/management/scope_create.hxx +2 -0
  161. data/ext/couchbase/core/operations/management/scope_drop.hxx +2 -0
  162. data/ext/couchbase/core/operations/management/scope_get_all.hxx +2 -0
  163. data/ext/couchbase/core/operations/management/search_get_stats.hxx +2 -0
  164. data/ext/couchbase/core/operations/management/search_index_analyze_document.hxx +2 -0
  165. data/ext/couchbase/core/operations/management/search_index_control_ingest.hxx +2 -0
  166. data/ext/couchbase/core/operations/management/search_index_control_plan_freeze.hxx +2 -0
  167. data/ext/couchbase/core/operations/management/search_index_control_query.hxx +2 -0
  168. data/ext/couchbase/core/operations/management/search_index_drop.hxx +2 -0
  169. data/ext/couchbase/core/operations/management/search_index_get.hxx +2 -0
  170. data/ext/couchbase/core/operations/management/search_index_get_all.hxx +2 -0
  171. data/ext/couchbase/core/operations/management/search_index_get_documents_count.hxx +2 -0
  172. data/ext/couchbase/core/operations/management/search_index_get_stats.hxx +2 -0
  173. data/ext/couchbase/core/operations/management/search_index_upsert.hxx +2 -0
  174. data/ext/couchbase/core/operations/management/user_drop.hxx +2 -0
  175. data/ext/couchbase/core/operations/management/user_get.hxx +2 -0
  176. data/ext/couchbase/core/operations/management/user_get_all.hxx +2 -0
  177. data/ext/couchbase/core/operations/management/user_upsert.hxx +2 -0
  178. data/ext/couchbase/core/operations/management/view_index_drop.hxx +2 -0
  179. data/ext/couchbase/core/operations/management/view_index_get.hxx +2 -0
  180. data/ext/couchbase/core/operations/management/view_index_get_all.hxx +2 -0
  181. data/ext/couchbase/core/operations/management/view_index_upsert.hxx +2 -0
  182. data/ext/couchbase/core/operations/operation_traits.hxx +6 -0
  183. data/ext/couchbase/core/operations.hxx +0 -1
  184. data/ext/couchbase/core/operations_fwd.hxx +8 -0
  185. data/ext/couchbase/core/origin.cxx +67 -12
  186. data/ext/couchbase/core/origin.hxx +13 -8
  187. data/ext/couchbase/core/orphan_reporter.cxx +164 -0
  188. data/ext/couchbase/core/orphan_reporter.hxx +65 -0
  189. data/ext/couchbase/core/sasl/CMakeLists.txt +1 -0
  190. data/ext/couchbase/core/sasl/client.cc +6 -0
  191. data/ext/couchbase/core/sasl/mechanism.cc +2 -1
  192. data/ext/couchbase/core/sasl/mechanism.h +2 -1
  193. data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.cc +41 -0
  194. data/ext/couchbase/core/sasl/oauthbearer/oauthbearer.h +47 -0
  195. data/ext/couchbase/core/tls_context_provider.cxx +44 -0
  196. data/ext/couchbase/core/tls_context_provider.hxx +44 -0
  197. data/ext/couchbase/core/tracing/attribute_helpers.hxx +45 -0
  198. data/ext/couchbase/core/tracing/constants.hxx +148 -68
  199. data/ext/couchbase/core/tracing/threshold_logging_options.hxx +0 -3
  200. data/ext/couchbase/core/tracing/threshold_logging_tracer.cxx +122 -170
  201. data/ext/couchbase/core/tracing/tracer_wrapper.cxx +17 -24
  202. data/ext/couchbase/core/tracing/tracer_wrapper.hxx +8 -10
  203. data/ext/couchbase/core/tracing/wrapper_sdk_tracer.cxx +114 -0
  204. data/ext/couchbase/core/tracing/wrapper_sdk_tracer.hxx +85 -0
  205. data/ext/couchbase/core/transactions/attempt_context_impl.cxx +16 -14
  206. data/ext/couchbase/core/transactions/attempt_context_impl.hxx +4 -4
  207. data/ext/couchbase/core/transactions/transactions.cxx +1 -1
  208. data/ext/couchbase/core/transactions/transactions_cleanup.cxx +1 -2
  209. data/ext/couchbase/core/utils/byteswap.hxx +12 -0
  210. data/ext/couchbase/core/utils/concurrent_fixed_priority_queue.hxx +102 -0
  211. data/ext/couchbase/core/utils/connection_string.cxx +2 -0
  212. data/ext/couchbase/couchbase/certificate_authenticator.hxx +1 -0
  213. data/ext/couchbase/couchbase/cluster.hxx +47 -0
  214. data/ext/couchbase/couchbase/cluster_options.hxx +16 -0
  215. data/ext/couchbase/couchbase/collection.hxx +60 -15
  216. data/ext/couchbase/couchbase/error_codes.hxx +48 -48
  217. data/ext/couchbase/couchbase/jwt_authenticator.hxx +52 -0
  218. data/ext/couchbase/couchbase/metrics/meter.hxx +2 -1
  219. data/ext/couchbase/couchbase/metrics/otel_meter.hxx +75 -80
  220. data/ext/couchbase/couchbase/network_options.hxx +19 -0
  221. data/ext/couchbase/couchbase/password_authenticator.hxx +1 -0
  222. data/ext/couchbase/couchbase/tracing/otel_tracer.hxx +15 -17
  223. data/ext/couchbase/couchbase/tracing/request_span.hxx +2 -2
  224. data/ext/couchbase.cxx +4 -0
  225. data/ext/extconf.rb +1 -0
  226. data/ext/rcb_analytics.cxx +157 -47
  227. data/ext/rcb_backend.cxx +118 -71
  228. data/ext/rcb_buckets.cxx +39 -16
  229. data/ext/rcb_collections.cxx +36 -12
  230. data/ext/rcb_crud.cxx +587 -294
  231. data/ext/rcb_hdr_histogram.cxx +219 -0
  232. data/ext/rcb_hdr_histogram.hxx +28 -0
  233. data/ext/rcb_multi.cxx +142 -59
  234. data/ext/rcb_observability.cxx +132 -0
  235. data/ext/rcb_observability.hxx +49 -0
  236. data/ext/rcb_query.cxx +77 -27
  237. data/ext/rcb_search.cxx +92 -31
  238. data/ext/rcb_users.cxx +69 -26
  239. data/ext/rcb_utils.cxx +91 -0
  240. data/ext/rcb_utils.hxx +141 -168
  241. data/ext/rcb_views.cxx +36 -12
  242. data/lib/active_support/cache/couchbase_store.rb +6 -6
  243. data/lib/couchbase/authenticator.rb +14 -0
  244. data/lib/couchbase/binary_collection.rb +37 -22
  245. data/lib/couchbase/bucket.rb +46 -31
  246. data/lib/couchbase/cluster.rb +146 -61
  247. data/lib/couchbase/collection.rb +257 -186
  248. data/lib/couchbase/datastructures/couchbase_list.rb +81 -50
  249. data/lib/couchbase/datastructures/couchbase_map.rb +86 -50
  250. data/lib/couchbase/datastructures/couchbase_queue.rb +64 -38
  251. data/lib/couchbase/datastructures/couchbase_set.rb +57 -41
  252. data/lib/couchbase/deprecations.rb +1 -1
  253. data/lib/couchbase/diagnostics.rb +8 -8
  254. data/lib/couchbase/errors.rb +6 -0
  255. data/lib/couchbase/management/analytics_index_manager.rb +90 -59
  256. data/lib/couchbase/management/bucket_manager.rb +73 -45
  257. data/lib/couchbase/management/collection_manager.rb +86 -43
  258. data/lib/couchbase/management/collection_query_index_manager.rb +56 -33
  259. data/lib/couchbase/management/query_index_manager.rb +88 -36
  260. data/lib/couchbase/management/scope_search_index_manager.rb +119 -52
  261. data/lib/couchbase/management/search_index_manager.rb +401 -178
  262. data/lib/couchbase/management/user_manager.rb +343 -174
  263. data/lib/couchbase/management/view_index_manager.rb +166 -73
  264. data/lib/couchbase/metrics/logging_meter.rb +108 -0
  265. data/lib/couchbase/metrics/logging_value_recorder.rb +50 -0
  266. data/lib/couchbase/metrics/meter.rb +27 -0
  267. data/lib/couchbase/metrics/noop_meter.rb +30 -0
  268. data/lib/couchbase/metrics/noop_value_recorder.rb +27 -0
  269. data/lib/couchbase/metrics/value_recorder.rb +25 -0
  270. data/lib/couchbase/options.rb +69 -3
  271. data/lib/couchbase/protostellar/cluster.rb +3 -0
  272. data/lib/couchbase/scope.rb +62 -48
  273. data/lib/couchbase/search_options.rb +18 -18
  274. data/lib/couchbase/tracing/noop_span.rb +29 -0
  275. data/lib/couchbase/tracing/noop_tracer.rb +29 -0
  276. data/lib/couchbase/tracing/request_span.rb +34 -0
  277. data/lib/couchbase/tracing/request_tracer.rb +28 -0
  278. data/lib/couchbase/tracing/threshold_logging_span.rb +112 -0
  279. data/lib/couchbase/tracing/threshold_logging_tracer.rb +231 -0
  280. data/lib/couchbase/utils/hdr_histogram.rb +55 -0
  281. data/lib/couchbase/utils/observability.rb +257 -0
  282. data/lib/couchbase/utils/observability_constants.rb +200 -0
  283. data/lib/couchbase/utils/stdlib_logger_adapter.rb +1 -3
  284. data/lib/couchbase/version.rb +1 -1
  285. data/lib/couchbase.rb +2 -2
  286. metadata +58 -6
@@ -0,0 +1,200 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2025-Present Couchbase, Inc.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ module Couchbase
18
+ module Observability # rubocop:disable Metrics/ModuleLength
19
+ OP_GET = "get"
20
+ OP_GET_MULTI = "get_multi"
21
+ OP_GET_AND_LOCK = "get_and_lock"
22
+ OP_GET_AND_TOUCH = "get_and_touch"
23
+ OP_GET_ALL_REPLICAS = "get_all_replicas"
24
+ OP_GET_ANY_REPLICA = "get_any_replica"
25
+ OP_GET_REPLICA = "get_replica"
26
+ OP_EXISTS = "exists"
27
+ OP_REPLACE = "replace"
28
+ OP_UPSERT = "upsert"
29
+ OP_UPSERT_MULTI = "upsert_multi"
30
+ OP_REMOVE = "remove"
31
+ OP_REMOVE_MULTI = "remove_multi"
32
+ OP_INSERT = "insert"
33
+ OP_TOUCH = "touch"
34
+ OP_UNLOCK = "unlock"
35
+ OP_LOOKUP_IN = "lookup_in"
36
+ OP_LOOKUP_IN_ALL_REPLICAS = "lookup_in_all_replicas"
37
+ OP_LOOKUP_IN_ANY_REPLICA = "lookup_in_any_replica"
38
+ OP_LOOKUP_IN_REPLICA = "lookup_in_replica"
39
+ OP_MUTATE_IN = "mutate_in"
40
+ OP_SCAN = "scan"
41
+ OP_INCREMENT = "increment"
42
+ OP_DECREMENT = "decrement"
43
+ OP_APPEND = "append"
44
+ OP_PREPEND = "prepend"
45
+
46
+ OP_QUERY = "query"
47
+ OP_SEARCH_QUERY = "search"
48
+ OP_ANALYTICS_QUERY = "analytics"
49
+ OP_VIEW_QUERY = "views"
50
+
51
+ OP_PING = "ping"
52
+ OP_DIAGNOSTICS = "diagnostics"
53
+
54
+ OP_BM_CREATE_BUCKET = "manager_buckets_create_bucket"
55
+ OP_BM_DROP_BUCKET = "manager_buckets_drop_bucket"
56
+ OP_BM_FLUSH_BUCKET = "manager_buckets_flush_bucket"
57
+ OP_BM_GET_ALL_BUCKETS = "manager_buckets_get_all_buckets"
58
+ OP_BM_GET_BUCKET = "manager_buckets_get_bucket"
59
+ OP_BM_UPDATE_BUCKET = "manager_buckets_update_bucket"
60
+
61
+ OP_CM_CREATE_COLLECTION = "manager_collections_create_collection"
62
+ OP_CM_UPDATE_COLLECTION = "manager_collections_update_collection"
63
+ OP_CM_DROP_COLLECTION = "manager_collections_drop_collection"
64
+ OP_CM_CREATE_SCOPE = "manager_collections_create_scope"
65
+ OP_CM_DROP_SCOPE = "manager_collections_drop_scope"
66
+ OP_CM_GET_ALL_SCOPES = "manager_collections_get_all_scopes"
67
+ OP_CM_GET_SCOPE = "manager_collections_get_scope"
68
+
69
+ OP_QM_BUILD_DEFERRED_INDEXES = "manager_query_build_deferred_indexes"
70
+ OP_QM_CREATE_INDEX = "manager_query_create_index"
71
+ OP_QM_CREATE_PRIMARY_INDEX = "manager_query_create_primary_index"
72
+ OP_QM_DROP_INDEX = "manager_query_drop_index"
73
+ OP_QM_DROP_PRIMARY_INDEX = "manager_query_drop_primary_index"
74
+ OP_QM_GET_ALL_INDEXES = "manager_query_get_all_indexes"
75
+ OP_QM_WATCH_INDEXES = "manager_query_watch_indexes"
76
+
77
+ OP_AM_CREATE_DATAVERSE = "manager_analytics_create_dataverse"
78
+ OP_AM_DROP_DATAVERSE = "manager_analytics_drop_dataverse"
79
+ OP_AM_CREATE_DATASET = "manager_analytics_create_dataset"
80
+ OP_AM_DROP_DATASET = "manager_analytics_drop_dataset"
81
+ OP_AM_GET_ALL_DATASETS = "manager_analytics_get_all_datasets"
82
+ OP_AM_CREATE_INDEX = "manager_analytics_create_index"
83
+ OP_AM_DROP_INDEX = "manager_analytics_drop_index"
84
+ OP_AM_GET_ALL_INDEXES = "manager_analytics_get_all_indexes"
85
+ OP_AM_CONNECT_LINK = "manager_analytics_connect_link"
86
+ OP_AM_DISCONNECT_LINK = "manager_analytics_disconnect_link"
87
+ OP_AM_GET_PENDING_MUTATIONS = "manager_analytics_get_pending_mutations"
88
+ OP_AM_CREATE_LINK = "manager_analytics_create_link"
89
+ OP_AM_REPLACE_LINK = "manager_analytics_replace_link"
90
+ OP_AM_DROP_LINK = "manager_analytics_drop_link"
91
+ OP_AM_GET_LINKS = "manager_analytics_get_links"
92
+
93
+ OP_SM_GET_INDEX = "manager_search_get_index"
94
+ OP_SM_GET_ALL_INDEXES = "manager_search_get_all_indexes"
95
+ OP_SM_UPSERT_INDEX = "manager_search_upsert_index"
96
+ OP_SM_DROP_INDEX = "manager_search_drop_index"
97
+ OP_SM_GET_INDEXED_DOCUMENTS_COUNT = "manager_search_get_indexed_documents_count"
98
+ OP_SM_GET_INDEX_STATS = "manager_search_get_index_stats"
99
+ OP_SM_GET_STATS = "manager_search_get_stats"
100
+ OP_SM_PAUSE_INGEST = "manager_search_pause_index"
101
+ OP_SM_RESUME_INGEST = "manager_search_resume_index"
102
+ OP_SM_ALLOW_QUERYING = "manager_search_allow_querying"
103
+ OP_SM_DISALLOW_QUERYING = "manager_search_disallow_querying"
104
+ OP_SM_FREEZE_PLAN = "manager_search_freeze_plan"
105
+ OP_SM_UNFREEZE_PLAN = "manager_search_unfreeze_plan"
106
+ OP_SM_ANALYZE_DOCUMENT = "manager_search_analyze_document"
107
+
108
+ OP_UM_DROP_GROUP = "manager_users_drop_group"
109
+ OP_UM_DROP_USER = "manager_users_drop_user"
110
+ OP_UM_GET_ALL_GROUPS = "manager_users_get_all_groups"
111
+ OP_UM_GET_ALL_USERS = "manager_users_get_all_users"
112
+ OP_UM_GET_GROUP = "manager_users_get_group"
113
+ OP_UM_GET_ROLES = "manager_users_get_roles"
114
+ OP_UM_GET_USER = "manager_users_get_user"
115
+ OP_UM_UPSERT_GROUP = "manager_users_upsert_group"
116
+ OP_UM_UPSERT_USER = "manager_users_upsert_user"
117
+ OP_UM_CHANGE_PASSWORD = "manager_users_change_password"
118
+
119
+ OP_VM_GET_DESIGN_DOCUMENT = "manager_views_get_design_document"
120
+ OP_VM_GET_ALL_DESIGN_DOCUMENTS = "manager_views_get_all_design_documents"
121
+ OP_VM_UPSERT_DESIGN_DOCUMENT = "manager_views_upsert_design_document"
122
+ OP_VM_DROP_DESIGN_DOCUMENT = "manager_views_drop_design_document"
123
+ OP_VM_PUBLISH_DESIGN_DOCUMENT = "manager_views_publish_design_document"
124
+
125
+ OP_LIST_EACH = "list_each"
126
+ OP_LIST_LENGTH = "list_length"
127
+ OP_LIST_PUSH = "list_push"
128
+ OP_LIST_UNSHIFT = "list_unshift"
129
+ OP_LIST_INSERT = "list_insert"
130
+ OP_LIST_AT = "list_at"
131
+ OP_LIST_DELETE_AT = "list_delete_at"
132
+ OP_LIST_CLEAR = "list_clear"
133
+
134
+ OP_MAP_EACH = "map_each"
135
+ OP_MAP_LENGTH = "map_length"
136
+ OP_MAP_CLEAR = "map_clear"
137
+ OP_MAP_FETCH = "map_fetch"
138
+ OP_MAP_DELETE = "map_delete"
139
+ OP_MAP_KEY_EXISTS = "map_key"
140
+ OP_MAP_STORE = "map_store"
141
+
142
+ OP_QUEUE_EACH = "queue_each"
143
+ OP_QUEUE_LENGTH = "queue_length"
144
+ OP_QUEUE_CLEAR = "queue_clear"
145
+ OP_QUEUE_PUSH = "queue_push"
146
+ OP_QUEUE_POP = "queue_pop"
147
+
148
+ OP_SET_EACH = "set_each"
149
+ OP_SET_LENGTH = "set_length"
150
+ OP_SET_ADD = "set_add"
151
+ OP_SET_CLEAR = "set_clear"
152
+ OP_SET_DELETE = "set_delete"
153
+
154
+ STEP_REQUEST_ENCODING = "request_encoding"
155
+ STEP_DISPATCH_TO_SERVER = "dispatch_to_server"
156
+
157
+ # Common attributes
158
+ ATTR_SYSTEM_NAME = "db.system.name"
159
+ ATTR_CLUSTER_NAME = "couchbase.cluster.name"
160
+ ATTR_CLUSTER_UUID = "couchbase.cluster.uuid"
161
+
162
+ # Operation-level attributes
163
+ ATTR_OPERATION_NAME = "db.operation.name"
164
+ ATTR_SERVICE = "couchbase.service"
165
+ ATTR_BUCKET_NAME = "db.namespace"
166
+ ATTR_SCOPE_NAME = "couchbase.scope.name"
167
+ ATTR_COLLECTION_NAME = "couchbase.collection.name"
168
+ ATTR_RETRIES = "couchbase.retries"
169
+ ATTR_DURABILITY = "couchbase.durability"
170
+ ATTR_QUERY_STATEMENT = "db.query.text"
171
+ ATTR_ERROR_TYPE = "error.type"
172
+
173
+ # Dispatch-level attributes
174
+ ATTR_LOCAL_ID = "couchbase.local_id"
175
+ ATTR_OPERATION_ID = "couchbase.operation_id"
176
+ ATTR_PEER_ADDRESS = "network.peer.address"
177
+ ATTR_PEER_PORT = "network.peer.port"
178
+ ATTR_SERVER_DURATION = "couchbase.server_duration"
179
+
180
+ # Reserved attributes
181
+ ATTR_RESERVED_UNIT = "__unit"
182
+
183
+ ATTR_VALUE_SYSTEM_NAME = "couchbase"
184
+
185
+ ATTR_VALUE_DURABILITY_MAJORITY = "majority"
186
+ ATTR_VALUE_DURABILITY_MAJORITY_AND_PERSIST_TO_ACTIVE = "majority_and_persist_active"
187
+ ATTR_VALUE_DURABILITY_PERSIST_TO_MAJORITY = "persist_majority"
188
+
189
+ ATTR_VALUE_SERVICE_KV = "kv"
190
+ ATTR_VALUE_SERVICE_QUERY = "query"
191
+ ATTR_VALUE_SERVICE_SEARCH = "search"
192
+ ATTR_VALUE_SERVICE_VIEWS = "views"
193
+ ATTR_VALUE_SERVICE_ANALYTICS = "analytics"
194
+ ATTR_VALUE_SERVICE_MANAGEMENT = "management"
195
+
196
+ ATTR_VALUE_RESERVED_UNIT_SECONDS = "s"
197
+
198
+ METER_NAME_OPERATION_DURATION = "db.client.operation.duration"
199
+ end
200
+ end
@@ -43,9 +43,7 @@ module Couchbase
43
43
  )
44
44
  end
45
45
 
46
- private
47
-
48
- def map_spdlog_level(level)
46
+ def self.map_spdlog_level(level)
49
47
  case level
50
48
  when :trace, :debug
51
49
  ::Logger::Severity::DEBUG
@@ -21,5 +21,5 @@ module Couchbase
21
21
  # $ ruby -rcouchbase -e 'pp Couchbase::VERSION'
22
22
  # {:sdk=>"3.4.0", :ruby_abi=>"3.1.0", :revision=>"416fe68e6029ec8a4c40611cf6e6b30d3b90d20f"}
23
23
  VERSION = {} unless defined?(VERSION) # rubocop:disable Style/MutableConstant
24
- VERSION.update(:sdk => "3.7.0")
24
+ VERSION.update(:sdk => "3.8.0")
25
25
  end
data/lib/couchbase.rb CHANGED
@@ -25,8 +25,8 @@ require "couchbase/railtie" if defined?(Rails)
25
25
 
26
26
  # @!macro uncommitted
27
27
  # @couchbase.stability
28
- # Uncommitted: This API may change in the future.
28
+ # **Uncommitted:** This API may change in the future.
29
29
  #
30
30
  # @!macro volatile
31
31
  # @couchbase.stability
32
- # Volatile: This API is subject to change at any time.
32
+ # **Volatile:** This API is subject to change at any time.
metadata CHANGED
@@ -1,15 +1,29 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: couchbase
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.7.0
4
+ version: 3.8.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-09-29 00:00:00.000000000 Z
11
+ date: 2026-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: concurrent-ruby
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: grpc
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -2318,6 +2332,8 @@ files:
2318
2332
  - ext/couchbase/core/cluster_agent_config.hxx
2319
2333
  - ext/couchbase/core/cluster_credentials.cxx
2320
2334
  - ext/couchbase/core/cluster_credentials.hxx
2335
+ - ext/couchbase/core/cluster_label_listener.cxx
2336
+ - ext/couchbase/core/cluster_label_listener.hxx
2321
2337
  - ext/couchbase/core/cluster_options.cxx
2322
2338
  - ext/couchbase/core/cluster_options.hxx
2323
2339
  - ext/couchbase/core/cluster_options_fwd.hxx
@@ -2361,6 +2377,7 @@ files:
2361
2377
  - ext/couchbase/core/crypto/CMakeLists.txt
2362
2378
  - ext/couchbase/core/crypto/cbcrypto.cc
2363
2379
  - ext/couchbase/core/crypto/cbcrypto.h
2380
+ - ext/couchbase/core/deprecation_utils.hxx
2364
2381
  - ext/couchbase/core/design_document_namespace.hxx
2365
2382
  - ext/couchbase/core/design_document_namespace_fmt.hxx
2366
2383
  - ext/couchbase/core/diagnostics.hxx
@@ -2373,6 +2390,7 @@ files:
2373
2390
  - ext/couchbase/core/document_id.hxx
2374
2391
  - ext/couchbase/core/document_id_fmt.hxx
2375
2392
  - ext/couchbase/core/durability_options.hxx
2393
+ - ext/couchbase/core/error.hxx
2376
2394
  - ext/couchbase/core/error_context/analytics.hxx
2377
2395
  - ext/couchbase/core/error_context/analytics_json.hxx
2378
2396
  - ext/couchbase/core/error_context/base_error_context.hxx
@@ -2484,6 +2502,8 @@ files:
2484
2502
  - ext/couchbase/core/impl/numeric_range_facet.cxx
2485
2503
  - ext/couchbase/core/impl/numeric_range_facet_result.cxx
2486
2504
  - ext/couchbase/core/impl/numeric_range_query.cxx
2505
+ - ext/couchbase/core/impl/observability_recorder.cxx
2506
+ - ext/couchbase/core/impl/observability_recorder.hxx
2487
2507
  - ext/couchbase/core/impl/observe_poll.cxx
2488
2508
  - ext/couchbase/core/impl/observe_poll.hxx
2489
2509
  - ext/couchbase/core/impl/observe_seqno.cxx
@@ -2557,6 +2577,7 @@ files:
2557
2577
  - ext/couchbase/core/impl/vector_search.cxx
2558
2578
  - ext/couchbase/core/impl/view_error_category.cxx
2559
2579
  - ext/couchbase/core/impl/wildcard_query.cxx
2580
+ - ext/couchbase/core/impl/with_cancellation.hxx
2560
2581
  - ext/couchbase/core/impl/with_legacy_durability.hxx
2561
2582
  - ext/couchbase/core/io/config_tracker.cxx
2562
2583
  - ext/couchbase/core/io/config_tracker.hxx
@@ -2667,6 +2688,7 @@ files:
2667
2688
  - ext/couchbase/core/meta/features.hxx
2668
2689
  - ext/couchbase/core/meta/version.cxx
2669
2690
  - ext/couchbase/core/meta/version.hxx
2691
+ - ext/couchbase/core/metrics/constants.hxx
2670
2692
  - ext/couchbase/core/metrics/logging_meter.cxx
2671
2693
  - ext/couchbase/core/metrics/logging_meter.hxx
2672
2694
  - ext/couchbase/core/metrics/logging_meter_options.hxx
@@ -2886,6 +2908,8 @@ files:
2886
2908
  - ext/couchbase/core/operations_fwd.hxx
2887
2909
  - ext/couchbase/core/origin.cxx
2888
2910
  - ext/couchbase/core/origin.hxx
2911
+ - ext/couchbase/core/orphan_reporter.cxx
2912
+ - ext/couchbase/core/orphan_reporter.hxx
2889
2913
  - ext/couchbase/core/pending_operation.hxx
2890
2914
  - ext/couchbase/core/pending_operation_connection_info.hxx
2891
2915
  - ext/couchbase/core/ping_collector.hxx
@@ -3012,6 +3036,8 @@ files:
3012
3036
  - ext/couchbase/core/sasl/error_fmt.h
3013
3037
  - ext/couchbase/core/sasl/mechanism.cc
3014
3038
  - ext/couchbase/core/sasl/mechanism.h
3039
+ - ext/couchbase/core/sasl/oauthbearer/oauthbearer.cc
3040
+ - ext/couchbase/core/sasl/oauthbearer/oauthbearer.h
3015
3041
  - ext/couchbase/core/sasl/plain/plain.cc
3016
3042
  - ext/couchbase/core/sasl/plain/plain.h
3017
3043
  - ext/couchbase/core/sasl/scram-sha/scram-sha.cc
@@ -3031,6 +3057,8 @@ files:
3031
3057
  - ext/couchbase/core/stats_options.hxx
3032
3058
  - ext/couchbase/core/subdoc_options.hxx
3033
3059
  - ext/couchbase/core/timeout_defaults.hxx
3060
+ - ext/couchbase/core/tls_context_provider.cxx
3061
+ - ext/couchbase/core/tls_context_provider.hxx
3034
3062
  - ext/couchbase/core/tls_verify_mode.hxx
3035
3063
  - ext/couchbase/core/topology/capabilities.cxx
3036
3064
  - ext/couchbase/core/topology/capabilities.hxx
@@ -3044,6 +3072,7 @@ files:
3044
3072
  - ext/couchbase/core/topology/configuration_json.hxx
3045
3073
  - ext/couchbase/core/topology/error_map.hxx
3046
3074
  - ext/couchbase/core/topology/error_map_json.hxx
3075
+ - ext/couchbase/core/tracing/attribute_helpers.hxx
3047
3076
  - ext/couchbase/core/tracing/constants.hxx
3048
3077
  - ext/couchbase/core/tracing/noop_tracer.hxx
3049
3078
  - ext/couchbase/core/tracing/threshold_logging_options.hxx
@@ -3051,6 +3080,8 @@ files:
3051
3080
  - ext/couchbase/core/tracing/threshold_logging_tracer.hxx
3052
3081
  - ext/couchbase/core/tracing/tracer_wrapper.cxx
3053
3082
  - ext/couchbase/core/tracing/tracer_wrapper.hxx
3083
+ - ext/couchbase/core/tracing/wrapper_sdk_tracer.cxx
3084
+ - ext/couchbase/core/tracing/wrapper_sdk_tracer.hxx
3054
3085
  - ext/couchbase/core/transactions.hxx
3055
3086
  - ext/couchbase/core/transactions/active_transaction_record.cxx
3056
3087
  - ext/couchbase/core/transactions/active_transaction_record.hxx
@@ -3120,6 +3151,7 @@ files:
3120
3151
  - ext/couchbase/core/utils/binary.cxx
3121
3152
  - ext/couchbase/core/utils/binary.hxx
3122
3153
  - ext/couchbase/core/utils/byteswap.hxx
3154
+ - ext/couchbase/core/utils/concurrent_fixed_priority_queue.hxx
3123
3155
  - ext/couchbase/core/utils/connection_string.cxx
3124
3156
  - ext/couchbase/core/utils/connection_string.hxx
3125
3157
  - ext/couchbase/core/utils/crc32.hxx
@@ -3283,6 +3315,7 @@ files:
3283
3315
  - ext/couchbase/couchbase/increment_options.hxx
3284
3316
  - ext/couchbase/couchbase/insert_options.hxx
3285
3317
  - ext/couchbase/couchbase/ip_protocol.hxx
3318
+ - ext/couchbase/couchbase/jwt_authenticator.hxx
3286
3319
  - ext/couchbase/couchbase/logger.hxx
3287
3320
  - ext/couchbase/couchbase/lookup_in_all_replicas_options.hxx
3288
3321
  - ext/couchbase/couchbase/lookup_in_any_replica_options.hxx
@@ -3463,10 +3496,14 @@ files:
3463
3496
  - ext/rcb_exceptions.hxx
3464
3497
  - ext/rcb_extras.cxx
3465
3498
  - ext/rcb_extras.hxx
3499
+ - ext/rcb_hdr_histogram.cxx
3500
+ - ext/rcb_hdr_histogram.hxx
3466
3501
  - ext/rcb_logger.cxx
3467
3502
  - ext/rcb_logger.hxx
3468
3503
  - ext/rcb_multi.cxx
3469
3504
  - ext/rcb_multi.hxx
3505
+ - ext/rcb_observability.cxx
3506
+ - ext/rcb_observability.hxx
3470
3507
  - ext/rcb_query.cxx
3471
3508
  - ext/rcb_query.hxx
3472
3509
  - ext/rcb_range_scan.cxx
@@ -3516,6 +3553,12 @@ files:
3516
3553
  - lib/couchbase/management/search_index_manager.rb
3517
3554
  - lib/couchbase/management/user_manager.rb
3518
3555
  - lib/couchbase/management/view_index_manager.rb
3556
+ - lib/couchbase/metrics/logging_meter.rb
3557
+ - lib/couchbase/metrics/logging_value_recorder.rb
3558
+ - lib/couchbase/metrics/meter.rb
3559
+ - lib/couchbase/metrics/noop_meter.rb
3560
+ - lib/couchbase/metrics/noop_value_recorder.rb
3561
+ - lib/couchbase/metrics/value_recorder.rb
3519
3562
  - lib/couchbase/mutation_state.rb
3520
3563
  - lib/couchbase/options.rb
3521
3564
  - lib/couchbase/protostellar.rb
@@ -3591,9 +3634,18 @@ files:
3591
3634
  - lib/couchbase/scope.rb
3592
3635
  - lib/couchbase/search_options.rb
3593
3636
  - lib/couchbase/subdoc.rb
3637
+ - lib/couchbase/tracing/noop_span.rb
3638
+ - lib/couchbase/tracing/noop_tracer.rb
3639
+ - lib/couchbase/tracing/request_span.rb
3640
+ - lib/couchbase/tracing/request_tracer.rb
3641
+ - lib/couchbase/tracing/threshold_logging_span.rb
3642
+ - lib/couchbase/tracing/threshold_logging_tracer.rb
3594
3643
  - lib/couchbase/transcoder_flags.rb
3595
3644
  - lib/couchbase/utils.rb
3596
3645
  - lib/couchbase/utils/generic_logger_adapter.rb
3646
+ - lib/couchbase/utils/hdr_histogram.rb
3647
+ - lib/couchbase/utils/observability.rb
3648
+ - lib/couchbase/utils/observability_constants.rb
3597
3649
  - lib/couchbase/utils/stdlib_logger_adapter.rb
3598
3650
  - lib/couchbase/utils/time.rb
3599
3651
  - lib/couchbase/version.rb
@@ -3606,9 +3658,9 @@ metadata:
3606
3658
  homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
3607
3659
  bug_tracker_uri: https://jira.issues.couchbase.com/browse/RCBC
3608
3660
  mailing_list_uri: https://www.couchbase.com/forums/c/ruby-sdk
3609
- source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.7.0
3610
- changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.7.0
3611
- documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.7.0/index.html
3661
+ source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.8.0
3662
+ changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.8.0
3663
+ documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.8.0/index.html
3612
3664
  github_repo: https://github.com/couchbase/couchbase-ruby-client
3613
3665
  rubygems_mfa_required: 'true'
3614
3666
  post_install_message:
@@ -3621,7 +3673,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
3621
3673
  requirements:
3622
3674
  - - ">"
3623
3675
  - !ruby/object:Gem::Version
3624
- version: '3.1'
3676
+ version: '3.2'
3625
3677
  required_rubygems_version: !ruby/object:Gem::Requirement
3626
3678
  requirements:
3627
3679
  - - ">="