Releases: Clever/workflow-manager
Releases · Clever/workflow-manager
0.6.4
0.6.4
0.6.3
0.6.3
v0.6.1
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 thename
andversion
fields.
v0.5.0
- adds
namespace
,queue
, andinput
to theWorkflow
model, so that any non-nil values for these will be included in thePOST /workflows
(StartWorkflow
) response as well as any other response that sends back aWorkflow
. - renames
WorkflowInput
toStartWorkflowRequest
to avoid confusion withWorkflow.Input
and to better matchNewWorkflowDefinitionRequest
- changes the type of the input from
[]interface{}
to[]string
- gives the
queue
parameter forStartWorkflowRequest
objects a default value --"default"
-- that we return when a user doesn't specify a queue - renames
WorkflowDefinition.Revision
toWorkflowDefinition.Version