diff --git a/.changeset/gold-olives-rule.md b/.changeset/gold-olives-rule.md deleted file mode 100644 index 6fe343774..000000000 --- a/.changeset/gold-olives-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': minor ---- - -feat: Add `getRegisteredDiagramsMetadata` to `mermaid`, which returns all the registered diagram IDs in mermaid diff --git a/.changeset/platinum-olives-rule.md b/.changeset/platinum-olives-rule.md deleted file mode 100644 index af70d6538..000000000 --- a/.changeset/platinum-olives-rule.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@mermaid-js/examples': minor ---- - -feat: Add examples for diagrams in the `@mermaid-js/examples` package diff --git a/.changeset/pretty-falcons-say.md b/.changeset/pretty-falcons-say.md deleted file mode 100644 index f1a0a95c3..000000000 --- a/.changeset/pretty-falcons-say.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': patch ---- - -chore: Updated TreeMapDB to use class based approach diff --git a/.changeset/slimy-peaches-win.md b/.changeset/slimy-peaches-win.md deleted file mode 100644 index a0b902e29..000000000 --- a/.changeset/slimy-peaches-win.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@mermaid-js/examples': patch -'mermaid': patch -'@mermaid-js/parser': patch ---- - -chore: Move packet diagram out of beta diff --git a/.changeset/tangy-ghosts-watch.md b/.changeset/tangy-ghosts-watch.md deleted file mode 100644 index 9d69de4d0..000000000 --- a/.changeset/tangy-ghosts-watch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': patch ---- - -fix: adjust sequence diagram title positioning to prevent overlap with top border in Safari diff --git a/.changeset/weak-files-stare.md b/.changeset/weak-files-stare.md deleted file mode 100644 index c1a8d8f3a..000000000 --- a/.changeset/weak-files-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': patch ---- - -chore: Update MindmapDB to use class based approach diff --git a/.changeset/wild-areas-lick.md b/.changeset/wild-areas-lick.md deleted file mode 100644 index 3653c9b3d..000000000 --- a/.changeset/wild-areas-lick.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'mermaid': patch ---- - -fix(timeline): fix loading `leftMargin` from config - -The `timeline.leftMargin` config value should now correctly control the size of the left margin, instead of being ignored. diff --git a/packages/examples/CHANGELOG.md b/packages/examples/CHANGELOG.md new file mode 100644 index 000000000..befef1a41 --- /dev/null +++ b/packages/examples/CHANGELOG.md @@ -0,0 +1,14 @@ +# @mermaid-js/examples + +## 1.0.0 + +### Minor Changes + +- [#6453](https://github.com/mermaid-js/mermaid/pull/6453) [`4936ef5`](https://github.com/mermaid-js/mermaid/commit/4936ef5c306d2f892cca9a95a5deac4af6d4882b) Thanks [@sidharthv96](https://github.com/sidharthv96)! - feat: Add examples for diagrams in the `@mermaid-js/examples` package + +### Patch Changes + +- [#6510](https://github.com/mermaid-js/mermaid/pull/6510) [`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6) Thanks [@sidharthv96](https://github.com/sidharthv96)! - chore: Move packet diagram out of beta + +- Updated dependencies [[`5acbd7e`](https://github.com/mermaid-js/mermaid/commit/5acbd7e762469d9d89a9c77faf6617ee13367f3a), [`d90634b`](https://github.com/mermaid-js/mermaid/commit/d90634bf2b09e586b055729e07e9a1a31b21827c), [`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6), [`3e3ae08`](https://github.com/mermaid-js/mermaid/commit/3e3ae089305e1c7b9948b9e149eba6854fe7f2d6), [`d3e2be3`](https://github.com/mermaid-js/mermaid/commit/d3e2be35be066adeb7fd502b4a24c223c3b53947), [`637680d`](https://github.com/mermaid-js/mermaid/commit/637680d4d9e39b4f8cb6f05b4cb261e8f5693ac3)]: + - mermaid@11.9.0 diff --git a/packages/examples/package.json b/packages/examples/package.json index 90abc9da9..6ab28aef1 100644 --- a/packages/examples/package.json +++ b/packages/examples/package.json @@ -1,6 +1,6 @@ { "name": "@mermaid-js/examples", - "version": "0.0.1-beta.1", + "version": "1.0.0", "description": "Mermaid examples package", "author": "Sidharth Vinod", "type": "module", diff --git a/packages/mermaid/CHANGELOG.md b/packages/mermaid/CHANGELOG.md index c57e2a6db..f830e8ecd 100644 --- a/packages/mermaid/CHANGELOG.md +++ b/packages/mermaid/CHANGELOG.md @@ -1,5 +1,28 @@ # mermaid +## 11.9.0 + +### Minor Changes + +- [#6453](https://github.com/mermaid-js/mermaid/pull/6453) [`5acbd7e`](https://github.com/mermaid-js/mermaid/commit/5acbd7e762469d9d89a9c77faf6617ee13367f3a) Thanks [@sidharthv96](https://github.com/sidharthv96)! - feat: Add `getRegisteredDiagramsMetadata` to `mermaid`, which returns all the registered diagram IDs in mermaid + +### Patch Changes + +- [#6738](https://github.com/mermaid-js/mermaid/pull/6738) [`d90634b`](https://github.com/mermaid-js/mermaid/commit/d90634bf2b09e586b055729e07e9a1a31b21827c) Thanks [@shubham-mermaid](https://github.com/shubham-mermaid)! - chore: Updated TreeMapDB to use class based approach + +- [#6510](https://github.com/mermaid-js/mermaid/pull/6510) [`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6) Thanks [@sidharthv96](https://github.com/sidharthv96)! - chore: Move packet diagram out of beta + +- [#6747](https://github.com/mermaid-js/mermaid/pull/6747) [`3e3ae08`](https://github.com/mermaid-js/mermaid/commit/3e3ae089305e1c7b9948b9e149eba6854fe7f2d6) Thanks [@darshanr0107](https://github.com/darshanr0107)! - fix: adjust sequence diagram title positioning to prevent overlap with top border in Safari + +- [#6751](https://github.com/mermaid-js/mermaid/pull/6751) [`d3e2be3`](https://github.com/mermaid-js/mermaid/commit/d3e2be35be066adeb7fd502b4a24c223c3b53947) Thanks [@darshanr0107](https://github.com/darshanr0107)! - chore: Update MindmapDB to use class based approach + +- [#6715](https://github.com/mermaid-js/mermaid/pull/6715) [`637680d`](https://github.com/mermaid-js/mermaid/commit/637680d4d9e39b4f8cb6f05b4cb261e8f5693ac3) Thanks [@Syn3ugar](https://github.com/Syn3ugar)! - fix(timeline): fix loading `leftMargin` from config + + The `timeline.leftMargin` config value should now correctly control the size of the left margin, instead of being ignored. + +- Updated dependencies [[`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6)]: + - @mermaid-js/parser@0.6.2 + ## 11.8.1 ### Patch Changes diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 2dd3248e4..5a9669ff6 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "mermaid", - "version": "11.8.1", + "version": "11.9.0", "description": "Markdown-ish syntax for generating flowcharts, mindmaps, sequence diagrams, class diagrams, gantt charts, git graphs and more.", "type": "module", "module": "./dist/mermaid.core.mjs", diff --git a/packages/parser/CHANGELOG.md b/packages/parser/CHANGELOG.md index da0f244a3..38ad0ff9f 100644 --- a/packages/parser/CHANGELOG.md +++ b/packages/parser/CHANGELOG.md @@ -1,5 +1,11 @@ # @mermaid-js/parser +## 0.6.2 + +### Patch Changes + +- [#6510](https://github.com/mermaid-js/mermaid/pull/6510) [`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6) Thanks [@sidharthv96](https://github.com/sidharthv96)! - chore: Move packet diagram out of beta + ## 0.6.1 ### Patch Changes diff --git a/packages/parser/package.json b/packages/parser/package.json index a51229ae8..718ecee66 100644 --- a/packages/parser/package.json +++ b/packages/parser/package.json @@ -1,6 +1,6 @@ { "name": "@mermaid-js/parser", - "version": "0.6.1", + "version": "0.6.2", "description": "MermaidJS parser", "author": "Yokozuna59", "contributors": [ diff --git a/packages/tiny/CHANGELOG.md b/packages/tiny/CHANGELOG.md index c57e2a6db..f830e8ecd 100644 --- a/packages/tiny/CHANGELOG.md +++ b/packages/tiny/CHANGELOG.md @@ -1,5 +1,28 @@ # mermaid +## 11.9.0 + +### Minor Changes + +- [#6453](https://github.com/mermaid-js/mermaid/pull/6453) [`5acbd7e`](https://github.com/mermaid-js/mermaid/commit/5acbd7e762469d9d89a9c77faf6617ee13367f3a) Thanks [@sidharthv96](https://github.com/sidharthv96)! - feat: Add `getRegisteredDiagramsMetadata` to `mermaid`, which returns all the registered diagram IDs in mermaid + +### Patch Changes + +- [#6738](https://github.com/mermaid-js/mermaid/pull/6738) [`d90634b`](https://github.com/mermaid-js/mermaid/commit/d90634bf2b09e586b055729e07e9a1a31b21827c) Thanks [@shubham-mermaid](https://github.com/shubham-mermaid)! - chore: Updated TreeMapDB to use class based approach + +- [#6510](https://github.com/mermaid-js/mermaid/pull/6510) [`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6) Thanks [@sidharthv96](https://github.com/sidharthv96)! - chore: Move packet diagram out of beta + +- [#6747](https://github.com/mermaid-js/mermaid/pull/6747) [`3e3ae08`](https://github.com/mermaid-js/mermaid/commit/3e3ae089305e1c7b9948b9e149eba6854fe7f2d6) Thanks [@darshanr0107](https://github.com/darshanr0107)! - fix: adjust sequence diagram title positioning to prevent overlap with top border in Safari + +- [#6751](https://github.com/mermaid-js/mermaid/pull/6751) [`d3e2be3`](https://github.com/mermaid-js/mermaid/commit/d3e2be35be066adeb7fd502b4a24c223c3b53947) Thanks [@darshanr0107](https://github.com/darshanr0107)! - chore: Update MindmapDB to use class based approach + +- [#6715](https://github.com/mermaid-js/mermaid/pull/6715) [`637680d`](https://github.com/mermaid-js/mermaid/commit/637680d4d9e39b4f8cb6f05b4cb261e8f5693ac3) Thanks [@Syn3ugar](https://github.com/Syn3ugar)! - fix(timeline): fix loading `leftMargin` from config + + The `timeline.leftMargin` config value should now correctly control the size of the left margin, instead of being ignored. + +- Updated dependencies [[`7a38eb7`](https://github.com/mermaid-js/mermaid/commit/7a38eb715d795cd5c66cb59357d64ec197b432e6)]: + - @mermaid-js/parser@0.6.2 + ## 11.8.1 ### Patch Changes diff --git a/packages/tiny/package.json b/packages/tiny/package.json index 79dba051b..460f6a2a4 100644 --- a/packages/tiny/package.json +++ b/packages/tiny/package.json @@ -1,6 +1,6 @@ { "name": "@mermaid-js/tiny", - "version": "11.8.1", + "version": "11.9.0", "description": "Tiny version of mermaid", "type": "commonjs", "main": "./dist/mermaid.tiny.js",