Skip to content

Latest commit

 

History

History
223 lines (178 loc) · 10.6 KB

CHANGELOG.md

File metadata and controls

223 lines (178 loc) · 10.6 KB

Change Log

All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

0.11.3 - 2024-06-20

Fixed

  • ResultPath=$ replaces complete output (#199)
  • Fix retrier backoff values (#200)
  • Fix Retry issues (#202)
  • Add Apache-2.0 license (#217)

Changed

  • Update gemspec summary (#205)
  • Simpler State#long_name (#204)
  • State only modifies Context#state - prep for Map/Parallel (#206)
  • Set StateHistory in Workflow not State (#211)
  • Make Runner#wait optional (#190)
  • Pass credentials around with context (#203)
  • Pass context to State without workflow (#216)
  • Move the guts of the CLI into a class for easy testing (#220)

Added

  • Set State PreviousStateGuid in StateHistory (#208)
  • Add a codeclimate config file (#224)
  • Add an Execution unique ID to Context (#226)

0.11.2 - 2024-05-24

Fixed

  • Output now based upon raw input not effective input (#191)
  • Fix error raised on invalid resource scheme (#195)

0.11.1 - 2024-05-20

Fixed

  • Fix issue where a failed state can leave a workflow in "running" (#182)

Changed

  • Drop unused Task#status (#180)
  • Check task failed? in non_terminal_mixin (#183)

0.11.0 - 2024-05-02

Fixed

  • Ensure the local code is loaded in exe/floe (#173)
  • Fix issues with exe/floe and various combinations of workflow and input (#174)

Added

  • Add support for pluggable schemes (#169)

Changed

  • Collapse some namespaces (#171)
  • Pass workflow context into runner#run_async! (#177)

Removed

  • Remove unused run! method (#176)

0.10.0 - 2024-04-05

Fixed

  • Fix rubocops (#164)
  • Output should contain errors (#165)

Added

  • Add simplecov (#162)
  • Add ability to pass context on the command line (#161)
  • Add specs for Workflow#wait_until, #waiting? (#166)

Changed

  • Drop non-standard Error/Cause fields (#167)

0.9.0 - 2024-02-19

Changed

  • Default to wait indefinitely (#157)
  • Create docker runners factory and add scheme (#152)
  • Add a watch method to Workflow::Runner for event driven updates (#95)

Fixed

  • Fix waiting on extremely short durations (#160)
  • Fix wait state missing finish (#159)

0.8.0 - 2024-01-17

Added

  • Add CLI shorthand options for docker runner (#147)
  • Run multiple workflows in exe/floe (#149)
  • Add secure options for passing credentials via command-line (#151)
  • Add a Docker Runner pull-policy option (#155)

Fixed

  • Fix podman with empty output (#150)
  • Fix run_container logger saying docker when using podman (#154)
  • Ensure that workflow credentials is not-nil (#156)

0.7.0 - 2023-12-18

Changed

  • Remove the dependency on more_core_extensions in ReferencePath (#144)

Added

  • Implement ReferencePath#get (#144)
  • Allow a State to set a value in Credentials for subsequent states (#145)

0.6.1 - 2023-11-21

Fixed

  • Return an error payload if run_async! fails (#143)

Changed

  • Extract run_container_params for docker/podman (#142)

0.6.0 - 2023-11-09

Added

  • Prefix pod names with 'floe-' (#132)
  • Validate that the workflow payload is correct (#136)

Fixed

  • Fix issue where certain docker image names cannot be pod names (#134)
  • Fix uninitialized constant RSpec::Support::Differ in tests (#137)
  • Handle ImagePullErr/ImagePullBackOff as errors (#135)

Changed

  • Add task spec helper (#123)
  • Rename State#run_wait to just #wait (#139)
  • Refactor the Podman runner to be a Docker subclass (#140)

0.5.0 - 2023-10-12

Added

  • For task errors, use the json on the last line (#128)
  • Add ability to pass task service account to kube runner (#131)

Fixed

  • Don't put credentials file into input (#124)
  • exe/floe return success status if the workflow was successful (#129)
  • For error output, drop trailing newline (#126)

0.4.1 - 2023-10-06

Added

  • Add Fail#CausePath and Fail#ErrorPath (#110)
  • Add Task#Retrier incremental backoff and Wait#Timestamp (#100)

Fixed

  • Combine stdout and stderr for docker and podman runners (#104)
  • Don't raise an exception on task failure (#115)
  • Fix task output handling (#112)
  • Fix Context#input not JSON parsed (#122)

0.4.0 - 2023-09-26

Added

  • Add ability to run workflows asynchronously (#52)
  • Add Workflow.wait, Workflow#step_nonblock, Workflow#step_nonblock_wait (#92)

0.3.1 - 2023-08-29

Added

  • Add more global podman runner options (#90)

0.3.0 - 2023-08-07

Added

  • Add --network=host option to Docker/Podman runners (#81)

Fixed

  • Fix PayloadTemplate value transformation rules (#78)
  • Move end out of the root state node (#80)

0.2.3 - 2023-07-28

Fixed

  • Fix storing next_state in Context (#76)

0.2.2 - 2023-07-24

Fixed

  • Don't pick up real KUBECONFIG for tests (#73)
  • Fix double json.parse and context default value (#69)

Added

  • Configure Renovate (#46)

Changed

  • Simplify next state handling (#66)
  • Refactor Input/Output path handling (#68)

0.2.1 - 2023-07-12

Fixed

  • Fix State EnteredTime and FinishedTime (#59)

Added

  • Add workflow output (#57)

0.2.0 - 2023-07-05

Added

  • Add ability to pass options to Floe::Workflow::Runner (#48)
  • Add kubeconfig file support to Floe::Workflow::Runner::Kubernetes (#53)

Removed

  • Remove to_dot/to_svg code (#54)

Fixed

  • Fixed default rake task to spec (#55)

0.1.1 - 2023-06-05

Fixed

  • Fix States::Wait Path initializer arguments (#47)

0.1.0 - 2023-03-13

Added

  • Initial release