Skip to content

Releases: Clever/workflow-manager

0.6.4

13 Oct 22:00
Compare
Choose a tag to compare

0.6.4

0.6.3

12 Oct 23:14
Compare
Choose a tag to compare

0.6.3

v0.6.1

03 Oct 00:38
Compare
Choose a tag to compare

Added optional ?summaryOnly=[true|false] query param to the GET /workflows endpoint.

Limits the amount of workflow data returned to help reduce the memory footprint for clients paging through large numbers of workflows:

  • Strips out Workflow.jobs data.
  • Limits Workflow.workflowDefinition to just the name and version fields.

v0.5.0

22 Sep 19:48
Compare
Choose a tag to compare
v0.5.0 Pre-release
Pre-release
  • adds namespace, queue, and input to the Workflow model, so that any non-nil values for these will be included in the POST /workflows (StartWorkflow) response as well as any other response that sends back a Workflow.
  • renames WorkflowInput to StartWorkflowRequest to avoid confusion with Workflow.Input and to better match NewWorkflowDefinitionRequest
  • changes the type of the input from []interface{} to []string
  • gives the queue parameter for StartWorkflowRequest objects a default value -- "default" -- that we return when a user doesn't specify a queue
  • renames WorkflowDefinition.Revision to WorkflowDefinition.Version