Skip to content

Releases: OpusCapita/fsm-workflow

3.0.1

28 Sep 06:56
Compare
Choose a tag to compare

3.0.0

28 Sep 06:15
Compare
Choose a tag to compare

2.2.10

16 Sep 08:29
Compare
Choose a tag to compare

2.2.9

30 Mar 06:03
Compare
Choose a tag to compare

2.2.8

17 Apr 06:52
Compare
Choose a tag to compare

See changelog and completed issues

API changes

2730ac6

Added ability to specify release guards per state according to #90. Example:

schema: {
  states: [
    { 
      name: "open",
      description: "Open",
      release: [              // this section is new  
        {
          to: "approved"      // optional
          guards: [...]       // the same what we have in transitions
        },
        ...
      ]
    }
  ]
}

df6476a

Added new configuration property for editor:

schemaConfig = {
    state: {
      releaseGuards: {
        toState: 'single' // all, single, multiple (default)
    },
  }
}

See issue for details about these options.

2.2.7

08 Apr 08:07
Compare
Choose a tag to compare

2.2.6

18 Dec 14:04
Compare
Choose a tag to compare

See changelog and completed issues

Schema changes

af1f603

Added index in database in fsm-workflow-history for column businessObjId to improve performance of history requests.

2.2.5

03 Oct 13:54
Compare
Choose a tag to compare

2.2.4

02 Oct 08:21
Compare
Choose a tag to compare

2.2.2

29 Aug 11:51
Compare
Choose a tag to compare