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 +4 -4
- data/CHANGELOG.md +6 -1
- data/lib/floe/version.rb +1 -1
- data/lib/floe/workflow/state.rb +4 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: adbfaf3b22020809d013feabedb4de1ac729d49758aff9e429bc36d840d5254b
|
|
4
|
+
data.tar.gz: b4a534349166ace022005ad67ece4621e2ba8ae887c8e76538a20c33a91fa1bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
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
data/lib/floe/workflow/state.rb
CHANGED
|
@@ -97,7 +97,10 @@ module Floe
|
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
def ready?(context)
|
|
100
|
-
|
|
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)
|