dapr 0.3.2 → 0.3.3
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/.release-please-manifest.json +1 -1
- data/.version.txt +1 -1
- data/CHANGELOG.md +12 -0
- data/coverage/coverage.json +1 -1
- data/lib/dapr/client/lock.rb +14 -2
- data/lib/dapr/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 333d5818807b0f936fb7ece35380b3ab2ba83875dd0e39efa28ca0b369c92a25
|
|
4
|
+
data.tar.gz: 859ba4dcadb9f7b98c50b8d91226949e1e429466c1c779305bf7a505f968274b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b852cc847ff3645c78f48411ff57a39431fed239bd4760e10275411d650516f8dc509a6e7874726d35d9dfd0de9f730650811de0c74acf272604664021c885e9
|
|
7
|
+
data.tar.gz: f787940e3cdeecb504c861f9927fd60b8377045cc8edadef080f040c56bfcc09ae0f0662b303ae18ac375f3180d7fd8c270cde32c252aa313c3e0270f26fb22f
|
data/.version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.3.3](https://github.com/rubyists/dapr-ruby-client/compare/v0.3.2...v0.3.3) (2024-10-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **grpc:** Update grpc to 1.66 in container ([#71](https://github.com/rubyists/dapr-ruby-client/issues/71)) ([da78331](https://github.com/rubyists/dapr-ruby-client/commit/da783315276b27c4a1b37996198021f415adf4cf))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **lock:** Updates lock/unlock to append _alpha1 ([#72](https://github.com/rubyists/dapr-ruby-client/issues/72)) ([847d091](https://github.com/rubyists/dapr-ruby-client/commit/847d0910265df8c37edf5d2af4eed0c0f6d4feb0))
|
|
14
|
+
|
|
3
15
|
## [0.3.2](https://github.com/rubyists/dapr-ruby-client/compare/v0.3.1...v0.3.2) (2024-07-19)
|
|
4
16
|
|
|
5
17
|
|
data/coverage/coverage.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"timestamp":
|
|
1
|
+
{"timestamp":1728408645,"command_name":"Unit Tests","files":[{"filename":"/home/bougyman/rubyists/dapr/lib/dapr.rb","covered_percent":100.0,"coverage":{"lines":[null,null,1,1,null,null,1,1,5,null,null,null,1,1,1,1,1,null,null]},"covered_strength":1.4,"covered_lines":10,"lines_of_code":10},{"filename":"/home/bougyman/rubyists/dapr/lib/dapr/client.rb","covered_percent":100.0,"coverage":{"lines":[null,null,1,1,1,1,1,null,1,1,null,1,1,1,1,1,null,1,4,null,1,1,null,null,1,9,null,null,1,1,null,null,1,12,null,null,null,1,1,null,1,5,null,null,1,1,1,1,null,1,null,null,1,1,null,null,null,null,null]},"covered_strength":1.7878787878787878,"covered_lines":33,"lines_of_code":33},{"filename":"/home/bougyman/rubyists/dapr/lib/dapr/client/configuration.rb","covered_percent":100.0,"coverage":{"lines":[null,null,1,null,1,1,1,null,1,null,1,1,null,null,1,null,null,1,null,1,1,null,1,1,1,null,null,null,null,null,null,null,1,1,1,1,null,null,1,1,1,null,null,null,null,null]},"covered_strength":1.0,"covered_lines":21,"lines_of_code":21},{"filename":"/home/bougyman/rubyists/dapr/lib/dapr/client/lock.rb","covered_percent":100.0,"coverage":{"lines":[null,null,1,1,null,1,1,1,null,1,null,1,1,null,null,1,null,null,1,null,1,1,null,null,null,null,null,null,1,6,6,null,null,null,null,null,null,1,6,6,null,null,null,1,6,6,5,5,null,null,1,null,null,null,1,4,4,4,null,3,3,null,null,1,null,null,1,18,null,null,null,null,null,1,6,null,null,null,null,null]},"covered_strength":3.085714285714286,"covered_lines":35,"lines_of_code":35},{"filename":"/home/bougyman/rubyists/dapr/lib/dapr/version.rb","covered_percent":100.0,"coverage":{"lines":[null,null,1,1,null,1,null,null,null]},"covered_strength":1.0,"covered_lines":3,"lines_of_code":3}],"metrics":{"covered_percent":100.0,"covered_strength":2.0098039215686274,"covered_lines":102,"total_lines":102}}
|
data/lib/dapr/client/lock.rb
CHANGED
|
@@ -21,6 +21,11 @@ module Rubyists
|
|
|
21
21
|
UnlockRequest = ::Dapr::Proto::Runtime::V1::UnlockRequest
|
|
22
22
|
DEFAULT_STORE_NAME = 'locker'
|
|
23
23
|
|
|
24
|
+
# @param resource_id [String] The unique ID of the resource to lock
|
|
25
|
+
# @param store_name [String] The name of the Dapr lock store component to use
|
|
26
|
+
# @param ttl [Integer] The time-to-live for the lock in seconds
|
|
27
|
+
#
|
|
28
|
+
# @return [Lock] The lock object
|
|
24
29
|
def self.acquire(resource_id, store_name: DEFAULT_STORE_NAME, ttl: 10)
|
|
25
30
|
lock = new(store_name, resource_id)
|
|
26
31
|
lock.lock!(ttl:)
|
|
@@ -37,7 +42,7 @@ module Rubyists
|
|
|
37
42
|
|
|
38
43
|
# @param ttl [Integer] The time-to-live for the lock in seconds
|
|
39
44
|
def lock!(ttl: 10)
|
|
40
|
-
response = singleton.
|
|
45
|
+
response = singleton.try_lock_alpha1 lock_request
|
|
41
46
|
if response.success
|
|
42
47
|
logger.info('Acquired lock', store_name:, resource_id:, ttl:, lock_owner:)
|
|
43
48
|
return self
|
|
@@ -48,7 +53,7 @@ module Rubyists
|
|
|
48
53
|
end
|
|
49
54
|
|
|
50
55
|
def unlock!
|
|
51
|
-
response = singleton.
|
|
56
|
+
response = singleton.unlock_alpha1(UnlockRequest.new(store_name:, resource_id:, lock_owner:))
|
|
52
57
|
status = response.status
|
|
53
58
|
return true if status == :SUCCESS
|
|
54
59
|
|
|
@@ -62,6 +67,13 @@ module Rubyists
|
|
|
62
67
|
def lock_owner
|
|
63
68
|
@lock_owner ||= SecureRandom.uuid
|
|
64
69
|
end
|
|
70
|
+
|
|
71
|
+
# @param ttl [Integer] The time-to-live for the lock in seconds
|
|
72
|
+
#
|
|
73
|
+
# @return [LockRequest] The lock request
|
|
74
|
+
def lock_request(ttl: 10)
|
|
75
|
+
@lock_request ||= LockRequest.new(store_name:, resource_id:, lock_owner:, expiry_in_seconds: ttl)
|
|
76
|
+
end
|
|
65
77
|
end
|
|
66
78
|
end
|
|
67
79
|
end
|
data/lib/dapr/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dapr
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tj (bougyman) Vanderpoel
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2024-
|
|
12
|
+
date: 2024-10-08 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: dapr-ruby
|