couchbase 3.5.3-arm64-darwin → 3.5.4-arm64-darwin

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: 7b278cb8f05bf34460152e0b864bdac60416355ab7ede5e0260c23ef7cbfa8ac
4
- data.tar.gz: '0817c8b382f3c11e006468e5cc260f4b5fc292088d0ccfaf240149434666cd36'
3
+ metadata.gz: a60445b6a8ed3eeb3dee5630974543853a772ce73ced72c3b5036e48b97197b3
4
+ data.tar.gz: 6a02a9fbc05211b4832701fbfb6bdfffb839dadbbec616e53213a57b5460785a
5
5
  SHA512:
6
- metadata.gz: cc3d0889d8ebeb74fa0c91d3f023d9cda5d952426b5d5977dcf95289280770c3af3c5ffa725c33fd59af30ce9bf428ebe15668ecc7bb78a7e24a1784d3de6287
7
- data.tar.gz: d387f4db737187655ba21143b9517d92bb30f965b7dc3dc57c793590253ef04f8a5767fb1e9dc2e35f7eadadf691956611977de7006ae08c612412891fc02974
6
+ metadata.gz: fb5c702f0000f4f5ce8209b1f6ed08f0c7b886ed336918bdcc7e981ae1b20ddfe5a0bcc4be2e3821e0d1a71d34f2b2c334109347ba03c5709bb8de08479d81a4
7
+ data.tar.gz: cd19e73b9805d6f9ce04d3ffb344e13a48ecbebe13b47d9fcf07d8dd19c6b3d0faaab4469410f1c554e6c295550f2d1573e6086e505b5b26015bf236a90d6af7
data/README.md CHANGED
@@ -23,7 +23,7 @@ The library has been tested with MRI 3.1, 3.2 and 3.3. Supported platforms are L
23
23
  Add this line to your application's Gemfile:
24
24
 
25
25
  ```ruby
26
- gem "couchbase", "3.5.3"
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.3")
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.3
4
+ version: 3.5.4
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Sergey Avseyev
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-08-27 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,11 +159,11 @@ 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://issues.couchbase.com/browse/RCBC
162
+ bug_tracker_uri: https://jira.issues.couchbase.com/browse/RCBC
163
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.3
165
- changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.3
166
- documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.3/index.html
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
167
  github_repo: https://github.com/couchbase/couchbase-ruby-client
168
168
  rubygems_mfa_required: 'true'
169
169
  post_install_message: