cloudmunda 0.1.4 → 0.1.5

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: 936e312ef49af3f00fc9c0d4f97b84ce173a8da8981273791a88977a3bb3cfe8
4
- data.tar.gz: c9dc23a1bf6142d0bd0e49d22a9261cfcfb197bcc83b7a2ea7600407ea709579
3
+ metadata.gz: d39c8c008a5daa06c17d7b1043da928af38b1526c03cf7b720e3f80170cf90f8
4
+ data.tar.gz: 20648b7f7b16f890de112425f0ab8ebea2fa28977448944de6f4feae015483a4
5
5
  SHA512:
6
- metadata.gz: e937d7735c28308809b9c57e23fc4c40ceb6030a3ccce06d186d49848473fe42f40ddbaa9654954aabe4ed06e03616f7dc6c2721d05689cec71bce5ed39a2262
7
- data.tar.gz: b75a37bc42b05a8c8e947d7243ec4b5d50cd9311d4a42afa16c505f1d04c01f239a0d660a41644ad1c3fda62cd187486628c7f393c3e9e66c61cbc33f3cbd8c7
6
+ metadata.gz: 37f31eb311148f3d4d44dae9790701dc136f92904337118786e749710db0fe54e4845d890985693fa788e22edbcf11dfa1b9c91d3f24daddf03b47c94b0d8e36
7
+ data.tar.gz: f171d29587a6c5ad5fc854a9008f6a1af30b12b070311633bf57dbf96ccb7a356c275347fb80d2fed2126ae67a0938e1aed555d743398769463bd5b18545312d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.5] - 2022-08-09
4
+ - Remove usage of Concurrent::TimerTask's timeout_interval since it has been deprecated.
5
+
3
6
  ## [0.1.4] - 2022-08-09
4
7
  - Rework how we use `runs_in_development` together with `type`. This is a very biased approach. What we do from now on if when in your job definition `runs_in_development` equals to true, we will add `-dev` to the type name.
5
8
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cloudmunda (0.1.4)
4
+ cloudmunda (0.1.5)
5
5
  concurrent-ruby (~> 1.0)
6
6
  rest-client (~> 2.0)
7
7
  zeebe-client (~> 0.16)
@@ -223,4 +223,4 @@ DEPENDENCIES
223
223
  rubocop (~> 1.21)
224
224
 
225
225
  BUNDLED WITH
226
- 2.2.31
226
+ 2.3.19
@@ -11,7 +11,6 @@ module Cloudmunda
11
11
  @timer = ::Concurrent::TimerTask.new(
12
12
  run_now: true,
13
13
  execution_interval: worker_poll_interval,
14
- timeout_interval: worker_timeout
15
14
  ) { run }
16
15
  end
17
16
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Cloudmunda
4
- VERSION = '0.1.4'
4
+ VERSION = '0.1.5'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudmunda
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lien Van Den Steen