zeebe-client 0.10.1 → 0.11.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/dependabot.yml +9 -0
- data/.travis.yml +0 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +4 -4
- data/zeebe-client.gemspec +3 -3
- metadata +9 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c458c30ca89e870cabbead8c0672fdebe62969e28cdf031f64675240eddcb45
|
4
|
+
data.tar.gz: 8c51e32007c3a18bd5adc20d52c6b0d26ae6068866684dec7c809202a92f65e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 57cfbc109cc7624026c0a25b1ed7bd87281e6ee04d3f79b591a870715606d5c47c385eba2de63c9a8b6961cd75b1f0255cd622f3c634ff877f5626cd75638947
|
7
|
+
data.tar.gz: 43aa739e75b8bd6123503e464f376f46569fb414ccdc472c04403eb0d535ad102b62ac20075cd38a865861f733e70c2df6d1216a17ed4cb6fe95a4213abb0256
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.11.0 (July 29, 2020)
|
4
|
+
|
5
|
+
- support Ruby 2.7
|
6
|
+
- drop EOL Ruby 2.4 and older
|
7
|
+
- add support for [Zeebe 0.24.1](https://github.com/zeebe-io/zeebe/releases/tag/0.24.1)
|
8
|
+
|
3
9
|
## 0.10.1 (April 24, 2020)
|
4
10
|
|
5
11
|
- add support for [Zeebe 0.23.1](https://github.com/zeebe-io/zeebe/releases/tag/0.23.1)
|
data/README.md
CHANGED
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.
|
16
|
+
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.24.1'
|
17
17
|
sleep(10)
|
18
18
|
end
|
19
19
|
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
@@ -15,14 +15,14 @@ message ActivateJobsRequest {
|
|
15
15
|
// the name of the worker activating the jobs, mostly used for logging purposes
|
16
16
|
string worker = 2;
|
17
17
|
// a job returned after this call will not be activated by another call until the
|
18
|
-
// timeout has been reached
|
18
|
+
// timeout (in ms) has been reached
|
19
19
|
int64 timeout = 3;
|
20
20
|
// the maximum jobs to activate by this request
|
21
21
|
int32 maxJobsToActivate = 4;
|
22
22
|
// a list of variables to fetch as the job variables; if empty, all visible variables at
|
23
23
|
// the time of activation for the scope of the job will be returned
|
24
24
|
repeated string fetchVariable = 5;
|
25
|
-
// The request will be completed when at least one job is activated or after the requestTimeout.
|
25
|
+
// The request will be completed when at least one job is activated or after the requestTimeout (in ms).
|
26
26
|
// if the requestTimeout = 0, a default timeout is used.
|
27
27
|
// if the requestTimeout < 0, long polling is disabled and the request is completed immediately, even when no job is activated.
|
28
28
|
int64 requestTimeout = 6;
|
@@ -115,7 +115,7 @@ message CreateWorkflowInstanceResponse {
|
|
115
115
|
|
116
116
|
message CreateWorkflowInstanceWithResultRequest {
|
117
117
|
CreateWorkflowInstanceRequest request = 1;
|
118
|
-
// timeout in
|
118
|
+
// timeout (in ms). the request will be closed if the workflow is not completed
|
119
119
|
// before the requestTimeout.
|
120
120
|
// if requestTimeout = 0, uses the generic requestTimeout configured in the gateway.
|
121
121
|
int64 requestTimeout = 2;
|
@@ -415,7 +415,7 @@ service Gateway {
|
|
415
415
|
|
416
416
|
/*
|
417
417
|
Reports a business error (i.e. non-technical) that occurs while processing a job. The error is handled in the workflow by an error catch event. If there is no error catch event with the specified errorCode then an incident will be raised instead.
|
418
|
-
|
418
|
+
|
419
419
|
Errors:
|
420
420
|
NOT_FOUND:
|
421
421
|
- no job was found with the given key
|
data/zeebe-client.gemspec
CHANGED
@@ -19,11 +19,11 @@ Gem::Specification.new do |s|
|
|
19
19
|
|
20
20
|
s.required_ruby_version = '>= 2.3'
|
21
21
|
|
22
|
-
s.add_runtime_dependency 'grpc', '~> 1.
|
22
|
+
s.add_runtime_dependency 'grpc', '~> 1.28.0'
|
23
23
|
|
24
24
|
s.add_development_dependency 'bundler'
|
25
|
-
s.add_development_dependency 'bundler-audit', '~> 0.
|
26
|
-
s.add_development_dependency 'grpc-tools', '~> 1.
|
25
|
+
s.add_development_dependency 'bundler-audit', '~> 0.7.0'
|
26
|
+
s.add_development_dependency 'grpc-tools', '~> 1.28.0'
|
27
27
|
s.add_development_dependency 'rake'
|
28
28
|
s.add_development_dependency 'rspec'
|
29
29
|
s.add_development_dependency 'rubocop', '~> 0.81.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zeebe-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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: 2020-
|
11
|
+
date: 2020-07-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.28.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.28.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -44,28 +44,28 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 0.
|
47
|
+
version: 0.7.0
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: 0.
|
54
|
+
version: 0.7.0
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: grpc-tools
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.
|
61
|
+
version: 1.28.0
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 1.
|
68
|
+
version: 1.28.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: rake
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -129,6 +129,7 @@ executables: []
|
|
129
129
|
extensions: []
|
130
130
|
extra_rdoc_files: []
|
131
131
|
files:
|
132
|
+
- ".github/dependabot.yml"
|
132
133
|
- ".gitignore"
|
133
134
|
- ".rubocop.yml"
|
134
135
|
- ".solargraph.yml"
|