zeebe-client 0.9.1 → 0.10.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +1 -1
- data/Rakefile +1 -1
- data/lib/zeebe/client.rb +4 -5
- data/lib/zeebe/client/proto/gateway_pb.rb +2 -0
- data/lib/zeebe/client/version.rb +1 -1
- data/proto/gateway.proto +4 -0
- data/zeebe-client.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb56f40aa64c5636b255de891edb2624dec0db5b138ce4b96909cca41cf339b0
|
4
|
+
data.tar.gz: ba7ccc58e8127b2a6665408e56f070bb0d7d058db70c1d84046d8f129d11cb6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b88227722af64cdd5734f7ebe01eddced21f0f8b36f8f901880b43c0e177197e50bd03dbeefc9224852f0e1ce7d1966afead2946077f44d850aa6343da6e35bc
|
7
|
+
data.tar.gz: ece76d90e377a8dfc3781d72feff9edcfdab300b3fb355be6766a2ccd1e66df8c130202a7f235dd59ae7d43457d9687c6b19bd201f33142f30f787a696e83de5
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 0.10.0 (April 21, 2020)
|
4
|
+
|
5
|
+
- add support for [Zeebe 0.23.0](https://github.com/zeebe-io/zeebe/releases/tag/0.23.0)
|
6
|
+
- fix load order problem to allow loading the gem successfully [#47](https://github.com/zeebe-io/zeebe-client-ruby/pull/47) (thanks rusterholz)
|
7
|
+
|
3
8
|
## 0.9.1 (March 12, 2020)
|
4
9
|
|
5
10
|
- add support for [Zeebe 0.22.2](https://github.com/zeebe-io/zeebe/releases/tag/0.22.2)
|
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.23.0'
|
17
17
|
sleep(10)
|
18
18
|
end
|
19
19
|
|
data/lib/zeebe/client.rb
CHANGED
@@ -1,9 +1,8 @@
|
|
1
|
-
|
2
|
-
require 'zeebe/client/proto/gateway_pb'
|
3
|
-
require 'zeebe/client/proto/gateway_services_pb'
|
4
|
-
require 'zeebe/client/version'
|
5
|
-
|
6
1
|
module Zeebe
|
7
2
|
module Client
|
8
3
|
end
|
9
4
|
end
|
5
|
+
|
6
|
+
require 'zeebe/client/proto/gateway_pb'
|
7
|
+
require 'zeebe/client/proto/gateway_services_pb'
|
8
|
+
require 'zeebe/client/version'
|
@@ -124,12 +124,14 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
124
124
|
optional :clusterSize, :int32, 2
|
125
125
|
optional :partitionsCount, :int32, 3
|
126
126
|
optional :replicationFactor, :int32, 4
|
127
|
+
optional :gatewayVersion, :string, 5
|
127
128
|
end
|
128
129
|
add_message "gateway_protocol.BrokerInfo" do
|
129
130
|
optional :nodeId, :int32, 1
|
130
131
|
optional :host, :string, 2
|
131
132
|
optional :port, :int32, 3
|
132
133
|
repeated :partitions, :message, 4, "gateway_protocol.Partition"
|
134
|
+
optional :version, :string, 5
|
133
135
|
end
|
134
136
|
add_message "gateway_protocol.Partition" do
|
135
137
|
optional :partitionId, :int32, 1
|
data/lib/zeebe/client/version.rb
CHANGED
data/proto/gateway.proto
CHANGED
@@ -248,6 +248,8 @@ message TopologyResponse {
|
|
248
248
|
int32 partitionsCount = 3;
|
249
249
|
// configured replication factor for this cluster
|
250
250
|
int32 replicationFactor = 4;
|
251
|
+
// gateway version
|
252
|
+
string gatewayVersion = 5;
|
251
253
|
}
|
252
254
|
|
253
255
|
message BrokerInfo {
|
@@ -259,6 +261,8 @@ message BrokerInfo {
|
|
259
261
|
int32 port = 3;
|
260
262
|
// list of partitions managed or replicated on this broker
|
261
263
|
repeated Partition partitions = 4;
|
264
|
+
// broker version
|
265
|
+
string version = 5;
|
262
266
|
}
|
263
267
|
|
264
268
|
message Partition {
|
data/zeebe-client.gemspec
CHANGED
@@ -26,6 +26,6 @@ Gem::Specification.new do |s|
|
|
26
26
|
s.add_development_dependency 'grpc-tools', '~> 1.27.0'
|
27
27
|
s.add_development_dependency 'rake'
|
28
28
|
s.add_development_dependency 'rspec'
|
29
|
-
s.add_development_dependency 'rubocop', '~> 0.
|
29
|
+
s.add_development_dependency 'rubocop', '~> 0.81.0'
|
30
30
|
s.add_development_dependency 'solargraph'
|
31
31
|
end
|
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.10.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-04-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grpc
|
@@ -100,14 +100,14 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - "~>"
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 0.
|
103
|
+
version: 0.81.0
|
104
104
|
type: :development
|
105
105
|
prerelease: false
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
107
107
|
requirements:
|
108
108
|
- - "~>"
|
109
109
|
- !ruby/object:Gem::Version
|
110
|
-
version: 0.
|
110
|
+
version: 0.81.0
|
111
111
|
- !ruby/object:Gem::Dependency
|
112
112
|
name: solargraph
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|