bpmn-engine 14.0.0 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/README.md +3 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,16 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
# 14.1.0
|
|
5
|
+
|
|
6
|
+
- Bump [`bpmn-elements@8.1.0`](https://github.com/paed01/bpmn-elements/blob/master/CHANGELOG.md) with support for bound non-interrupting repeating timeCycle
|
|
7
|
+
|
|
4
8
|
# 14.0.0
|
|
5
9
|
|
|
6
10
|
## Breaking
|
|
7
11
|
- Engine is prototyped, can still be invoked without new
|
|
8
12
|
- Bump [`bpmn-elements@8.0.0`](https://github.com/paed01/bpmn-elements/blob/master/CHANGELOG.md) with support for bpmn:CallActivity (#97)
|
|
9
|
-
- Bump [`smqp@6.0.0`](https://github.com/paed01/smqp/blob/default/CHANGELOG.md)
|
|
13
|
+
- Bump [`smqp@6.0.0`](https://github.com/paed01/smqp/blob/default/CHANGELOG.md)
|
|
10
14
|
|
|
11
15
|
# 13.0.2
|
|
12
16
|
|
package/README.md
CHANGED
|
@@ -12,6 +12,7 @@ BPMN 2.0 execution engine. Open source javascript workflow engine.
|
|
|
12
12
|
- [API](/docs/API.md)
|
|
13
13
|
- [Changelog](/CHANGELOG.md)
|
|
14
14
|
- [Examples](/docs/Examples.md)
|
|
15
|
+
- [Upgrade version](/docs/Upgrade.md)
|
|
15
16
|
- [Supported elements](#supported-elements)
|
|
16
17
|
- [Debug](#debug)
|
|
17
18
|
- [Example process](#a-pretty-image-of-a-process)
|
|
@@ -25,7 +26,7 @@ The aim is to, at least, have BPMN 2.0 [core support](https://www.omg.org/bpmn/S
|
|
|
25
26
|
|
|
26
27
|
# Debug
|
|
27
28
|
|
|
28
|
-
|
|
29
|
+
This package is shipped with [debug](https://github.com/visionmedia/debug) activated with environment variable `DEBUG=bpmn-engine:*`. You can also provide your own logger.
|
|
29
30
|
|
|
30
31
|
# A pretty image of a process
|
|
31
32
|
|
|
@@ -35,4 +36,4 @@ The module uses [debug](https://github.com/visionmedia/debug) so run with enviro
|
|
|
35
36
|
|
|
36
37
|
The **bpmn-engine** resides upon the excellent library [bpmn-io/bpmn-moddle](https://github.com/bpmn-io/bpmn-moddle) developed by [bpmn.io](https://bpmn.io/)
|
|
37
38
|
|
|
38
|
-
|
|
39
|
+
All diagrams are designed with [Camunda modeler](https://camunda.com/download/modeler/).
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bpmn-engine",
|
|
3
3
|
"description": "BPMN 2.0 execution engine. Open source javascript workflow engine.",
|
|
4
|
-
"version": "14.
|
|
4
|
+
"version": "14.1.0",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/bpmn-engine.d.ts",
|
|
7
7
|
"repository": {
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
"markdown-toc": "^1.2.0",
|
|
59
59
|
"mocha": "^9.2.2",
|
|
60
60
|
"mocha-cakes-2": "^3.3.0",
|
|
61
|
-
"nock": "^13.2.
|
|
61
|
+
"nock": "^13.2.8",
|
|
62
62
|
"nyc": "^15.1.0"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"bpmn-elements": "^8.
|
|
65
|
+
"bpmn-elements": "^8.1.0",
|
|
66
66
|
"bpmn-moddle": "^7.0.4",
|
|
67
67
|
"debug": "^4.3.4",
|
|
68
68
|
"moddle-context-serializer": "^2.0.0",
|