Skip to content

Commit 3a256a9

Browse files
committed
Release v0.18.0
Added - Declare active support dependency (#316) - Add Context equality comparison (#317) - Choice rule payload validation (#189) Changed - In ChoiceRule use Regexp.union (#323) - Remove special case for choice rule IsPresent (#322) - Rename data operation parameters (#324) - Refactor workflow state check to not use payload (#326) Fixed - Fix missing parameters in item_batcher_spec (#325)
1 parent 8df356a commit 3a256a9

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@ This project adheres to [Semantic Versioning](http://semver.org/).
44

55
## [Unreleased]
66

7+
## [0.18.0] - 2025-10-24
8+
### Added
9+
- Declare active support dependency ([#316](https://github.com/ManageIQ/floe/pull/316))
10+
- Add Context equality comparison ([#317](https://github.com/ManageIQ/floe/pull/317))
11+
- Choice rule payload validation ([#189](https://github.com/ManageIQ/floe/pull/189))
12+
13+
### Changed
14+
- In ChoiceRule use Regexp.union ([#323](https://github.com/ManageIQ/floe/pull/323))
15+
- Remove special case for choice rule IsPresent ([#322](https://github.com/ManageIQ/floe/pull/322))
16+
- Rename data operation parameters ([#324](https://github.com/ManageIQ/floe/pull/324))
17+
- Refactor workflow state check to not use payload ([#326](https://github.com/ManageIQ/floe/pull/326))
18+
19+
### Fixed
20+
- Fix missing parameters in item_batcher_spec ([#325](https://github.com/ManageIQ/floe/pull/325))
21+
722
## [0.17.1] - 2025-08-25
823
### Changed
924
- Default Method=GET for floe://http method parameter ([#315](https://github.com/ManageIQ/floe/pull/315))
@@ -302,7 +317,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
302317
### Added
303318
- Initial release
304319

305-
[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.17.0...HEAD
320+
[Unreleased]: https://github.com/ManageIQ/floe/compare/v0.18.0...HEAD
321+
[0.18.0]: https://github.com/ManageIQ/floe/compare/v0.17.1...v0.18.0
322+
[0.17.1]: https://github.com/ManageIQ/floe/compare/v0.17.0...v0.17.1
323+
[0.17.0]: https://github.com/ManageIQ/floe/compare/v0.16.0...v0.17.0
306324
[0.16.0]: https://github.com/ManageIQ/floe/compare/v0.16.0...v0.17.0
307325
[0.16.0]: https://github.com/ManageIQ/floe/compare/v0.15.1...v0.16.0
308326
[0.15.1]: https://github.com/ManageIQ/floe/compare/v0.15.0...v0.15.1

lib/floe/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Floe
4-
VERSION = "0.17.1"
4+
VERSION = "0.18.0"
55
end

0 commit comments

Comments
 (0)