Skip to content

Releases: bigbank-as/go_camunda_client

FindProcess caters array stucts

13 Oct 10:47
Compare
Choose a tag to compare
Merge pull request #11 from bigbank-as/feature/FIP-findProcess

Update findProcess to use array struct

Find process

29 Sep 12:38
Compare
Choose a tag to compare

Added method to find process by query

FindProcess(query string) ([]ProcessInstance, error)

Get process/task variables

13 Mar 13:20
Compare
Choose a tag to compare

Added 2 new methods to camunda client interface :

  • GetProcessVariable(processId string, variableName string) (VariableResponse, error)
  • GetTaskVariable(taskId string, variableName string) (VariableResponse, error)

Camunda client v0.3

01 Dec 08:20
Compare
Choose a tag to compare

Adding support for completing with new interface method:

CompleteTask(taskId string, request interface{}) (error)

Camunda client v0.2

14 Nov 11:40
Compare
Choose a tag to compare

Changes:
Added 2 new methods to camunda client interface :

GetNextTask(processId string) (Task, error)
GetAllTasks(processId string) ([]Task, error)

These methods should be used to retrieve next steps from camunda process.

Feature to start process in camunda

24 Oct 17:37
Compare
Choose a tag to compare
Merge pull request #2 from bigbank-as/feature/camunda-start-task

Change library namespace