bpmn-elements 8.0.0 → 8.0.1
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
CHANGED
|
@@ -804,7 +804,6 @@ proto._continueRunMessage = function continueRunMessage(routingKey, message) {
|
|
|
804
804
|
if (this.status === 'end') break;
|
|
805
805
|
this[kCounters].taken++;
|
|
806
806
|
this.status = 'end';
|
|
807
|
-
if (isRedelivered) break;
|
|
808
807
|
return this._doRunLeave(message, false, () => {
|
|
809
808
|
this._publishEvent('end', content, {
|
|
810
809
|
correlationId
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bpmn-elements",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.1",
|
|
4
4
|
"description": "Executable workflow elements based on BPMN 2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "index.js",
|
|
@@ -47,9 +47,9 @@
|
|
|
47
47
|
],
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@aircall/expression-parser": "^1.0.4",
|
|
50
|
-
"@babel/cli": "^7.17.
|
|
51
|
-
"@babel/core": "^7.
|
|
52
|
-
"@babel/preset-env": "^7.
|
|
50
|
+
"@babel/cli": "^7.17.10",
|
|
51
|
+
"@babel/core": "^7.18.5",
|
|
52
|
+
"@babel/preset-env": "^7.18.2",
|
|
53
53
|
"@babel/register": "^7.17.7",
|
|
54
54
|
"bpmn-moddle": "^7.1.2",
|
|
55
55
|
"camunda-bpmn-moddle": "^6.1.2",
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"chronokinesis": "^3.0.0",
|
|
58
58
|
"debug": "^4.3.4",
|
|
59
59
|
"eslint": "^7.32.0",
|
|
60
|
-
"got": "^11.8.
|
|
60
|
+
"got": "^11.8.5",
|
|
61
61
|
"mocha": "^9.2.2",
|
|
62
62
|
"mocha-cakes-2": "^3.3.0",
|
|
63
63
|
"moddle-context-serializer": "^2.1.0",
|
|
64
|
-
"nock": "^13.2.
|
|
64
|
+
"nock": "^13.2.6",
|
|
65
65
|
"nyc": "^15.1.0"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"iso8601-duration": "^1.
|
|
68
|
+
"iso8601-duration": "^2.1.1",
|
|
69
69
|
"smqp": "^6.0.0"
|
|
70
70
|
}
|
|
71
71
|
}
|
package/src/activity/Activity.js
CHANGED
|
@@ -666,8 +666,6 @@ proto._continueRunMessage = function continueRunMessage(routingKey, message) {
|
|
|
666
666
|
|
|
667
667
|
this.status = 'end';
|
|
668
668
|
|
|
669
|
-
if (isRedelivered) break;
|
|
670
|
-
|
|
671
669
|
return this._doRunLeave(message, false, () => {
|
|
672
670
|
this._publishEvent('end', content, {correlationId});
|
|
673
671
|
if (!step) message.ack();
|