mermaid

Generation of diagrams like flowcharts or sequence diagrams from text in a similar manner as markdown

MIT License

Downloads
4M
Stars
66.7K
Committers
642

Bot releases are hidden (Show)

mermaid - v10.8.0

Published by knsv 9 months ago

v10.8.0

Features

Documentation

Bug fixes

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.7.0...v10.8.0

mermaid - 10.6.0

Published by knsv 12 months ago

What's Changed

Fix

Docs

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.5.1...v10.6.0

mermaid - v10.5.1

Published by knsv about 1 year ago

What's Changed

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.5.0...v10.5.1

mermaid - 10.5.0

Published by knsv about 1 year ago

What's Changed

Features

Bugfixes

Documentation

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.4.0...v10.5.0

mermaid - v10.4.0

Published by knsv about 1 year ago

Features

Docs

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.3.1...v10.4.0

mermaid - v10.3.1

Published by knsv about 1 year ago

What's Changed

Bugfixes

Documentation

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.3.0...v10.3.1

mermaid - 10.3.0

Published by knsv about 1 year ago

What's Changed

Features

Bugfixes

Chores

Documentation

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.2.4...v10.3.0

mermaid - 10.2.4

Published by knsv over 1 year ago

Features

Bugfixes

Documentation

Chore

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.2.3...v10.2.4

mermaid - 10.2.2

Published by knsv over 1 year ago

What's Changed

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.2.1...v10.2.2

mermaid - 10.2.1

Published by knsv over 1 year ago

What's Changed

Bugfixes

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.2.0...v10.2.1

mermaid - 10.2.0

Published by knsv over 1 year ago

What's Changed

Features

Bugfixes

Documentation

Chores

πŸŽ‰ Thanks to all contributors helping with this release! πŸŽ‰

New Contributors


Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.1.0...v10.2.0

Thanks to Mermaid Chart for ongoing support

mermaid - 10.1.0

Published by knsv over 1 year ago

What's Changed

Features

Bugfixes

Documentation

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v10.0.2...v10.1.0

mermaid - v9.4.3

Published by sidharthv96 over 1 year ago

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v9.4.2...v9.4.3

Fixes imports for dayjs and cytoscape.

mermaid - v9.4.2

Published by sidharthv96 over 1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v9.4.0...v9.4.2

mermaid - 10.0.2

Published by knsv over 1 year ago

Release Notes

Bugfixes

  • fix: dayjs import extension @sidharthv96
mermaid - 10.0.1

Published by pbrolin47 over 1 year ago

Release Notes

Features

  • Added grammar to skip comment in attribute block (#4128) @kshitijsaksena
  • feat: Add support for classDiagram labels (#4086) @sidharthv96
  • πŸ’„ section width now covers all tasks (#4074) @l2fprod
  • πŸ’„ section width now covers all tasks - Timeline (#4126) @sidharthv96

Bugfixes

  • Fix(#4140): Async bug in mermaid.run (#4142) @sidharthv96
  • fix #4157: Inject only fontFamily without replacing themeVariables (#4160) @sidharthv96
  • fix: Detector order (#4124) @sidharthv96
  • fix: fix exports (#4135) @Mister-Hope
  • fix #4157: Inject only fontFamily without replacing themeVariables by @sidharthv96
  • Elk layout for flowcharts: Incorrect placement of edges when using diamonds in subgraphs by @knsv

Documentation

  • Adding app (Deepdwn) to integrations list (#4127) @Billiam
  • Doc (typo): remove duplicate "be" (#4133) @Julez404
  • docs(flowchart): duplicated hexagon node example by @Oliboy50
  • add links to NiceGUI integration by @rodja
  • Adding app (Deepdwn) to integrations list by @Billiam

Chores

  • chore: [email protected] (#4147) @sidharthv96
  • Replace moment-mini/moment date library with dayjs (#4153) @aloisklink

πŸŽ‰ 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

mermaid - v10.0.0

Published by knsv over 1 year ago

What's Changed

Please refer the v10 changes section in CHANGELOG.md to see detailed migration steps.

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>

Breaking changes in v10

  • Switch to ESM only for v10? by @sidharthv96 #3590
  • Break type of mermaid.render in v10 by @sidharthv96 #3577
  • Improve init function and how selector and nodes are passed by @sidharthv96 #3394
  • mermaid.init is not using the config that's passed by @sidharthv96 #3406
  • Configurable HTML class for initialisation by @sidharthv96 #3055

Features

Docs

Chores

New Contributors

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

mermaid - v9.4.0

Published by pbrolin47 over 1 year ago

What's Changed

Features

Breaking changes

  • Mind map and timeline diagrams are lazy loaded by mermaid. In order to use these diagrams you need to use the renderAsync method of rendering. The @mermaid-js/mermaid-mindmap package is deprecated by this.

Documentation

Bug Fixes

Chores

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v9.3.0...v9.4.0

mermaid - 9.2.2

Published by pbrolin47 almost 2 years ago

What's Changed

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v9.2.1...v9.2.2

mermaid - 9.2.0

Published by ashishjain0512 almost 2 years ago

What's Changed

Features

Fixes

Chores

Docs

New Contributors

Full Changelog: https://github.com/mermaid-js/mermaid/compare/v9.1.7...v9.2.0

Package Rankings
Top 0.2% on Npmjs.org
Top 18.67% on Pypi.org
Top 5.64% on Repo1.maven.org
Top 1.51% on Proxy.golang.org
Badges
Extracted from project README
NPM Build CI Status npm minified gzipped bundle size Coverage Status CDN Status NPM Downloads Join our Discord! Twitter Follow Covered by Argos Visual Testing OpenSSF Scorecard Covered by Argos Visual Testing Good first issue Contributors Commits