zeebe-client 0.9.1 → 0.11.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 486cdb322be77c000cdc9a526a43994472b4e58b786505cf8e9def2639e4a8bb
4
- data.tar.gz: 4e92042588b62f8f237d39459e0ca01aae2472550f621387faf8dacc7826b8bc
3
+ metadata.gz: 57161c4938b4ce113f48c241a088f487b376a575bbb0ab583e58af26d4638d58
4
+ data.tar.gz: b0164f2f1d62f525e4f76abc6bdcefc761e87fd9c3eff026885be8af0d3c66a8
5
5
  SHA512:
6
- metadata.gz: 303ddd82e467f285ffaa92fcc77d03c6eba65dde94d2c9331225234f43800084a893f6bfc727077d379dee02ed2d8132988e1cd825d63de54f9becd6b9e9a06a
7
- data.tar.gz: 53f0374fd08cd497f9d454019779ad4f47e9842ce120b5471465a05f2988a091747dfbe07c8174acf8da6809322f8fecaed8389a0b7b74555b8851dd98e0de0c
6
+ metadata.gz: 9b93237e022eebe30f3c0f1e0c65b47d83baa6978afead9aa8e9dcefef4fb3d2c57471d58b32b31830229396b0a687605d4c8e074d2e724200823584e5528715
7
+ data.tar.gz: 211857526bc82b80b56ad232e895e46edaeaf572a2fc84bff26d42dd96f342e1009e7ea5dfc0d5377ebfa8683cf05514c71fc88caabd85b7ae09bf8b94a7f8b4
@@ -0,0 +1,9 @@
1
+ ---
2
+ version: 2
3
+ updates:
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: monthly
8
+ time: '17:00'
9
+ open-pull-requests-limit: 99
@@ -0,0 +1,31 @@
1
+ name: ci
2
+
3
+ on:
4
+ push:
5
+ branches: [master]
6
+ pull_request:
7
+ branches: [master]
8
+ schedule:
9
+ - cron: '7 4 * * 4' # weekly on thursday morning
10
+
11
+ jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ strategy:
15
+ matrix:
16
+ ruby-version:
17
+ - '2.5'
18
+ - '2.6'
19
+ - '2.7'
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - name: Set up Ruby ${{ matrix.ruby-version }}
23
+ uses: actions/setup-ruby@v1
24
+ with:
25
+ ruby-version: ${{ matrix.ruby-version }}
26
+ - name: Install dependencies
27
+ run: |
28
+ bundle
29
+ - name: Test
30
+ run: |
31
+ bundle exec rake travis
@@ -24,6 +24,12 @@ Layout/LineLength:
24
24
  Layout/SpaceInsideHashLiteralBraces:
25
25
  Enabled: false
26
26
 
27
+ Lint/RaiseException:
28
+ Enabled: true
29
+
30
+ Lint/StructNewOverride:
31
+ Enabled: true
32
+
27
33
  Metrics/AbcSize:
28
34
  Enabled: false
29
35
 
@@ -5,13 +5,9 @@ rvm:
5
5
  - 2.7
6
6
  - 2.6
7
7
  - 2.5
8
- - 2.4
9
- - 2.3
10
8
 
11
9
  jobs:
12
10
  fast_finish: true
13
- allow_failures:
14
- - rvm: 2.7
15
11
 
16
12
  services:
