floe 0.19.0 → 0.19.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d7ec87295c6283b53c25c1791a9f8a2a953e48bec4059bf67fd5487875c114ce
4
- data.tar.gz: a56a431253dd0a4a4c4470363ce0dfa83aa6f8ec834239a43266c6e41ccc0b61
3
+ metadata.gz: adbfaf3b22020809d013feabedb4de1ac729d49758aff9e429bc36d840d5254b
4
+ data.tar.gz: b4a534349166ace022005ad67ece4621e2ba8ae887c8e76538a20c33a91fa1bb
5
5
  SHA512:
6
- metadata.gz: c3d888a3713b5e3291e9fb7a04ea3254268e2ee11ccdc1a49af71f992cab61d5752d689f70292d67f3c9d3b69f146c47c0a86423a424c18220e813c2997c4402
7
- data.tar.gz: f54adf8264d7ed09c05d2c78b8f5029d0ed5c472ac365e75a3656cc66fa29db0dd79eded1136b0893114d75eaf9a5e4637e76a2c347d1b8917ac8d3cf4238ec2
6
+ metadata.gz: 7c5b35efa8f03b994f2a331cd5d84ccb6ab8362c05b956b7e5a2e033b059c756576102cc875022367759a3f3f42a729860133ba7af56b3b8cd7af1b02935038d
7
+ data.tar.gz: e004358bee889a2f0d89de56e596be0299e2d78f219029859de973d72c178951ca7886a6131cca1072ba164feaab18a664e241f86a2829559ca85733879d8164
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [0.19.1] - 2025-12-17
8
+ ### Fixed
9
+ - Fix `State#ready?` when a task is running with no `WaitUntil` ([#338](https://github.com/ManageIQ/floe/pull/338))
10
+
7
11
  ## [0.19.0] - 2025-12-16
8
12
  ### Fixed
9
13
  - Fix builtin_runner/runner spec file name ([#329](https://github.com/ManageIQ/floe/pull/329))
@@ -329,7 +333,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
329
333
  ### Added
330
334
  - Initial release
331
335
 
332
- [Unreleased]: https://github.com/ManageIQ/floe/compare/v0.19.0...HEAD
336
+ [Unreleased]: https://github.com/ManageIQ/floe/compare/v0.19.1...HEAD
337
+ [0.19.1]: https://github.com/ManageIQ/floe/compare/v0.19.0...v0.19.1
333
338
  [0.19.0]: https://github.com/ManageIQ/floe/compare/v0.18.0...v0.19.0
334
339
  [0.18.0]: https://github.com/ManageIQ/floe/compare/v0.17.1...v0.18.0
335
340
  [0.17.1]: https://github.com/ManageIQ/floe/compare/v0.17.0...v0.17.1
data/lib/floe/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Floe
4
- VERSION = "0.19.0"
4
+ VERSION = "0.19.1"
5
5
  end
@@ -97,7 +97,10 @@ module Floe
97
97
  end
98
98
 
99
99
  def ready?(context)
100
- (started?(context) && !running?(context)) || !waiting?(context)
100
+ return false if !started?(context)
101
+ return true if !running?(context)
102
+ return true if wait_until(context) && !waiting?(context)
103
+ false
101
104
  end
102
105
 
103
106
  def running?(context)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: floe
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.19.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - ManageIQ Developers