zeebe-client 0.5.0 → 0.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2b9b10cf8205bb4aac8e90b431763384eb307d52e34b94dca04af52c3b970703
4
- data.tar.gz: 873005ef993987deb7e435a071c9a4e4db39c4efd50067bc007167dbb4054adc
3
+ metadata.gz: ca27316cd57ca58b36aa80ddd9e2e930c28ddaef950adb0054203d8ab4e8ab85
4
+ data.tar.gz: 47f87275239463c74f1654037a9990ff6806e4a6dc5991248458c447be4f810b
5
5
  SHA512:
6
- metadata.gz: 4cbc5a0e103c6489c43504e3c55ed23c4a4efda91e1c75575f7014c2c5842c5e540bd592196c10ead1fe08cc25e0cfbebb82092a256022ef2f3cf0fd14c14b1b
7
- data.tar.gz: 24cbac43a462a99ec6921aceb68a1931d584d05199676bce15ef7ae87e8a29337b813786bcbb90feda5eb3d0b37f909ec4648f03c1a68e0bb61ac3e38c3b2ec4
6
+ metadata.gz: a4392cd8bacbb7abd71044acee7a3b1559a621ed9221b1efe870bf2770c7c252488d68edc0261008319130c9e067036bc84556ea960eaeb4901044678e7e62a6
7
+ data.tar.gz: 77b7eef482387cbbc22dea3e3accfbb9f1becb89b347e9f0cb7a01374f7a611f55d19fb4369b7a6e31a9181f428d3d5f04ad6dadc8e980d06a8abe7619586073
@@ -4,6 +4,7 @@ rvm:
4
4
  - 2.5
5
5
  - 2.4
6
6
  - 2.3
7
+ - 2.6
7
8
 
8
9
  services:
9
10
  - docker
