couchbase 3.5.3-x86_64-linux-musl → 3.5.4-x86_64-linux-musl
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d05e1dd1dc8a71d28519d279d577fc3b47c166a740888566cbe07476b92a9c3
|
4
|
+
data.tar.gz: 233b54f3306fddb36f249fcef59037c7f4ab08a08fcd0d8be468cba9e3f70c0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2614429482ff1d3e180a90837f80624f0a50d108a3605289f79695fafe96ea1facfc4091ece751e5f8057a096b1fb06c255c6fb0abe16aa176279685a78e9a28
|
7
|
+
data.tar.gz: c94b832312f2b0971cd4f695c50f7d9a1c370f5071062bddd003c3d088fc6624adf09eeac8b6b030732c24d523485b3dec0396704b55ce458942ffca55426059
|
data/README.md
CHANGED
@@ -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
|
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
|
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
|
data/lib/couchbase/version.rb
CHANGED
@@ -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.
|
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.
|
4
|
+
version: 3.5.4
|
5
5
|
platform: x86_64-linux-musl
|
6
6
|
authors:
|
7
7
|
- Sergey Avseyev
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
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.
|
165
|
-
changelog_uri: https://github.com/couchbase/couchbase-ruby-client/releases/tag/3.5.
|
166
|
-
documentation_uri: https://docs.couchbase.com/sdk-api/couchbase-ruby-client-3.5.
|
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:
|