Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump modeling deps #387

Merged
merged 7 commits into from
Nov 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 26 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,35 @@ All notable changes to [camunda-bpmn-js](https://github.com/camunda/camunda-bpmn

___Note:__ Yet to be released changes appear here._

* `FEAT`: add FEEL Copilot link to FEEL popup ([#385](https://github.com/camunda/camunda-bpmn-js/pull/385))
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `[email protected]`
* `DEPS`: update to `@bpmn-io/[email protected]`
* `DEPS`: update to `[email protected]`

### Key Changes in Modeling

* `FEAT`: remove `outline` from `Viewer` modules ([bpmn-io/bpmn-js#2135](https://github.com/bpmn-io/bpmn-js/issues/2135))
* `FEAT`: make `Canvas` a focusable element ([bpmn-io/diagram-js#662](https://github.com/bpmn-io/diagram-js/pull/662))
* `FEAT`: implicit keyboard binding ([bpmn-io/diagram-js#662](https://github.com/bpmn-io/diagram-js/pull/662))
* `FIX`: prevent crash during label adjustment ([bpmn-io/bpmn-js#2239](https://github.com/bpmn-io/bpmn-js/issues/2239))
* `FIX`: keep existing loop characteristics when toggling through the replace menu ([bpmn-io/bpmn-js#2251](https://github.com/bpmn-io/bpmn-js/pull/2251))
* `FIX`: prevent covering multi selection with black box in `Viewer` ([bpmn-io/bpmn-js#2135](https://github.com/bpmn-io/bpmn-js/issues/2135))
* `FIX`: correct handling of group name with whitespace only ([bpmn-io/bpmn-js#2231](https://github.com/bpmn-io/bpmn-js/issues/2231))

### Key Changes in Properties Panel

* `FEAT`: add FEEL Copilot link to FEEL popup ([#385](https://github.com/camunda/camunda-bpmn-js/pull/385))

### Breaking Changes

* Require `Node >= 20`
* `Canvas` is now a focusable element and provides better support for native browser behaviors. Focus can be controlled with new `focus` and `restoreFocus` APIs.
* Keyboard is now implicitly bound to canvas SVG element. Calls to `keyboard.bind` and `keyboard.bindTo` now result with a descriptive console error and have no effect.

## 4.20.2

* `DEPS`: update to `[email protected]`
Expand Down
195 changes: 139 additions & 56 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,20 @@
"@bpmn-io/properties-panel": "^3.25.0",
"@bpmn-io/variable-resolver": "^1.3.0",
"@camunda/example-data-properties-provider": "^1.2.1",
"bpmn-js": "^17.11.1",
"bpmn-js": "^18.0.0",
"bpmn-js-color-picker": "^0.7.1",
"bpmn-js-create-append-anything": "^0.5.2",
"bpmn-js-element-templates": "^2.3.0",
"bpmn-js-executable-fix": "^0.2.1",
"camunda-bpmn-js-behaviors": "^1.6.1",
"camunda-bpmn-moddle": "^7.0.1",
"diagram-js": "^14.11.3",
"diagram-js-grid": "^1.0.0",
"diagram-js-minimap": "^5.1.0",
"diagram-js": "^15.2.0",
"diagram-js-grid": "^1.1.0",
"diagram-js-minimap": "^5.2.0",
"diagram-js-origin": "^1.4.0",
"inherits-browser": "^0.1.0",
"min-dash": "^4.2.1",
"zeebe-bpmn-moddle": "^1.6.0"
"min-dash": "^4.2.2",
"zeebe-bpmn-moddle": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
Expand Down
3 changes: 0 additions & 3 deletions test/base/ModelerSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,6 @@ describe('<BaseModeler>', function() {

modeler = new Modeler({
container: modelerContainer,
keyboard: {
bindTo: document
},
propertiesPanel: {
parent: propertiesContainer
},
Expand Down
Loading