camunda-bpmn-js 0.11.4 → 0.12.2

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.
Files changed (27) hide show
  1. package/CHANGELOG.md +22 -5
  2. package/dist/base-modeler.development.js +89 -1060
  3. package/dist/base-modeler.production.min.js +3 -3
  4. package/dist/camunda-cloud-modeler.development.js +734 -1570
  5. package/dist/camunda-cloud-modeler.production.min.js +3 -3
  6. package/dist/camunda-platform-modeler.development.js +291 -1354
  7. package/dist/camunda-platform-modeler.production.min.js +3 -3
  8. package/lib/camunda-cloud/features/modeling/behavior/CleanUpAssignmentDefinitionBehavior.js +78 -0
  9. package/lib/camunda-cloud/features/modeling/behavior/CleanUpBusinessRuleTaskBehavior.js +112 -0
  10. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeBoundaryEventBehavior.js +51 -55
  11. package/lib/camunda-cloud/features/modeling/behavior/CreateZeebeCallActivityBehavior.js +56 -59
  12. package/lib/camunda-cloud/features/modeling/behavior/FormDefinitionBehavior.js +69 -127
  13. package/lib/camunda-cloud/features/modeling/behavior/UpdatePropagateAllChildVariablesBehavior.js +76 -128
  14. package/lib/camunda-cloud/features/modeling/behavior/index.js +6 -0
  15. package/lib/camunda-cloud/features/properties-provider/parts/implementation/InputOutput.js +21 -7
  16. package/lib/camunda-cloud/features/rules/BpmnRules.js +1 -1
  17. package/lib/camunda-cloud/helper/CalledElementHelper.js +43 -41
  18. package/lib/camunda-cloud/helper/FormsHelper.js +38 -50
  19. package/lib/camunda-cloud/helper/InputOutputHelper.js +92 -106
  20. package/lib/camunda-platform/features/modeling/behavior/DeleteErrorEventDefinitionBehavior.js +24 -47
  21. package/lib/camunda-platform/features/modeling/behavior/DeleteRetryTimeCycleBehavior.js +39 -81
  22. package/lib/camunda-platform/features/modeling/behavior/UpdateCamundaExclusiveBehavior.js +31 -65
  23. package/lib/camunda-platform/features/modeling/behavior/UpdateInputOutputBehavior.js +42 -76
  24. package/lib/camunda-platform/features/modeling/behavior/UpdateResultVariableBehavior.js +21 -26
  25. package/lib/camunda-platform/features/modeling/behavior/UserTaskFormsBehavior.js +16 -10
  26. package/lib/camunda-platform/helper/InputOutputHelper.js +29 -0
  27. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -6,18 +6,35 @@ All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn
6
6
 
7
7
  ___Note:__ Yet to be released changes appear here._
8
8
 
9
- ## 0.11.4
9
+ ## 0.12.2
10
10
 
11
- ### BPMN
11
+ * `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
12
+ remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
12
13
 
13
- * `FIX`: gracefully handle incompatible properties providers
14
- * `FIX`: re-use ID of a copied element if available
14
+ ## 0.12.1
15
+
16
+ * `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
17
+
18
+ ## 0.12.0
19
+
20
+ * `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
21
+ `zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
22
+ * `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
23
+ * `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
15
24
 
16
- ### General
25
+ ## 0.11.5
17
26
 
27
+ * `FIX`: correct assignment of IDs when pasting multiple times
28
+ * `DEPS`: update to `bpmn-js@8.8.2`
29
+
30
+ ## 0.11.4
31
+
32
+ * `FIX`: gracefully handle incompatible properties providers
33
+ * `FIX`: re-use ID of a copied element if available
18
34
  * `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
19
35
  * `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
20
36
  * `DEPS`: update to `bpmn-js@8.8.1`
37
+ * `DEPS`: update to `diagram-js@7.5.0`
21
38
 
22
39
  ## 0.11.3
23
40