zeebe-client 0.13.0 → 0.13.1
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/.github/workflows/ci.yml +2 -3
- data/.rubocop.yml +7 -3
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/zeebe/client/proto/gateway_pb.rb +1 -0
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +1 -0
- data/zeebe-client.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd74ff6015cb61830ba13a3fa196911ed5aa422de879153821545500fe9ea59b
|
4
|
+
data.tar.gz: 0c6592fdd0b90c237a402babdca5122c27a517e0a0e4c9d67f39e0cb3494ae27
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22a5f922226da7aa08a18e5a836c7e8efaa25481204d7bae2af913b19b01b15b4d0210695a6febf6229f1e5a12697085c0af6f9dff3d22a12036a63899f143a5
|
7
|
+
data.tar.gz: 249b7db0def4d07511e0ad981166ceeb94ecec00a1e34f5ee8a96dbd3aa6f40414370b3964868de7482a7458ba2d2fb1c42c1475e427a79cc3f36762f2a30514
|
data/.github/workflows/ci.yml
CHANGED
@@ -19,15 +19,14 @@ jobs:
|
|
19
19
|
- '2.5'
|
20
20
|
- '2.6'
|
21
21
|
- '2.7'
|
22
|
+
- '3.0'
|
22
23
|
steps:
|
23
24
|
- uses: actions/checkout@v2
|
24
25
|
- name: Set up Ruby ${{ matrix.ruby-version }}
|
25
26
|
uses: ruby/setup-ruby@v1
|
26
27
|
with:
|
27
28
|
ruby-version: ${{ matrix.ruby-version }}
|
28
|
-
|
29
|
-
run: |
|
30
|
-
bundle
|
29
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
31
30
|
- name: Test
|
32
31
|
run: |
|
33
32
|
bundle exec rake ci
|
data/.rubocop.yml
CHANGED
@@ -1,9 +1,13 @@
|
|
1
1
|
---
|
2
|
+
inherit_mode:
|
3
|
+
merge:
|
4
|
+
- Exclude
|
5
|
+
|
2
6
|
AllCops:
|
3
|
-
TargetRubyVersion: '2.
|
7
|
+
TargetRubyVersion: '2.5'
|
4
8
|
Exclude:
|
5
|
-
|
6
|
-
|
9
|
+
- 'examples/*'
|
10
|
+
- 'lib/zeebe/client/proto/*'
|
7
11
|
|
8
12
|
Layout/EmptyLineAfterGuardClause:
|
9
13
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
@@ -1,8 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.13.1 (February 26, 2021)
|
4
|
+
|
5
|
+
- support Ruby 3.0
|
6
|
+
- add support for [Zeebe 0.26.1](https://github.com/zeebe-io/zeebe/releases/tag/0.26.1)
|
7
|
+
|
3
8
|
## 0.13.0 (February 3, 2021)
|
4
9
|
|
5
|
-
- add support for [Zeebe 0.26.0](https://github.com/zeebe-io/zeebe/releases/tag/0.26.0)
|
10
|
+
- add support for [Zeebe 0.26.0](https://github.com/zeebe-io/zeebe/releases/tag/0.26.0), thanks []@rusterholz](https://github.com/zeebe-io/zeebe-client-ruby/pull/62)
|
6
11
|
|
7
12
|
## 0.12.1 (December 11, 2020)
|
8
13
|
|
data/README.md
CHANGED
data/Rakefile
CHANGED
@@ -13,7 +13,7 @@ task ci: ['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.26.
|
16
|
+
sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.26.1'
|
17
17
|
sleep(10)
|
18
18
|
end
|
19
19
|
|
@@ -142,6 +142,7 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
142
142
|
add_enum "gateway_protocol.Partition.PartitionBrokerRole" do
|
143
143
|
value :LEADER, 0
|
144
144
|
value :FOLLOWER, 1
|
145
|
+
value :INACTIVE, 2
|
145
146
|
end
|
146
147
|
add_enum "gateway_protocol.Partition.PartitionBrokerHealth" do
|
147
148
|
value :HEALTHY, 0
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
data/zeebe-client.gemspec
CHANGED
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.13.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Christian Nicolai
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-02-
|
11
|
+
date: 2021-02-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -162,7 +162,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
162
162
|
requirements:
|
163
163
|
- - ">="
|
164
164
|
- !ruby/object:Gem::Version
|
165
|
-
version: '2.
|
165
|
+
version: '2.5'
|
166
166
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
167
167
|
requirements:
|
168
168
|
- - ">="
|