couchbase 3.5.2-x86_64-linux → 3.5.4-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 729671b66b39c776edd0098a2a228c93343ba8aed1ce7d540ce679e74d1f4757
4
- data.tar.gz: cdc54351b35920c5aa046444a5c644f44a1f09be25d47813d9d3ca3b632c8854
3
+ metadata.gz: '0628ece685b34f9f7ee01498ba5b0e2a4f1deb09db73510d408e6397bdee52cc'
4
+ data.tar.gz: f37f8ee86e489d2561d37b3483cdd7d798a58220da497b2cfcbf1e408cfe1751
5
5
  SHA512:
6
- metadata.gz: d7191118f54a47faaa68eb0087460d60ba4caa368d8e680beb4ef766607d463a2d20b81d578c56affd25382101a229e9d2ed500198f1b556c40e455f43821705
7
- data.tar.gz: fbc644e94662cfa69ca36f857b9e66f8a9ec013cfb6f0db38f979e838f6ef7bb93718f90aee69a927bd6c642a87db99faace6037aed9078d12ae7786da4011a4
6
+ metadata.gz: 0c32a49f7447326159cfb43a735313b5f5ef34c174b74c04d2dbe4307fd8c26d0044b3e269d84cc8f3f919ec6eecb16d28985be8493355af724b98ca4782b5e2
7
+ data.tar.gz: 222c6a0169008d898b63ff3323a22381ee5b4e09725a85f878a5f0bdb96ca464413668af01173c8b792be15b48e1a25628fd2344899b6c40114199db90170e07
data/README.md CHANGED
@@ -18,12 +18,12 @@ Please attach version information to the ticket/post. To obtain this information
18
18
 
19
19
  ## Installation
20
20
 
21
- The library has been tested with MRI 3.0, 3.1, 3.2 and 3.3. Supported platforms are Linux and MacOS.
21
+ The library has been tested with MRI 3.1, 3.2 and 3.3. Supported platforms are Linux and MacOS.
22
22
 
23
23
  Add this line to your application's Gemfile:
24
24
 
25
25
  ```ruby
26
- gem "couchbase", "3.5.2"
26
+ gem "couchbase", "3.5.4"
27
27
  ```
28
28
 
29
29
  And then execute:
@@ -233,7 +233,7 @@ module ActiveSupport
233
233
  end
234
234
 
235
235
  def write_serialized_entry(key, payload, expires_in: nil, race_condition_ttl: nil, raw: false, **)
236
- if race_condition_ttl && expires_in && expires_in.positive? && !raw
236
+ if race_condition_ttl && expires_in&.positive? && !raw
237
237
  # Add few minutes to expiry in the future to support race condition TTLs on read
238
238
  expires_in += 5.minutes
239
239
  end
@@ -250,7 +250,7 @@ module ActiveSupport
250
250
  return super if local_cache
251
251
 
252
252
  expires_in = options[:expires_in]
253
- if options[:race_condition_ttl] && expires_in && expires_in.positive?
253
+ if options[:race_condition_ttl] && expires_in&.positive?
254
254
  # Add few minutes to expiry in the future to support race condition TTLs on read
255
255
  expires_in += 5.minutes
256
256
  end
Binary file
Binary file
Binary file
@@ -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.5.2")
24
+ VERSION.update(:sdk => "3.5.4")
25
25
  end
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.2
4
+ version: 3.5.4
5
5
  platform: x86_64-linux
6
6
  authors:
7
7
  - Sergey Avseyev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-25 00:00:00.000000000 Z
11
+ date: 2024-10-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
@@ -159,12 +159,12 @@ licenses:
159
159
  - Apache-2.0
160
160
  metadata:
161
161
  homepage_uri: https://docs.couchbase.com/ruby-sdk/current/hello-world/start-using-sdk.html
162
- bug_tracker_uri: https://couchbase.com/issues/browse/RCBC
163
- mailing_list_uri: https://forums.couchbase.com/c/ruby-sdk
164
- source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.5.2
165
- changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.2
166
- documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.2/index.html
167
- github_repo: ssh://github.com/couchbase/couchbase-ruby-client
162
+ bug_tracker_uri: https://jira.issues.couchbase.com/browse/RCBC
163
+ mailing_list_uri: https://www.couchbase.com/forums/c/ruby-sdk
164
+ source_code_uri: https://github.com/couchbase/couchbase-ruby-client/tree/3.5.4
165
+ changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.4
166
+ documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.4/index.html
167
+ github_repo: https://github.com/couchbase/couchbase-ruby-client
168
168
  rubygems_mfa_required: 'true'
169
169
  post_install_message:
170
170
  rdoc_options: