couchbase 3.5.5 → 3.5.6
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 +1 -1
- data/ext/cache/extconf_include.rb +3 -3
- data/ext/cache/mozilla-ca-bundle.crt +64 -33
- data/ext/cache/mozilla-ca-bundle.sha256 +1 -1
- data/ext/couchbase/CMakeLists.txt +1 -1
- data/ext/couchbase/core/bucket.cxx +16 -14
- data/ext/couchbase/core/bucket.hxx +2 -1
- data/ext/couchbase/core/cluster.cxx +9 -7
- data/ext/couchbase/core/cluster.hxx +2 -1
- data/ext/couchbase/core/impl/cluster.cxx +55 -18
- data/ext/couchbase/core/impl/collection.cxx +12 -11
- data/ext/couchbase/core/impl/observe_poll.cxx +7 -7
- data/ext/couchbase/core/impl/replica_utils.cxx +5 -5
- data/ext/couchbase/core/impl/replica_utils.hxx +2 -1
- data/ext/couchbase/core/logger/logger.cxx +1 -1
- data/ext/couchbase/core/meta/features.hxx +5 -0
- data/ext/couchbase/core/operations/document_get_all_replicas.hxx +3 -4
- data/ext/couchbase/core/operations/document_get_any_replica.hxx +3 -3
- data/ext/couchbase/core/operations/document_lookup_in_all_replicas.hxx +3 -3
- data/ext/couchbase/core/operations/document_lookup_in_any_replica.hxx +3 -3
- data/ext/couchbase.cxx +1 -0
- data/ext/extconf.rb +10 -0
- data/ext/rcb_backend.cxx +77 -1
- data/ext/rcb_logger.cxx +6 -1
- data/ext/rcb_logger.hxx +3 -0
- data/ext/rcb_range_scan.cxx +2 -4
- data/lib/couchbase/bucket.rb +0 -8
- data/lib/couchbase/cluster.rb +2 -13
- data/lib/couchbase/collection.rb +0 -43
- data/lib/couchbase/collection_options.rb +3 -3
- data/lib/couchbase/datastructures/couchbase_queue.rb +1 -1
- data/lib/couchbase/datastructures/couchbase_set.rb +1 -1
- data/lib/couchbase/deprecations.rb +61 -0
- data/lib/couchbase/fork_hooks.rb +32 -0
- data/lib/couchbase/management/analytics_index_manager.rb +1 -1
- data/lib/couchbase/management/bucket_manager.rb +1 -1
- data/lib/couchbase/management/collection_manager.rb +1 -1
- data/lib/couchbase/management/query_index_manager.rb +1 -1
- data/lib/couchbase/options.rb +2 -2
- data/lib/couchbase/protostellar/request_generator/query.rb +1 -1
- data/lib/couchbase/utils/time.rb +1 -1
- data/lib/couchbase/version.rb +1 -1
- data/lib/couchbase.rb +2 -0
- metadata +7 -5
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.5.
|
4
|
+
version: 3.5.6
|
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-03-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -3470,8 +3470,10 @@ files:
|
|
3470
3470
|
- lib/couchbase/datastructures/couchbase_map.rb
|
3471
3471
|
- lib/couchbase/datastructures/couchbase_queue.rb
|
3472
3472
|
- lib/couchbase/datastructures/couchbase_set.rb
|
3473
|
+
- lib/couchbase/deprecations.rb
|
3473
3474
|
- lib/couchbase/diagnostics.rb
|
3474
3475
|
- lib/couchbase/errors.rb
|
3476
|
+
- lib/couchbase/fork_hooks.rb
|
3475
3477
|
- lib/couchbase/json_transcoder.rb
|
3476
3478
|
- lib/couchbase/key_value_scan.rb
|
3477
3479
|
- lib/couchbase/logger.rb
|
@@ -3575,9 +3577,9 @@ metadata:
|
|
3575
3577
|
homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
|
3576
3578
|
bug_tracker_uri: https://jira.issues.couchbase.com/browse/RCBC
|
3577
3579
|
mailing_list_uri: https://www.couchbase.com/forums/c/ruby-sdk
|
3578
|
-
source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.5.
|
3579
|
-
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.
|
3580
|
-
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.
|
3580
|
+
source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.5.6
|
3581
|
+
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.6
|
3582
|
+
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.6/index.html
|
3581
3583
|
github_repo: https://github.com/couchbase/couchbase-ruby-client
|
3582
3584
|
rubygems_mfa_required: 'true'
|
3583
3585
|
post_install_message:
|