Skip to content

Update NodeJS dependencies (major)

This MR contains the following updates:

Package Type Update Change
@gitlab/ui dependencies major ^58.4.0 -> ^59.2.0
mermaid dependencies major ^9.4.3 -> ^10.0.2

MR created with the help of gitlab-org/frontend/renovate-gitlab-bot


Release Notes

gitlab-org/gitlab-ui

v59.2.0

Compare Source

Bug Fixes
Features
  • buttons: tertiary button selected state (6654ebb)

59.1.1 (2023-03-31)

Bug Fixes
  • Checkbox: fix touch target when there is help text (a8d2578)

v59.1.1

Compare Source

Bug Fixes
  • Checkbox: fix touch target when there is help text (a8d2578)

v59.1.0

Compare Source

Features
  • css: add gl-focus-bg-t-gray-a-08 class (f4664ef)

v59.0.0

Compare Source

Features
  • Breadcrumb: Update design to match specs (cfa9122)
BREAKING CHANGES
  • Breadcrumb: Update styles and remove unnecessary ones, remove separator slot, update placeholder avatar

v58.8.0

Compare Source

Features
  • GlFormCheckbox: Make gap clickable (a4c9be3)

v58.7.0

Compare Source

Features
  • css: Add .gl-gap-4 class (967986c)

v58.6.0

Compare Source

Features

58.5.1 (2023-03-27)

Bug Fixes
  • css: rename gl-text-uppercase util (59cbf4e)

v58.5.1

Compare Source

Bug Fixes
  • css: rename gl-text-uppercase util (59cbf4e)

v58.5.0

Compare Source

Features
  • GlDisclosureDropdown: Add disabled state (8d3de9e)
mermaid-js/mermaid

v10.0.2

Compare Source

Release Notes

Bugfixes

v10.0.1

Compare Source

Release Notes

Features

Bugfixes

Documentation

  • docs(flowchart): duplicated hexagon node example by @​Oliboy50
  • add links to NiceGUI integration by @​rodja
  • Adding app (Deepdwn) to integrations list by @​Billiam

Chores

🎉 Thanks to all contributors helping with this release! 🎉

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.0.0...v10.0.1

v10.0.0

Compare Source

Mermaid is ESM only!

We've dropped CJS support. So, you will have to update your import scripts as follows.

<script type="module">
  import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs';
  mermaid.initialize({ startOnLoad: true });
</script>

You can keep using v9 by adding the @9 in the CDN URL.

- <script src="https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.js"></script>
+ <script src="https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.js"></script>
mermaid.render is async and doesn't accept callbacks
// < v10
mermaid.render('id', 'graph TD;\nA-->B', (svg, bindFunctions) => {
  element.innerHTML = svg;
  if (bindFunctions) {
    bindFunctions(element);
  }
});

// Shorter syntax
if (bindFunctions) {
  bindFunctions(element);
}
// can be replaced with the `?.` shorthand
bindFunctions?.(element);

// >= v10 with async/await
const { svg, bindFunctions } = await mermaid.render('id', 'graph TD;\nA-->B');
element.innerHTML = svg;
bindFunctions?.(element);

// >= v10 with promise.then
mermaid.render('id', 'graph TD;A-->B').then(({ svg, bindFunctions }) => {
  element.innerHTML = svg;
  bindFunctions?.(element);
});
mermaid.parse is async and ParseError is removed
// < v10
mermaid.parse(text, parseError);

//>= v10
await mermaid.parse(text).catch(parseError);
// or
try {
  await mermaid.parse(text);
} catch (err) {
  parseError(err);
}
Init deprecated and InitThrowsErrors removed

The config passed to init was not being used eariler. It will now be used. The init function is deprecated and will be removed in the next major release. init currently works as a wrapper to initialize and run.

// < v10
mermaid.init(config, selector, cb);

//>= v10
mermaid.initialize(config);
mermaid.run({
  querySelector: selector,
  postRenderCallback: cb,
  suppressErrors: true,
});
// < v10
mermaid.initThrowsErrors(config, selector, cb);

//>= v10
mermaid.initialize(config);
mermaid.run({
  querySelector: selector,
  postRenderCallback: cb,
  suppressErrors: false,
});

// TODO: Populate changelog pre v10

  • Config has a lot of changes
  • globalReset resets to defaultConfig instead of current config. Use reset instead.

Configuration

📅 Schedule: Branch creation - "before 05:00 on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Merge request reports