camunda-bpmn-js 0.13.2 → 0.15.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 +280 -256
- package/LICENSE +20 -20
- package/README.md +84 -84
- package/dist/assets/base-modeler.css +4 -4
- package/dist/assets/base-navigated-viewer.css +1 -1
- package/dist/assets/base-viewer.css +1 -1
- package/dist/assets/bpmn-js.css +32 -4
- package/dist/assets/camunda-cloud-modeler.css +1 -1
- package/dist/assets/camunda-platform-modeler.css +1 -1
- package/dist/assets/diagram-js.css +55 -51
- package/dist/assets/element-templates.css +4 -0
- package/dist/assets/properties-panel.css +929 -900
- package/dist/base-modeler.development.js +7098 -6259
- package/dist/base-modeler.production.min.js +4 -4
- package/dist/base-navigated-viewer.development.js +21592 -21216
- package/dist/base-navigated-viewer.production.min.js +3 -2
- package/dist/base-viewer.development.js +20793 -20417
- package/dist/base-viewer.production.min.js +3 -2
- package/dist/camunda-cloud-modeler.development.js +9667 -8627
- package/dist/camunda-cloud-modeler.production.min.js +4 -4
- package/dist/camunda-cloud-navigated-viewer.development.js +689 -368
- package/dist/camunda-cloud-navigated-viewer.production.min.js +2 -2
- package/dist/camunda-cloud-viewer.development.js +688 -367
- package/dist/camunda-cloud-viewer.production.min.js +2 -2
- package/dist/camunda-platform-modeler.development.js +7571 -6674
- package/dist/camunda-platform-modeler.production.min.js +4 -4
- package/dist/camunda-platform-navigated-viewer.development.js +667 -261
- package/dist/camunda-platform-navigated-viewer.production.min.js +2 -2
- package/dist/camunda-platform-viewer.development.js +666 -260
- package/dist/camunda-platform-viewer.production.min.js +2 -2
- package/lib/base/Modeler.js +46 -46
- package/lib/base/NavigatedViewer.js +2 -2
- package/lib/base/Viewer.js +2 -2
- package/lib/camunda-cloud/Modeler.js +68 -68
- package/lib/camunda-cloud/NavigatedViewer.js +34 -34
- package/lib/camunda-cloud/Viewer.js +34 -34
- package/lib/camunda-cloud/features/context-pad/ContextPadOptions.js +15 -15
- package/lib/camunda-cloud/features/context-pad/index.js +6 -6
- package/lib/camunda-cloud/features/drilldown/index.js +3 -3
- package/lib/camunda-cloud/features/palette/PaletteOptions.js +14 -14
- package/lib/camunda-cloud/features/palette/PaletteProvider.js +31 -31
- package/lib/camunda-cloud/features/palette/index.js +6 -6
- package/lib/camunda-cloud/features/popup-menu/ReplaceMenuProvider.js +71 -71
- package/lib/camunda-cloud/features/popup-menu/ReplaceOptions.js +46 -46
- package/lib/camunda-cloud/features/popup-menu/index.js +6 -6
- package/lib/camunda-cloud/features/rules/BpmnRules.js +137 -137
- package/lib/camunda-cloud/features/rules/index.js +5 -5
- package/lib/camunda-cloud/util/commonModules.js +13 -13
- package/lib/camunda-platform/Modeler.js +46 -46
- package/lib/camunda-platform/NavigatedViewer.js +25 -25
- package/lib/camunda-platform/Viewer.js +24 -24
- package/lib/camunda-platform/util/commonModules.js +6 -6
- package/lib/util/ExtensionElementsUtil.js +59 -59
- package/package.json +110 -109
- package/styles/base-modeler.css +4 -4
- package/styles/base-navigated-viewer.css +1 -1
- package/styles/base-viewer.css +1 -1
- package/styles/camunda-cloud-modeler.css +1 -1
- package/styles/camunda-platform-modeler.css +1 -1
- package/util/index.js +39 -39
package/CHANGELOG.md
CHANGED
|
@@ -1,256 +1,280 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn-js) are documented here. We use [semantic versioning](http://semver.org/) for releases.
|
|
4
|
-
|
|
5
|
-
## Unreleased
|
|
6
|
-
|
|
7
|
-
___Note:__ Yet to be released changes appear here._
|
|
8
|
-
|
|
9
|
-
## 0.
|
|
10
|
-
|
|
11
|
-
* `DEPS`: update to `bpmn-js
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
* `
|
|
17
|
-
* `
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
* `FIX`:
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
* `
|
|
31
|
-
* `
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
* `
|
|
41
|
-
* `
|
|
42
|
-
* `
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
* `
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
* `
|
|
65
|
-
* `
|
|
66
|
-
* `
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
* `FEAT`:
|
|
71
|
-
* `
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
* `
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
* `
|
|
89
|
-
* `
|
|
90
|
-
* `
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
* `FEAT`: add
|
|
95
|
-
* `
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
* `DEPS`: update to
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
* `
|
|
105
|
-
* `
|
|
106
|
-
* `DEPS`: update to `
|
|
107
|
-
|
|
108
|
-
## 0.13.0-alpha.
|
|
109
|
-
|
|
110
|
-
* `FEAT`:
|
|
111
|
-
* `DEPS`:
|
|
112
|
-
* `DEPS`: update to
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
* `
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
* `
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
* `
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
* `FIX`:
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
* `
|
|
170
|
-
* `
|
|
171
|
-
* `
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
* `
|
|
176
|
-
* `
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
* `
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
* `DEPS`:
|
|
190
|
-
|
|
191
|
-
## 0.
|
|
192
|
-
|
|
193
|
-
* `
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
* `
|
|
198
|
-
* `
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
* `
|
|
203
|
-
* `
|
|
204
|
-
* `DEPS`:
|
|
205
|
-
* `DEPS`:
|
|
206
|
-
|
|
207
|
-
## 0.
|
|
208
|
-
|
|
209
|
-
* `DEPS`:
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
* `
|
|
229
|
-
* `
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
* `
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
* `
|
|
241
|
-
|
|
242
|
-
## 0.2
|
|
243
|
-
|
|
244
|
-
* `
|
|
245
|
-
|
|
246
|
-
## 0.1
|
|
247
|
-
|
|
248
|
-
*
|
|
249
|
-
|
|
250
|
-
## 0.
|
|
251
|
-
|
|
252
|
-
* `
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn-js) are documented here. We use [semantic versioning](http://semver.org/) for releases.
|
|
4
|
+
|
|
5
|
+
## Unreleased
|
|
6
|
+
|
|
7
|
+
___Note:__ Yet to be released changes appear here._
|
|
8
|
+
|
|
9
|
+
## 0.15.1
|
|
10
|
+
|
|
11
|
+
* `DEPS`: update to `bpmn-js@9.3.1`
|
|
12
|
+
|
|
13
|
+
## 0.15.0
|
|
14
|
+
|
|
15
|
+
* `DEPS`: update to `bpmn-js@9.3.0`
|
|
16
|
+
* `DEPS`: update to `diagram-js@8.7.0`
|
|
17
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.2.0`
|
|
18
|
+
|
|
19
|
+
## 0.14.0
|
|
20
|
+
|
|
21
|
+
* `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.2.0`
|
|
22
|
+
|
|
23
|
+
### Key changes in Modeling
|
|
24
|
+
|
|
25
|
+
* `FEAT`: enforce rectangular element template icon size ([#4](https://github.com/bpmn-io/element-templates-icons-renderer/issues/4))
|
|
26
|
+
* `FIX`: remove `label` property on empty label ([#1637](https://github.com/bpmn-io/bpmn-js/issues/1637))
|
|
27
|
+
* `FIX`: create drilldown overlays on `viewer.open` ([`574a67438`](https://github.com/bpmn-io/bpmn-js/commit/574a674381d6449b509396b6d17c4ca94674ea1c))
|
|
28
|
+
* `FIX`: render data association inside collapsed sub-processes ([#1619](https://github.com/bpmn-io/bpmn-js/issues/1619))
|
|
29
|
+
* `FIX`: preserve multi-instance properties when toggling between parallel and sequential ([#1581](https://github.com/bpmn-io/bpmn-js/issues/1581))
|
|
30
|
+
* `FIX`: correct hanging sequence flow label after collapsing sub-process ([#1617](https://github.com/bpmn-io/bpmn-js/issues/1617))
|
|
31
|
+
* `FIX`: correct start event not added to newly created sub-process ([#1631](https://github.com/bpmn-io/bpmn-js/issues/1631))
|
|
32
|
+
|
|
33
|
+
## 0.13.2
|
|
34
|
+
|
|
35
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.1.1`
|
|
36
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.13.2`
|
|
37
|
+
|
|
38
|
+
### Key changes in Properties Panel
|
|
39
|
+
|
|
40
|
+
* `FIX`: remove unnecessary scroll padding ([#145](https://github.com/bpmn-io/properties-panel/pull/145))
|
|
41
|
+
* `FIX`: keep existing configuration after template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
|
|
42
|
+
* `FIX`: always override `hidden` configuration on template apply ([#661](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/661))
|
|
43
|
+
* `FIX`: do not render non-existing values in element template ([#676](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/676))
|
|
44
|
+
* `FIX`: pick-up correct element template icon ([#670](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/670))
|
|
45
|
+
|
|
46
|
+
## 0.13.1
|
|
47
|
+
|
|
48
|
+
_Re-publish of v0.13.0 with fixed distro._
|
|
49
|
+
|
|
50
|
+
* `FIX`: fix distro on Windows ([#125](https://github.com/camunda/camunda-bpmn-js/pull/125))
|
|
51
|
+
|
|
52
|
+
## 0.13.0
|
|
53
|
+
|
|
54
|
+
* `FEAT`: add viewer distributions ([#115](https://github.com/camunda/camunda-bpmn-js/pull/115))
|
|
55
|
+
* `CHORE`: import behaviors from camunda-bpmn-js-behaviors ([#116](https://github.com/camunda/camunda-bpmn-js/pull/116))
|
|
56
|
+
* `DEPS`: update to `bpmn-js-disable-collapsed-subprocess@0.1.4` ([#112](https://github.com/camunda/camunda-bpmn-js/pull/112))
|
|
57
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.1.0` ([03b659](https://github.com/camunda/camunda-bpmn-js/pull/123/commits/03b659da729364abf97ccc2dba421d83e9f5c48e))
|
|
58
|
+
|
|
59
|
+
## 0.13.0-alpha.8
|
|
60
|
+
|
|
61
|
+
* `FEAT`: support element template custom icons ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
62
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.12` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
63
|
+
* `DEPS`: update to `diagram-js@8.2.1` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
64
|
+
* `DEPS`: update to `camunda-bpmn-moddle@6.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
65
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.12.0` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
66
|
+
* `DEPS`: update to `@bpmn-io/element-templates-icons-renderer@0.1.2` ([#108](https://github.com/camunda/camunda-bpmn-js/pull/108))
|
|
67
|
+
|
|
68
|
+
### Key changes in Properties Panel
|
|
69
|
+
|
|
70
|
+
* `FEAT`: apply element template icons ([#641](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/641))
|
|
71
|
+
* `FEAT`: change task type when element template is applied ([#648](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/648))
|
|
72
|
+
* `FEAT`: display element template icons in header ([#650](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/650))
|
|
73
|
+
|
|
74
|
+
## 0.13.0-alpha.7
|
|
75
|
+
|
|
76
|
+
_Re-publish of v0.13.0-alpha.6 with fixed distro._
|
|
77
|
+
|
|
78
|
+
* `FIX`: update peer dependencies ([#103](https://github.com/camunda/camunda-bpmn-js/pull/103))
|
|
79
|
+
|
|
80
|
+
## 0.13.0-alpha.6
|
|
81
|
+
|
|
82
|
+
* `FIX`: set $parent when creating zeebe:CalledElement element ([#99](https://github.com/camunda/camunda-bpmn-js/pull/99))
|
|
83
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.13.1`
|
|
84
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.9`
|
|
85
|
+
|
|
86
|
+
### Key changes in Properties Panel
|
|
87
|
+
|
|
88
|
+
* `FEAT`: allow showing entries and errors through events ([#137](https://github.com/bpmn-io/properties-panel/pull/137))
|
|
89
|
+
* `FEAT`: allow opening groups per default ([#139](https://github.com/bpmn-io/properties-panel/pull/139))
|
|
90
|
+
* `FEAT`: add documentation ref ([#141](https://github.com/bpmn-io/properties-panel/pull/141))
|
|
91
|
+
* `FEAT`: add show callbacks to show entries and errors ([#601](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/601))
|
|
92
|
+
* `FEAT`: open element template custom groups ([#621](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/621))
|
|
93
|
+
* `FEAT`: display template name in header ([#627](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/627))
|
|
94
|
+
* `FEAT`: add documentation ref to header ([#629](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/629))
|
|
95
|
+
* `FIX`: copy versioned element template ([#632](https://github.com/bpmn-io/bpmn-js-properties-panel/pull/632))
|
|
96
|
+
|
|
97
|
+
## 0.13.0-alpha.5
|
|
98
|
+
|
|
99
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.12.0`
|
|
100
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.7`
|
|
101
|
+
|
|
102
|
+
## 0.13.0-alpha.4
|
|
103
|
+
|
|
104
|
+
* `FIX`: move properties panel deps to peer dependencies
|
|
105
|
+
* `CHORE`: add prepare script
|
|
106
|
+
* `DEPS`: update to `bpmn-js@9.0.3`
|
|
107
|
+
|
|
108
|
+
## 0.13.0-alpha.3
|
|
109
|
+
|
|
110
|
+
* `FEAT`: add cloud element templates ([#95](https://github.com/camunda/camunda-bpmn-js/pull/95))
|
|
111
|
+
* `DEPS`: update to `bpmn-js@9.0.2`
|
|
112
|
+
* `DEPS`: update to `@bpmn-io/properties-panel@0.11.0`
|
|
113
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.5`
|
|
114
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.11.0`
|
|
115
|
+
|
|
116
|
+
## 0.13.0-alpha.2
|
|
117
|
+
|
|
118
|
+
* `FEAT`: add support for drilldown ([#89](https://github.com/camunda/camunda-bpmn-js/pull/89))
|
|
119
|
+
* `CHORE`: refactor behaviors to only use modeling API ([#91](https://github.com/camunda/camunda-bpmn-js/pull/91))
|
|
120
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.3` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
|
|
121
|
+
* `DEPS`: update to `bpmn-js@9.0.0-alpha.2` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
|
|
122
|
+
* `DEPS`: update to `diagram-js-minimap@2.1.0` ([68c344](https://github.com/camunda/camunda-bpmn-js/commit/68c344f270405716e514c3947c98dee293877c7f))
|
|
123
|
+
* `DEPS`: update to `diagram-js@8.1.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
|
|
124
|
+
|
|
125
|
+
## 0.13.0-alpha.1
|
|
126
|
+
|
|
127
|
+
* `FEAT`: include documentation fields in properties panel for Camunda Cloud ([#83](https://github.com/camunda/camunda-bpmn-js/issues/83))
|
|
128
|
+
* `DEPS`: update to `bpmn-js-properties-panel@1.0.0-alpha.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
|
|
129
|
+
* `DEPS`: update to `bpmn-js@8.9.1` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
|
|
130
|
+
* `DEPS`: update to `diagram-js@7.8.2` ([faf55e](https://github.com/camunda/camunda-bpmn-js/commit/faf55e958e7b8faf57a6b3cf0a8e6b496e59266d))
|
|
131
|
+
|
|
132
|
+
## 0.13.0-alpha.0
|
|
133
|
+
|
|
134
|
+
* `FEAT`: support Zeebe 1.3 features ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
|
|
135
|
+
* `DEPS`: migrate to `bpmn-js-properties-panel@1.0.0-alpha.0` ([#71](https://github.com/camunda/camunda-bpmn-js/issues/71))
|
|
136
|
+
* `DEPS`: update to `bpmn-js@8.8.3` ([#74](https://github.com/camunda/camunda-bpmn-js/pull/74))
|
|
137
|
+
|
|
138
|
+
### Breaking Changes
|
|
139
|
+
|
|
140
|
+
* Extensions to `bpmn-js-properties-panel@0.x` no longer work with the `1.x` series.
|
|
141
|
+
Read [the project's changelog for details](https://github.com/bpmn-io/bpmn-js-properties-panel/blob/next/CHANGELOG.md#breaking-changes).
|
|
142
|
+
|
|
143
|
+
## 0.12.2
|
|
144
|
+
|
|
145
|
+
* `FEAT`: behavior for Cloud to ensure that no empty `zeebe:AssignmentDefinitions`
|
|
146
|
+
remain in the model after modeling or propertyPanel operations ([e26c486](https://github.com/camunda/camunda-bpmn-js/commit/e26c486bac3b54202fdf6c2b09d64483b52a2298))
|
|
147
|
+
|
|
148
|
+
## 0.12.1
|
|
149
|
+
|
|
150
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.10.0`
|
|
151
|
+
|
|
152
|
+
## 0.12.0
|
|
153
|
+
|
|
154
|
+
* `FEAT`: behavior for Cloud to ensure that `bpmn:BusinessRuleTask`s only have a `zeebe:CalledDecision` or
|
|
155
|
+
`zeebe:TaskDefinition`/`zeebe:TaskHeaders` respectively. This supports the Zeebe 1.3 release ([#65](https://github.com/camunda/camunda-bpmn-js/issues/65))
|
|
156
|
+
* `FIX`: use relative import path in library code ([b5a696](https://github.com/camunda/camunda-bpmn-js/commit/b5a696bf36f8b6592d6bf3d92ed33c26c63d68f7))
|
|
157
|
+
* `CHORE`: refactor behaviors and helpers ([85573a](https://github.com/camunda/camunda-bpmn-js/commit/85573afe1653bffc2e1387da91076fb0cbe79345))
|
|
158
|
+
|
|
159
|
+
## 0.11.5
|
|
160
|
+
|
|
161
|
+
* `FIX`: correct assignment of IDs when pasting multiple times
|
|
162
|
+
* `DEPS`: update to `bpmn-js@8.8.2`
|
|
163
|
+
|
|
164
|
+
## 0.11.4
|
|
165
|
+
|
|
166
|
+
* `FIX`: gracefully handle incompatible properties providers
|
|
167
|
+
* `FIX`: re-use ID of a copied element if available
|
|
168
|
+
* `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
|
|
169
|
+
* `DEPS`: update to `bpmn-js-properties-panel@0.46.0`
|
|
170
|
+
* `DEPS`: update to `bpmn-js@8.8.1`
|
|
171
|
+
* `DEPS`: update to `diagram-js@7.5.0`
|
|
172
|
+
|
|
173
|
+
## 0.11.3
|
|
174
|
+
|
|
175
|
+
* `FIX`: correctly default to `camunda:formBindingRef=latest` ([#60](https://github.com/camunda/camunda-bpmn-js/pull/60))
|
|
176
|
+
* `DEPS`: update to `camunda-bpmn-moddle@6.1.1`
|
|
177
|
+
|
|
178
|
+
## 0.11.2
|
|
179
|
+
|
|
180
|
+
* `FIX`: do not clean up recently added inputOutput ([#59](https://github.com/camunda/camunda-bpmn-js/pull/59))
|
|
181
|
+
|
|
182
|
+
## 0.11.1
|
|
183
|
+
|
|
184
|
+
* `CHORE`: ensure `dist` is built and tested before publish ([331584b4](https://github.com/camunda/camunda-bpmn-js/commit/331584b49c56841943a328761ebc7c89632f11fe))
|
|
185
|
+
|
|
186
|
+
## 0.11.0
|
|
187
|
+
|
|
188
|
+
* `DEPS`: bump to `bpmn-js-properties-panel@0.45.0`
|
|
189
|
+
* `DEPS`: bump to `camunda-bpmn-moddle@v6.1.0`
|
|
190
|
+
|
|
191
|
+
## 0.10.0
|
|
192
|
+
|
|
193
|
+
* `FEAT`: update properties panel for Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#55](https://github.com/camunda/camunda-bpmn-js/pull/55))
|
|
194
|
+
* `FEAT`: allow replace with Message Intermediate Throw Event and Message End Event for Cloud Modeler to support Zeebe 1.2 ([#50](https://github.com/camunda/camunda-bpmn-js/pull/50))
|
|
195
|
+
* `FEAT`: allow replace with Manual Task for Cloud Modeler to support Zeebe 1.2 ([#49](https://github.com/camunda/camunda-bpmn-js/pull/49))
|
|
196
|
+
* `FEAT`: add behavior to clean up empty `camunda:inputOutput` elements ([#39](https://github.com/camunda/camunda-bpmn-js/pull/39))
|
|
197
|
+
* `FEAT`: configure either `camunda:formKey` or `formRef` ([#37](https://github.com/camunda/camunda-bpmn-js/pull/37))
|
|
198
|
+
* `FEAT`: add behavior to delete error event definition ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
|
|
199
|
+
* `FEAT`: add behavior to update result variable ([#34](https://github.com/camunda/camunda-bpmn-js/pull/34))
|
|
200
|
+
* `FEAT`: delete `camunda:jobRetryTimeCycle` when async is disabled ([#33](https://github.com/camunda/camunda-bpmn-js/pull/33))
|
|
201
|
+
* `FEAT`: set `camunda:exlusive flag` to true when async is disabled ([#31](https://github.com/camunda/camunda-bpmn-js/pull/31))
|
|
202
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.8.0`
|
|
203
|
+
* `DEPS`: update to `camunda-bpmn-moddle@6.0.0`
|
|
204
|
+
* `DEPS`: update to `bpmn-js@8.7.3`
|
|
205
|
+
* `DEPS`: update dev dependencies
|
|
206
|
+
|
|
207
|
+
## 0.9.3
|
|
208
|
+
|
|
209
|
+
* `DEPS`: update to `zeebe-bpmn-moddle@0.7.1`
|
|
210
|
+
|
|
211
|
+
## 0.9.2
|
|
212
|
+
|
|
213
|
+
* `DEPS`: update to `bpmn-js-properties-panel@0.44.0`
|
|
214
|
+
|
|
215
|
+
## 0.9.1
|
|
216
|
+
|
|
217
|
+
* `DEPS`: update to `bpmn-js@8.7.1`
|
|
218
|
+
|
|
219
|
+
## 0.9.0
|
|
220
|
+
|
|
221
|
+
* `DEPS`: update to `bpmn-js@8.7.0`
|
|
222
|
+
* `DEPS`: update to `bpmn-js-properties-panel@0.43.1`
|
|
223
|
+
|
|
224
|
+
## 0.8.0
|
|
225
|
+
|
|
226
|
+
* `FEAT`: support business rule, send, and script tasks in Cloud Modeler ([#27](https://github.com/camunda/camunda-bpmn-js/pull/27))
|
|
227
|
+
* `FIX`: allow to pass expression as `bpmn:CallActivity#processId` in Cloud Modeler ([#28](https://github.com/camunda/camunda-bpmn-js/pull/28))
|
|
228
|
+
* `DEPS`: bump to `bpmn-js@8.6.1`
|
|
229
|
+
* `DEPS`: bump to `zeebe-bpmn-moddle@0.7.0`
|
|
230
|
+
|
|
231
|
+
## 0.7.0
|
|
232
|
+
|
|
233
|
+
* `DEPS`: bump to `bpmn-js@8.5.0`
|
|
234
|
+
* `DEPS`: bump to `bpmn-js-properties-panel@0.43.0`
|
|
235
|
+
* `DEPS`: bump to `diagram-js@7.3.0`
|
|
236
|
+
* `DEPS`: bump to `zeebe-bpmn-moddle@0.6.0`
|
|
237
|
+
|
|
238
|
+
## 0.6.0
|
|
239
|
+
|
|
240
|
+
* `FEAT`: re-enable user task support for Cloud Modeler
|
|
241
|
+
|
|
242
|
+
## 0.5.2
|
|
243
|
+
|
|
244
|
+
* `CHORE`: bump to `camunda-bpmn-moddle@5.1.2`
|
|
245
|
+
|
|
246
|
+
## 0.5.1
|
|
247
|
+
|
|
248
|
+
* `CHORE`: bump to `camunda-bpmn-moddle@5.1.1`
|
|
249
|
+
|
|
250
|
+
## 0.5.0
|
|
251
|
+
|
|
252
|
+
* `CHORE`: bump to `bpmn-js-properties-panel@0.42.0`
|
|
253
|
+
* `CHORE`: bump to `camunda-bpmn-moddle@5.1.0`
|
|
254
|
+
* `CHORE`: bump to `bpmn-js@8.3.0`
|
|
255
|
+
|
|
256
|
+
## 0.4.0
|
|
257
|
+
|
|
258
|
+
* `FEAT`: disable user task support for Cloud Modeler, can be enabled via `enableZeebeUserTasks` ([`9f782028`](https://github.com/camunda/camunda-bpmn-js/commit/9f7820284154b4ab0174f8c5eb745a3060f5c1ff))
|
|
259
|
+
|
|
260
|
+
## 0.3.0
|
|
261
|
+
|
|
262
|
+
* `CHORE`: bump to `bpmn-js@8.2.1`
|
|
263
|
+
* `CHORE`: bump to `bpmn-js-properties-panel@0.41.0`
|
|
264
|
+
* `CHORE`: bump to `camunda-bpmn-moddle@5.0.0`
|
|
265
|
+
|
|
266
|
+
## 0.2.0
|
|
267
|
+
|
|
268
|
+
* `FEAT`: add support for user tasks in cloud modeler ([#14](https://github.com/camunda/camunda-bpmn-js/pull/14))
|
|
269
|
+
|
|
270
|
+
## 0.1.0
|
|
271
|
+
|
|
272
|
+
*Republish of `v0.1.0-alpha.1`*.
|
|
273
|
+
|
|
274
|
+
## 0.1.0-alpha.1
|
|
275
|
+
|
|
276
|
+
* `FIX`: resolve moddle descriptors explicitly ([#11](https://github.com/camunda/camunda-bpmn-js/issues/11))
|
|
277
|
+
|
|
278
|
+
## 0.1.0-alpha.0
|
|
279
|
+
|
|
280
|
+
* `CHORE`: first release 🎉
|
package/LICENSE
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
The MIT License (MIT)
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2021-present Camunda Services GmbH
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
|
13
|
-
all copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021-present Camunda Services GmbH
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
|
13
|
+
all copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
21
21
|
THE SOFTWARE.
|