bpmn-engine 17.1.1 → 18.0.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 +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
=========
|
|
3
3
|
|
|
4
|
+
# 18.0.0
|
|
5
|
+
|
|
6
|
+
Only breaking if multi-instance sub-process executions are inspected after sub-process run is completed. Picture a multi-instance sequential sub-process with a cardinality of 100. One hundred items in a list occupies some memory. That will not stand. Consequently, they are now removed when iteration completes and eventually collected by gc.
|
|
7
|
+
|
|
8
|
+
- Major bump [`bpmn-elements@12`](https://github.com/paed01/bpmn-elements/blob/master/CHANGELOG.md)
|
|
9
|
+
|
|
4
10
|
# 17.1.1
|
|
5
11
|
|
|
6
12
|
- Finetuning Engine.execute and Engine.resume callback arg typization by @bestmazzo
|
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": "
|
|
4
|
+
"version": "18.0.0",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/bpmn-engine.d.ts",
|
|
7
7
|
"repository": {
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"c8": "^8.0.0",
|
|
51
51
|
"camunda-bpmn-moddle": "^7.0.1",
|
|
52
52
|
"chai": "^4.3.7",
|
|
53
|
-
"chronokinesis": "^
|
|
53
|
+
"chronokinesis": "^6.0.0",
|
|
54
54
|
"eslint": "^8.45.0",
|
|
55
55
|
"markdown-toc": "^1.2.0",
|
|
56
56
|
"mocha": "^10.2.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@types/bpmn-moddle": "^5.1.6",
|
|
62
|
-
"bpmn-elements": "^
|
|
62
|
+
"bpmn-elements": "^12.0.0",
|
|
63
63
|
"bpmn-moddle": "^8.0.1",
|
|
64
64
|
"debug": "^4.3.4",
|
|
65
65
|
"moddle-context-serializer": "^4.0.0",
|