maxGraph / maxgraph-integration-examples

Demonstrate how to integrate maxGraph in projects.
https://maxgraph.github.io/maxgraph-integration-examples/
MIT License
13 stars 2 forks source link

chore(deps): bump @maxgraph/core from 0.10.3 to 0.11.0 #129

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps @maxgraph/core from 0.10.3 to 0.11.0.

Changelog

Sourced from @​maxgraph/core's changelog.

0.11.0

Release date: 2024-06-09

For more details, see the 0.11.0 Changelog on the GitHub release page.

This release contains enhancements, documentation improvements and bug fixes.

Breaking Changes

  • In StencilShape, the allowEval and defaultLocalized static properties have been removed. Configure these properties using StencilShapeConfig.
  • Logs are no longer sent to MaxLog by default. To restore the previous behavior, change maxGraph's global configuration with:
GlobalConfig.logger = new MaxLogAsLogger();
  • MaxWindow.activeWindow is no longer available; it was intended for internal use only, so there's no reason to make it public.
  • The signature of cellArrayUtils.getOpposites has changed. It now returns an array and take an edges Cell array parameter. Previously it was returning a function and this was an extra indirection. This is now simpler to use and match the signature of the mxGraph function.
  • cellArrayUtils.restoreClone is no longer available. It was intended to be private.
  • The signature of cellArrayUtils.cloneCells has changed. It now returns an array of Cells instead of a function.
  • The GraphDataModel.cloneCell function has been moved to the cellArrayUtils namespace. The function doesn't use any internal GraphDataModel state, and moving it into cellArrayUtils is consistent with the cloneCells function already there.
Commits
  • 7f42318 chore(release): prepare version 0.11.0
  • 576f5e4 refactor!: move GraphDataModel.cloneCell to cellArrayUtils (#447)
  • 8ae6bc6 refactor!: cellArrayUtils.cloneCells returns an array of Cells (#448)
  • 3511212 fix!: cellArrayUtils.cloneCells correctly calls restoreClone (#446)
  • 5421645 fix!: make cellArrayUtils.getOpposite return an array of Cells (#445)
  • 1472526 docs: declare JSDoc of TerminalMixin in type definition (#444)
  • 3cd5229 feat!: introduce configurable logger (#431)
  • 2abfabc feat: let ignore the default style when computing the cell style (#443)
  • d10aaca docs: declare JSDoc of ValidationMixin in type definition (#440)
  • c8f41e8 docs: improve JSDoc of VertexHandler (#441)
  • Additional commits viewable in compare view


Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
tbouffard commented 3 months ago

@dependabot squash and merge