@@ -1,5 +1,10 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.6.0 (June 7, 2019)
4
+
5
+ - support Ruby 2.6
6
+ - add support for [Zeebe 0.18.0](https://github.com/zeebe-io/zeebe/releases/tag/0.18.0)
7
+
3
8
  ## 0.5.0 (April 2, 2019)
4
9
 
5
10
  - add support for [Zeebe 0.17.0](https://github.com/zeebe-io/zeebe/releases/tag/0.17.0)
data/README.md CHANGED
@@ -13,7 +13,7 @@ Install the gem:
13
13
  Run a Zeebe instance locally:
14
14
 
15
15
  ```sh
16
- docker run -it --rm -p 26500:26500 camunda/zeebe:0.17.0
16
+ docker run -it --rm -p 26500:26500 camunda/zeebe:0.18.0
17
17
  ```
18
18
 
19
19
  And then try the available [demo script](examples/demo.rb).
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ task travis: ['zeebe:start', :default, 'zeebe:stop']
13
13
 
14
14
  desc 'Starts Zeebe Docker container'
15
15
  task 'zeebe:start' do
16
- sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.17.0'
16
+ sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.18.0'
17
17
  sleep(5)
18
18
  end
19
19
 
@@ -4,153 +4,137 @@
4
4
  require 'google/protobuf'
5
5
 
6
6
  Google::Protobuf::DescriptorPool.generated_pool.build do
7
- add_message "gateway_protocol.ActivateJobsRequest" do
8
- optional :type, :string, 1
9
- optional :worker, :string, 2
10
- optional :timeout, :int64, 3
11
- optional :maxJobsToActivate, :int32, 4
12
- repeated :fetchVariable, :string, 5
13
- end
14
- add_message "gateway_protocol.ActivateJobsResponse" do
15
- repeated :jobs, :message, 1, "gateway_protocol.ActivatedJob"
16
- end
17
- add_message "gateway_protocol.ActivatedJob" do
18
- optional :key, :int64, 1
19
- optional :type, :string, 2
20
- optional :jobHeaders, :message, 3, "gateway_protocol.JobHeaders"
21
- optional :customHeaders, :string, 4
22
- optional :worker, :string, 5
23
- optional :retries, :int32, 6
24
- optional :deadline, :int64, 7
25
- optional :variables, :string, 8
26
- end
27
- add_message "gateway_protocol.JobHeaders" do
28
- optional :workflowInstanceKey, :int64, 1
29
- optional :bpmnProcessId, :string, 2
30
- optional :workflowDefinitionVersion, :int32, 3
31
- optional :workflowKey, :int64, 4
32
- optional :elementId, :string, 5
33
- optional :elementInstanceKey, :int64, 6
34
- end
35
- add_message "gateway_protocol.CancelWorkflowInstanceRequest" do
36
- optional :workflowInstanceKey, :int64, 1
37
- end
38
- add_message "gateway_protocol.CancelWorkflowInstanceResponse" do
39
- end
40
- add_message "gateway_protocol.CompleteJobRequest" do
41
- optional :jobKey, :int64, 1
42
- optional :variables, :string, 2
43
- end
44
- add_message "gateway_protocol.CompleteJobResponse" do
45
- end
46
- add_message "gateway_protocol.CreateWorkflowInstanceRequest" do
47
- optional :workflowKey, :int64, 1
48
- optional :bpmnProcessId, :string, 2
49
- optional :version, :int32, 3
50
- optional :variables, :string, 4
51
- end
52
- add_message "gateway_protocol.CreateWorkflowInstanceResponse" do
53
- optional :workflowKey, :int64, 1
54
- optional :bpmnProcessId, :string, 2
55
- optional :version, :int32, 3
56
- optional :workflowInstanceKey, :int64, 5
57
- end
58
- add_message "gateway_protocol.DeployWorkflowRequest" do
59
- repeated :workflows, :message, 1, "gateway_protocol.WorkflowRequestObject"
60
- end
61
- add_message "gateway_protocol.WorkflowRequestObject" do
62
- optional :name, :string, 1
63
- optional :type, :enum, 2, "gateway_protocol.WorkflowRequestObject.ResourceType"
64
- optional :definition, :bytes, 3
65
- end
66
- add_enum "gateway_protocol.WorkflowRequestObject.ResourceType" do
67
- value :FILE, 0
68
- value :BPMN, 1
69
- value :YAML, 2
70
- end
71
- add_message "gateway_protocol.DeployWorkflowResponse" do
72
- optional :key, :int64, 1
73
- repeated :workflows, :message, 2, "gateway_protocol.WorkflowMetadata"
74
- end
75
- add_message "gateway_protocol.WorkflowMetadata" do
76
- optional :bpmnProcessId, :string, 1
77
- optional :version, :int32, 2
78
- optional :workflowKey, :int64, 3
79
- optional :resourceName, :string, 4
80
- end
81
- add_message "gateway_protocol.FailJobRequest" do
82
- optional :jobKey, :int64, 1
83
- optional :retries, :int32, 2
84
- optional :errorMessage, :string, 3
85
- end
86
- add_message "gateway_protocol.FailJobResponse" do
87
- end
88
- add_message "gateway_protocol.GetWorkflowRequest" do
89
- optional :workflowKey, :int64, 1
90
- optional :version, :int32, 2
91
- optional :bpmnProcessId, :string, 3
92
- end
93
- add_message "gateway_protocol.GetWorkflowResponse" do
94
- optional :workflowKey, :int64, 1
95
- optional :version, :int32, 2
96
- optional :bpmnProcessId, :string, 3
97
- optional :resourceName, :string, 4
98
- optional :bpmnXml, :string, 5
99
- end
100
- add_message "gateway_protocol.ListWorkflowsRequest" do
101
- optional :bpmnProcessId, :string, 1
102
- end
103
- add_message "gateway_protocol.ListWorkflowsResponse" do
104
- repeated :workflows, :message, 1, "gateway_protocol.WorkflowMetadata"
105
- end
106
- add_message "gateway_protocol.PublishMessageRequest" do
107
- optional :name, :string, 1
108
- optional :correlationKey, :string, 2
109
- optional :timeToLive, :int64, 3
110
- optional :messageId, :string, 4
111
- optional :variables, :string, 5
112
- end
113
- add_message "gateway_protocol.PublishMessageResponse" do
114
- end
115
- add_message "gateway_protocol.ResolveIncidentRequest" do
116
- optional :incidentKey, :int64, 1
117
- end
118
- add_message "gateway_protocol.ResolveIncidentResponse" do
119
- end
120
- add_message "gateway_protocol.TopologyRequest" do
121
- end
122
- add_message "gateway_protocol.TopologyResponse" do
123
- repeated :brokers, :message, 1, "gateway_protocol.BrokerInfo"
124
- optional :clusterSize, :int32, 2
125
- optional :partitionsCount, :int32, 3
126
- optional :replicationFactor, :int32, 4
127
- end
128
- add_message "gateway_protocol.BrokerInfo" do
129
- optional :nodeId, :int32, 1
130
- optional :host, :string, 2
131
- optional :port, :int32, 3
132
- repeated :partitions, :message, 4, "gateway_protocol.Partition"
133
- end
134
- add_message "gateway_protocol.Partition" do
135
- optional :partitionId, :int32, 1
136
- optional :role, :enum, 3, "gateway_protocol.Partition.PartitionBrokerRole"
137
- end
138
- add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
139
- value :LEADER, 0
140
- value :FOLLOWER, 1
141
- end
142
- add_message "gateway_protocol.UpdateJobRetriesRequest" do
143
- optional :jobKey, :int64, 1
144
- optional :retries, :int32, 2
145
- end
146
- add_message "gateway_protocol.UpdateJobRetriesResponse" do
147
- end
148
- add_message "gateway_protocol.SetVariablesRequest" do
149
- optional :elementInstanceKey, :int64, 1
150
- optional :variables, :string, 2
151
- optional :local, :bool, 3
152
- end
153
- add_message "gateway_protocol.SetVariablesResponse" do
7
+ add_file("proto/gateway.proto", :syntax => :proto3) do
8
+ add_message "gateway_protocol.ActivateJobsRequest" do
9
+ optional :type, :string, 1
10
+ optional :worker, :string, 2
11
+ optional :timeout, :int64, 3
12
+ optional :maxJobsToActivate, :int32, 4
13
+ repeated :fetchVariable, :string, 5
14
+ end
15
+ add_message "gateway_protocol.ActivateJobsResponse" do
16
+ repeated :jobs, :message, 1, "gateway_protocol.ActivatedJob"
17
+ end
18
+ add_message "gateway_protocol.ActivatedJob" do
19
+ optional :key, :int64, 1
20
+ optional :type, :string, 2
21
+ optional :jobHeaders, :message, 3, "gateway_protocol.JobHeaders"
22
+ optional :customHeaders, :string, 4
23
+ optional :worker, :string, 5
24
+ optional :retries, :int32, 6
25
+ optional :deadline, :int64, 7
26
+ optional :variables, :string, 8
27
+ end
28
+ add_message "gateway_protocol.JobHeaders" do
29
+ optional :workflowInstanceKey, :int64, 1
30
+ optional :bpmnProcessId, :string, 2
31
+ optional :workflowDefinitionVersion, :int32, 3
32
+ optional :workflowKey, :int64, 4
33
+ optional :elementId, :string, 5
34
+ optional :elementInstanceKey, :int64, 6
35
+ end
36
+ add_message "gateway_protocol.CancelWorkflowInstanceRequest" do
37
+ optional :workflowInstanceKey, :int64, 1
38
+ end
39
+ add_message "gateway_protocol.CancelWorkflowInstanceResponse" do
40
+ end
41
+ add_message "gateway_protocol.CompleteJobRequest" do
42
+ optional :jobKey, :int64, 1
43
+ optional :variables, :string, 2
44
+ end
45
+ add_message "gateway_protocol.CompleteJobResponse" do
46
+ end
47
+ add_message "gateway_protocol.CreateWorkflowInstanceRequest" do
48
+ optional :workflowKey, :int64, 1
49
+ optional :bpmnProcessId, :string, 2
50
+ optional :version, :int32, 3
51
+ optional :variables, :string, 4
52
+ end
53
+ add_message "gateway_protocol.CreateWorkflowInstanceResponse" do
54
+ optional :workflowKey, :int64, 1
55
+ optional :bpmnProcessId, :string, 2
56
+ optional :version, :int32, 3
57
+ optional :workflowInstanceKey, :int64, 5
58
+ end
59
+ add_message "gateway_protocol.DeployWorkflowRequest" do
60
+ repeated :workflows, :message, 1, "gateway_protocol.WorkflowRequestObject"
61
+ end
62
+ add_message "gateway_protocol.WorkflowRequestObject" do
63
+ optional :name, :string, 1
64
+ optional :type, :enum, 2, "gateway_protocol.WorkflowRequestObject.ResourceType"
65
+ optional :definition, :bytes, 3
66
+ end
67
+ add_enum "gateway_protocol.WorkflowRequestObject.ResourceType" do
68
+ value :FILE, 0
69
+ value :BPMN, 1
70
+ value :YAML, 2
71
+ end
72
+ add_message "gateway_protocol.DeployWorkflowResponse" do
73
+ optional :key, :int64, 1
74
+ repeated :workflows, :message, 2, "gateway_protocol.WorkflowMetadata"
75
+ end
76
+ add_message "gateway_protocol.WorkflowMetadata" do
77
+ optional :bpmnProcessId, :string, 1
78
+ optional :version, :int32, 2
79
+ optional :workflowKey, :int64, 3
80
+ optional :resourceName, :string, 4
81
+ end
82
+ add_message "gateway_protocol.FailJobRequest" do
83
+ optional :jobKey, :int64, 1
84
+ optional :retries, :int32, 2
85
+ optional :errorMessage, :string, 3
86
+ end
87
+ add_message "gateway_protocol.FailJobResponse" do
88
+ end
89
+ add_message "gateway_protocol.PublishMessageRequest" do
90
+ optional :name, :string, 1
91
+ optional :correlationKey, :string, 2
92
+ optional :timeToLive, :int64, 3
93
+ optional :messageId, :string, 4
94
+ optional :variables, :string, 5
95
+ end
96
+ add_message "gateway_protocol.PublishMessageResponse" do
97
+ end
98
+ add_message "gateway_protocol.ResolveIncidentRequest" do
99
+ optional :incidentKey, :int64, 1
100
+ end
101
+ add_message "gateway_protocol.ResolveIncidentResponse" do
102
+ end
103
+ add_message "gateway_protocol.TopologyRequest" do
104
+ end
105
+ add_message "gateway_protocol.TopologyResponse" do
106
+ repeated :brokers, :message, 1, "gateway_protocol.BrokerInfo"
107
+ optional :clusterSize, :int32, 2
108
+ optional :partitionsCount, :int32, 3
109
+ optional :replicationFactor, :int32, 4
110
+ end
111
+ add_message "gateway_protocol.BrokerInfo" do
112
+ optional :nodeId, :int32, 1
113
+ optional :host, :string, 2
114
+ optional :port, :int32, 3
115
+ repeated :partitions, :message, 4, "gateway_protocol.Partition"
116
+ end
117
+ add_message "gateway_protocol.Partition" do
118
+ optional :partitionId, :int32, 1
119
+ optional :role, :enum, 3, "gateway_protocol.Partition.PartitionBrokerRole"
120
+ end
121
+ add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
122
+ value :LEADER, 0
123
+ value :FOLLOWER, 1
124
+ end
125
+ add_message "gateway_protocol.UpdateJobRetriesRequest" do
126
+ optional :jobKey, :int64, 1
127
+ optional :retries, :int32, 2
128
+ end
129
+ add_message "gateway_protocol.UpdateJobRetriesResponse" do
130
+ end
131
+ add_message "gateway_protocol.SetVariablesRequest" do
132
+ optional :elementInstanceKey, :int64, 1
133
+ optional :variables, :string, 2
134
+ optional :local, :bool, 3
135
+ end
136
+ add_message "gateway_protocol.SetVariablesResponse" do
137
+ end
154
138
  end
155
139
  end
156
140
 
@@ -172,10 +156,6 @@ module Zeebe::Client::GatewayProtocol
172
156
  WorkflowMetadata = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.WorkflowMetadata").msgclass
173
157
  FailJobRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.FailJobRequest").msgclass
174
158
  FailJobResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.FailJobResponse").msgclass
175
- GetWorkflowRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.GetWorkflowRequest").msgclass
176
- GetWorkflowResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.GetWorkflowResponse").msgclass
177
- ListWorkflowsRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ListWorkflowsRequest").msgclass
178
- ListWorkflowsResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ListWorkflowsResponse").msgclass
179
159
  PublishMessageRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.PublishMessageRequest").msgclass
180
160
  PublishMessageResponse = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.PublishMessageResponse").msgclass
181
161
  ResolveIncidentRequest = Google::Protobuf::DescriptorPool.generated_pool.lookup("gateway_protocol.ResolveIncidentRequest").msgclass
@@ -92,24 +92,6 @@ module Zeebe::Client::GatewayProtocol
92
92
  # - the job is already in a failed state, i.e. ran out of retries
93
93
  rpc :FailJob, FailJobRequest, FailJobResponse
94
94
  #
95
- # Fetches the workflow definition either by workflow key, or BPMN process ID and version.
96
- # At least one of workflowKey or bpmnProcessId must be specified.
97
- #
98
- # Errors:
99
- # NOT_FOUND:
100
- # - no workflow with the given key exists (if workflowKey was given)
101
- # - no workflow with the given process ID exists (if bpmnProcessId was given but version was -1)
102
- # - no workflow with the given process ID and version exists (if both bpmnProcessId and version were given)
103
- rpc :GetWorkflow, GetWorkflowRequest, GetWorkflowResponse
104
- #
105
- # Lists all workflows matching the request criteria currently deployed in the cluster.
106
- #
107
- # Errors:
108
- # NOT_FOUND:
109
- # - no workflows have been deployed yet (if no bpmnProcessId was given)
110
- # - no workflow with the given process ID exists (if bpmnProcessId was given)
111
- rpc :ListWorkflows, ListWorkflowsRequest, ListWorkflowsResponse
112
- #
113
95
  # Publishes a single message. Messages are published to specific partitions computed from their
114
96
  # correlation keys.
115
97
  #
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Zeebe
3
3
  module Client
4
- VERSION = '0.5.0'.freeze
4
+ VERSION = '0.6.0'.freeze
5
5
  end
6
6
  end
@@ -171,41 +171,6 @@ message FailJobRequest {
171
171
  message FailJobResponse {
172
172
  }
173
173
 
174
- message GetWorkflowRequest {
175
- // the unique key identifying the workflow definition (e.g. returned from a workflow in
176
- // the DeployWorkflowResponse message)
177
- int64 workflowKey = 1;
178
- // the version of the process; set to -1 to use the latest version
179
- int32 version = 2;
180
- // the BPMN process ID of the workflow definition
181
- string bpmnProcessId = 3;
182
- }
183
-
184
- message GetWorkflowResponse {
185
- // the unique key identifying the workflow definition (e.g. returned from a workflow in
186
- // the DeployWorkflowResponse message)
187
- int64 workflowKey = 1;
188
- // the version of the process
189
- int32 version = 2;
190
- // the BPMN process ID of the workflow definition
191
- string bpmnProcessId = 3;
192
- // the name of the resource used to deployed the workflow
193
- string resourceName = 4;
194
- // a BPMN XML representation of the workflow
195
- string bpmnXml = 5;
196
- }
197
-
198
- message ListWorkflowsRequest {
199
- // optional filter: if specified, only the workflows with this given process ID will be
200
- // returned
201
- string bpmnProcessId = 1;
202
- }
203
-
204
- message ListWorkflowsResponse {
205
- // a list of deployed workflows matching the request criteria (if any)
206
- repeated WorkflowMetadata workflows = 1;
207
- }
208
-
209
174
  message PublishMessageRequest {
210
175
  // the name of the message
211
176
  string name = 1;
@@ -396,30 +361,6 @@ service Gateway {
396
361
  rpc FailJob (FailJobRequest) returns (FailJobResponse) {
397
362
  }
398
363
 
399
- /*
400
- Fetches the workflow definition either by workflow key, or BPMN process ID and version.
401
- At least one of workflowKey or bpmnProcessId must be specified.
402
-
403
- Errors:
404
- NOT_FOUND:
405
- - no workflow with the given key exists (if workflowKey was given)
406
- - no workflow with the given process ID exists (if bpmnProcessId was given but version was -1)
407
- - no workflow with the given process ID and version exists (if both bpmnProcessId and version were given)
408
- */
409
- rpc GetWorkflow (GetWorkflowRequest) returns (GetWorkflowResponse) {
410
- }
411
-
412
- /*
413
- Lists all workflows matching the request criteria currently deployed in the cluster.
414
-
415
- Errors:
416
- NOT_FOUND:
417
- - no workflows have been deployed yet (if no bpmnProcessId was given)
418
- - no workflow with the given process ID exists (if bpmnProcessId was given)
419
- */
420
- rpc ListWorkflows (ListWorkflowsRequest) returns (ListWorkflowsResponse) {
421
- }
422
-
423
364
  /*
424
365
  Publishes a single message. Messages are published to specific partitions computed from their
425
366
  correlation keys.
@@ -12,9 +12,4 @@ describe Zeebe::Client do
12
12
  expect(topology.clusterSize).to eq(1)
13
13
  expect(topology.replicationFactor).to eq(1)
14
14
  end
15
-
16
- it 'lists workflows' do
17
- workflows = client.list_workflows(Zeebe::Client::GatewayProtocol::ListWorkflowsRequest.new).workflows
18
- expect(workflows).to eq([])
19
- end
20
15
  end
@@ -19,12 +19,12 @@ Gem::Specification.new do |s|
19
19
 
20
20
  s.required_ruby_version = '>= 2.3'
21
21
 
22
- s.add_runtime_dependency 'grpc', '~> 1.19.0'
22
+ s.add_runtime_dependency 'grpc', '>= 1.19', '< 1.21'
23
23
 
24
- s.add_development_dependency 'grpc-tools', '~> 1.19.0'
24
+ s.add_development_dependency 'grpc-tools', '~> 1.20.0'
25
25
  s.add_development_dependency 'bundler'
26
26
  s.add_development_dependency 'rake'
27
27
  s.add_development_dependency 'rspec'
28
- s.add_development_dependency 'rubocop', '~> 0.66.0'
28
+ s.add_development_dependency 'rubocop', '~> 0.70.0'
29
29
  s.add_development_dependency 'bundler-audit'
30
30
  end
metadata CHANGED
@@ -1,43 +1,49 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zeebe-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christian Nicolai
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-02 00:00:00.000000000 Z
11
+ date: 2019-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: grpc
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '1.19'
20
+ - - "<"
18
21
  - !ruby/object:Gem::Version
19
- version: 1.19.0
22
+ version: '1.21'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.19'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: 1.19.0
32
+ version: '1.21'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: grpc-tools
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
37
  - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: 1.19.0
39
+ version: 1.20.0
34
40
  type: :development
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
44
  - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: 1.19.0
46
+ version: 1.20.0
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: bundler
43
49
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +92,14 @@ dependencies:
86
92
  requirements:
87
93
  - - "~>"
88
94
  - !ruby/object:Gem::Version
89
- version: 0.66.0
95
+ version: 0.70.0
90
96
  type: :development
91
97
  prerelease: false
92
98
  version_requirements: !ruby/object:Gem::Requirement
93
99
  requirements:
94
100
  - - "~>"
95
101
  - !ruby/object:Gem::Version
96
- version: 0.66.0
102
+ version: 0.70.0
97
103
  - !ruby/object:Gem::Dependency
98
104
  name: bundler-audit
99
105
  requirement: !ruby/object:Gem::Requirement