17
13
  - docker
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.11.2 (November 5, 2020)
4
+
5
+ - relax `grpc` dependency version constraint from `~> 1.32.0` to `~> 1.32` thus allowing usage of future versions that are compatible due to [semver](https://github.com/grpc/grpc/blob/master/doc/versioning.md), thanks @rusterholz
6
+
7
+ ## 0.11.1 (November 4, 2020)
8
+
9
+ - add support for [Zeebe 0.24.3](https://github.com/zeebe-io/zeebe/releases/tag/0.24.3)
10
+
11
+ ## 0.11.0 (July 29, 2020)
12
+
13
+ - support Ruby 2.7
14
+ - drop EOL Ruby 2.4 and older
15
+ - add support for [Zeebe 0.24.1](https://github.com/zeebe-io/zeebe/releases/tag/0.24.1)
16
+
17
+ ## 0.10.1 (April 24, 2020)
18
+
19
+ - add support for [Zeebe 0.23.1](https://github.com/zeebe-io/zeebe/releases/tag/0.23.1)
20
+ - improve test setup to allow catching some load order problems like the one from [#47](https://github.com/zeebe-io/zeebe-client-ruby/pull/47)
21
+
22
+ ## 0.10.0 (April 21, 2020)
23
+
24
+ - add support for [Zeebe 0.23.0](https://github.com/zeebe-io/zeebe/releases/tag/0.23.0)
25
+ - fix load order problem to allow loading the gem successfully [#47](https://github.com/zeebe-io/zeebe-client-ruby/pull/47) (thanks rusterholz)
26
+
3
27
  ## 0.9.1 (March 12, 2020)
4
28
 
5
29
  - add support for [Zeebe 0.22.2](https://github.com/zeebe-io/zeebe/releases/tag/0.22.2)
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.22.2
16
+ docker run -it --rm -p 26500:26500 camunda/zeebe:0.24.3
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.22.2'
16
+ sh 'docker run -d --name zeebe --rm -p 26500:26500 camunda/zeebe:0.24.3'
17
17
  sleep(10)
18
18
  end
19
19
 
@@ -13,8 +13,3 @@ puts " Brokers:"
13
13
  topology.brokers.each do |b|
14
14
  puts " - id: #{b.nodeId}, address: #{b.host}:#{b.port}, partitions: #{b.partitions.map { |p| p.partitionId }}"
15
15
  end
16
-
17
- workflows = zeebe_client.list_workflows(Zeebe::Client::GatewayProtocol::ListWorkflowsRequest.new).workflows
18
-
19
- puts ""
20
- puts "Zeebe workflows: #{workflows.inspect}"
@@ -6,5 +6,5 @@ genPath="lib/zeebe/client"
6
6
  grpc_tools_ruby_protoc "${protoPath}/gateway.proto" --ruby_out="${genPath}" --grpc_out="${genPath}"
7
7
 
8
8
  sed -i 's@proto/gateway_pb@zeebe/client/proto/gateway_pb@g' "${genPath}/proto/gateway_services_pb.rb"
9
- sed -i 's@module GatewayProtocol@module Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_pb.rb"
10
- sed -i 's@module GatewayProtocol@module Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_services_pb.rb"
9
+ sed -i 's@GatewayProtocol@Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_pb.rb"
10
+ sed -i 's@GatewayProtocol@Zeebe::Client::GatewayProtocol@g' "${genPath}/proto/gateway_services_pb.rb"
@@ -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
@@ -24,14 +24,14 @@ module Zeebe::Client::GatewayProtocol
24
24
  # - worker is blank (empty string, null)
25
25
  # - timeout less than 1
26
26
  # - maxJobsToActivate is less than 1
27
- rpc :ActivateJobs, ActivateJobsRequest, stream(ActivateJobsResponse)
27
+ rpc :ActivateJobs, ::Zeebe::Client::GatewayProtocol::ActivateJobsRequest, stream(::Zeebe::Client::GatewayProtocol::ActivateJobsResponse)
28
28
  #
29
29
  # Cancels a running workflow instance
30
30
  #
31
31
  # Errors:
32
32
  # NOT_FOUND:
33
33
  # - no workflow instance exists with the given key
34
- rpc :CancelWorkflowInstance, CancelWorkflowInstanceRequest, CancelWorkflowInstanceResponse
34
+ rpc :CancelWorkflowInstance, ::Zeebe::Client::GatewayProtocol::CancelWorkflowInstanceRequest, ::Zeebe::Client::GatewayProtocol::CancelWorkflowInstanceResponse
35
35
  #
36
36
  # Completes a job with the given variables, which allows completing the associated service task.
37
37
  #
@@ -43,7 +43,7 @@ module Zeebe::Client::GatewayProtocol
43
43
  # FAILED_PRECONDITION:
44
44
  # - the job was marked as failed. In that case, the related incident must be resolved before
45
45
  # the job can be activated again and completed.
46
- rpc :CompleteJob, CompleteJobRequest, CompleteJobResponse
46
+ rpc :CompleteJob, ::Zeebe::Client::GatewayProtocol::CompleteJobRequest, ::Zeebe::Client::GatewayProtocol::CompleteJobResponse
47
47
  #
48
48
  # Creates and starts an instance of the specified workflow. The workflow definition to use to
49
49
  # create the instance can be specified either using its unique key (as returned by
@@ -64,10 +64,10 @@ module Zeebe::Client::GatewayProtocol
64
64
  # INVALID_ARGUMENT:
65
65
  # - the given variables argument is not a valid JSON document; it is expected to be a valid
66
66
  # JSON document where the root node is an object.
67
- rpc :CreateWorkflowInstance, CreateWorkflowInstanceRequest, CreateWorkflowInstanceResponse
67
+ rpc :CreateWorkflowInstance, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceRequest, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceResponse
68
68
  #
69
69
  # Behaves similarly to `rpc CreateWorkflowInstance`, except that a successful response is received when the workflow completes successfully.
70
- rpc :CreateWorkflowInstanceWithResult, CreateWorkflowInstanceWithResultRequest, CreateWorkflowInstanceWithResultResponse
70
+ rpc :CreateWorkflowInstanceWithResult, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceWithResultRequest, ::Zeebe::Client::GatewayProtocol::CreateWorkflowInstanceWithResultResponse
71
71
  #
72
72
  # Deploys one or more workflows to Zeebe. Note that this is an atomic call,
73
73
  # i.e. either all workflows are deployed, or none of them are.
@@ -79,7 +79,7 @@ module Zeebe::Client::GatewayProtocol
79
79
  # - it is not a BPMN or YAML file (currently detected through the file extension)
80
80
  # - the resource data is not deserializable (e.g. detected as BPMN, but it's broken XML)
81
81
  # - the workflow is invalid (e.g. an event-based gateway has an outgoing sequence flow to a task)
82
- rpc :DeployWorkflow, DeployWorkflowRequest, DeployWorkflowResponse
82
+ rpc :DeployWorkflow, ::Zeebe::Client::GatewayProtocol::DeployWorkflowRequest, ::Zeebe::Client::GatewayProtocol::DeployWorkflowResponse
83
83
  #
84
84
  # Marks the job as failed; if the retries argument is positive, then the job will be immediately
85
85
  # activatable again, and a worker could try again to process it. If it is zero or negative however,
@@ -93,7 +93,7 @@ module Zeebe::Client::GatewayProtocol
93
93
  # FAILED_PRECONDITION:
94
94
  # - the job was not activated
95
95
  # - the job is already in a failed state, i.e. ran out of retries
96
- rpc :FailJob, FailJobRequest, FailJobResponse
96
+ rpc :FailJob, ::Zeebe::Client::GatewayProtocol::FailJobRequest, ::Zeebe::Client::GatewayProtocol::FailJobResponse
97
97
  #
98
98
  # 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.
99
99
  #
@@ -103,7 +103,7 @@ module Zeebe::Client::GatewayProtocol
103
103
  #
104
104
  # FAILED_PRECONDITION:
105
105
  # - the job is not in an activated state
106
- rpc :ThrowError, ThrowErrorRequest, ThrowErrorResponse
106
+ rpc :ThrowError, ::Zeebe::Client::GatewayProtocol::ThrowErrorRequest, ::Zeebe::Client::GatewayProtocol::ThrowErrorResponse
107
107
  #
108
108
  # Publishes a single message. Messages are published to specific partitions computed from their
109
109
  # correlation keys.
@@ -111,7 +111,7 @@ module Zeebe::Client::GatewayProtocol
111
111
  # Errors:
112
112
  # ALREADY_EXISTS:
113
113
  # - a message with the same ID was previously published (and is still alive)
114
- rpc :PublishMessage, PublishMessageRequest, PublishMessageResponse
114
+ rpc :PublishMessage, ::Zeebe::Client::GatewayProtocol::PublishMessageRequest, ::Zeebe::Client::GatewayProtocol::PublishMessageResponse
115
115
  #
116
116
  # Resolves a given incident. This simply marks the incident as resolved; most likely a call to
117
117
  # UpdateJobRetries or SetVariables will be necessary to actually resolve the
@@ -120,7 +120,7 @@ module Zeebe::Client::GatewayProtocol
120
120
  # Errors:
121
121
  # NOT_FOUND:
122
122
  # - no incident with the given key exists
123
- rpc :ResolveIncident, ResolveIncidentRequest, ResolveIncidentResponse
123
+ rpc :ResolveIncident, ::Zeebe::Client::GatewayProtocol::ResolveIncidentRequest, ::Zeebe::Client::GatewayProtocol::ResolveIncidentResponse
124
124
  #
125
125
  # Updates all the variables of a particular scope (e.g. workflow instance, flow element instance)
126
126
  # from the given JSON document.
@@ -131,10 +131,10 @@ module Zeebe::Client::GatewayProtocol
131
131
  # INVALID_ARGUMENT:
132
132
  # - the given variables document is not a valid JSON document; valid documents are expected to
133
133
  # be JSON documents where the root node is an object.
134
- rpc :SetVariables, SetVariablesRequest, SetVariablesResponse
134
+ rpc :SetVariables, ::Zeebe::Client::GatewayProtocol::SetVariablesRequest, ::Zeebe::Client::GatewayProtocol::SetVariablesResponse
135
135
  #
136
136
  # Obtains the current topology of the cluster the gateway is part of.
137
- rpc :Topology, TopologyRequest, TopologyResponse
137
+ rpc :Topology, ::Zeebe::Client::GatewayProtocol::TopologyRequest, ::Zeebe::Client::GatewayProtocol::TopologyResponse
138
138
  #
139
139
  # Updates the number of retries a job has left. This is mostly useful for jobs that have run out of
140
140
  # retries, should the underlying problem be solved.
@@ -145,7 +145,7 @@ module Zeebe::Client::GatewayProtocol
145
145
  #
146
146
  # INVALID_ARGUMENT:
147
147
  # - retries is not greater than 0
148
- rpc :UpdateJobRetries, UpdateJobRetriesRequest, UpdateJobRetriesResponse
148
+ rpc :UpdateJobRetries, ::Zeebe::Client::GatewayProtocol::UpdateJobRetriesRequest, ::Zeebe::Client::GatewayProtocol::UpdateJobRetriesResponse
149
149
  end
150
150
 
151
151
  Stub = Service.rpc_stub_class
@@ -1,6 +1,6 @@
1
1
 
2
2
  module Zeebe
3
3
  module Client
4
- VERSION = '0.9.1'.freeze
4
+ VERSION = '0.11.2'.freeze
5
5
  end
6
6
  end
@@ -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 milliseconds. the request will be closed if the workflow is not completed
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;
@@ -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 {
@@ -411,7 +415,7 @@ service Gateway {
411
415
 
412
416
  /*
413
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.
414
-
418
+
415
419
  Errors:
416
420
  NOT_FOUND:
417
421
  - no job was found with the given key
@@ -2,4 +2,9 @@
2
2
  require 'rubygems'
3
3
  require 'bundler/setup'
4
4
 
5
+ # Remove any previous definitions for the constant `Zeebe` (module) that might
6
+ # already exist e.g. due to how bundler works to test if requiring the gem works
7
+ # correctly in a nearly-untouched environment and surface load order issues like
8
+ # the one in https://github.com/zeebe-io/zeebe-client-ruby/pull/47
9
+ Object.send :remove_const, :Zeebe
5
10
  require 'zeebe/client'
@@ -19,13 +19,13 @@ Gem::Specification.new do |s|
19
19
 
20
20
  s.required_ruby_version = '>= 2.3'
21
21
 
22
- s.add_runtime_dependency 'grpc', '~> 1.27.0'
22
+ s.add_runtime_dependency 'grpc', '~> 1.32'
23
23
 
24
24
  s.add_development_dependency 'bundler'
25
- s.add_development_dependency 'bundler-audit', '~> 0.6.0'
26
- s.add_development_dependency 'grpc-tools', '~> 1.27.0'
25
+ s.add_development_dependency 'bundler-audit', '~> 0.7.0'
26
+ s.add_development_dependency 'grpc-tools', '~> 1.32'
27
27
  s.add_development_dependency 'rake'
28
28
  s.add_development_dependency 'rspec'
29
- s.add_development_dependency 'rubocop', '~> 0.80.1'
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.9.1
4
+ version: 0.11.2
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-03-12 00:00:00.000000000 Z
11
+ date: 2020-11-05 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.27.0
19
+ version: '1.32'
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.27.0
26
+ version: '1.32'
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.6.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.6.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.27.0
61
+ version: '1.32'
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.27.0
68
+ version: '1.32'
69
69
  - !ruby/object:Gem::Dependency
70
70
  name: rake
71
71
  requirement: !ruby/object:Gem::Requirement
@@ -100,14 +100,14 @@ dependencies:
100
100
  requirements:
101
101
  - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 0.80.1
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.80.1
110
+ version: 0.81.0
111
111
  - !ruby/object:Gem::Dependency
112
112
  name: solargraph
113
113
  requirement: !ruby/object:Gem::Requirement
@@ -129,6 +129,8 @@ executables: []
129
129
  extensions: []
130
130
  extra_rdoc_files: []
131
131
  files:
132
+ - ".github/dependabot.yml"
133
+ - ".github/workflows/ci.yml"
132
134
  - ".gitignore"
133
135
  - ".rubocop.yml"
134
136
  - ".solargraph.yml"
@@ -168,7 +170,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
168
170
  - !ruby/object:Gem::Version
169
171
  version: '0'
170
172
  requirements: []
171
- rubygems_version: 3.0.8
173
+ rubygems_version: 3.1.4
172
174
  signing_key:
173
175
  specification_version: 4
174
176
  summary: Zeebe Client