diff --git a/.changeset/add-nested-namespaces.md b/.changeset/add-nested-namespaces.md deleted file mode 100644 index bb9abda71..000000000 --- a/.changeset/add-nested-namespaces.md +++ /dev/null @@ -1,17 +0,0 @@ ---- -'mermaid': patch ---- - -Fixed an issue when the mermaid classdiagram crashes when adding a . to the namespace. -Forexample - -```mermaid - -classDiagram - namespace Company.Project.Module { - class GenericClass~T~ { - +addItem(item: T) - +getItem() T - } - } -``` diff --git a/.changeset/popular-hounds-smash.md b/.changeset/popular-hounds-smash.md deleted file mode 100644 index 8b7d296ba..000000000 --- a/.changeset/popular-hounds-smash.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@mermaid-js/layout-elk': patch ---- - -chore: Update render options diff --git a/.changeset/rude-meals-invite.md b/.changeset/rude-meals-invite.md deleted file mode 100644 index 8d43692f8..000000000 --- a/.changeset/rude-meals-invite.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': minor ---- - -New Flowchart Shapes (with new syntax) diff --git a/.changeset/witty-rabbits-hunt.md b/.changeset/witty-rabbits-hunt.md deleted file mode 100644 index 3817bb928..000000000 --- a/.changeset/witty-rabbits-hunt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'mermaid': patch ---- - -Ban DOMPurify v3.1.7 as a dependency diff --git a/docs/syntax/flowchart.md b/docs/syntax/flowchart.md index 5f1b21ea8..5cb2193aa 100644 --- a/docs/syntax/flowchart.md +++ b/docs/syntax/flowchart.md @@ -298,7 +298,7 @@ flowchart TD id1(((This is the text in the circle))) ``` -## Expanded Node Shapes in Mermaid Flowcharts (v\+) +## Expanded Node Shapes in Mermaid Flowcharts (v11.3.0+) Mermaid introduces 30 new shapes to enhance the flexibility and precision of flowchart creation. These new shapes provide more options to represent processes, decisions, events, data storage visually, and other elements within your flowcharts, improving clarity and semantic meaning. diff --git a/packages/mermaid-layout-elk/CHANGELOG.md b/packages/mermaid-layout-elk/CHANGELOG.md index f1a025d7d..ce023eb65 100644 --- a/packages/mermaid-layout-elk/CHANGELOG.md +++ b/packages/mermaid-layout-elk/CHANGELOG.md @@ -1,5 +1,14 @@ # @mermaid-js/layout-elk +## 0.1.5 + +### Patch Changes + +- [#5825](https://github.com/mermaid-js/mermaid/pull/5825) [`233e36c`](https://github.com/mermaid-js/mermaid/commit/233e36c9884fcce141a72ce7c845179781e18632) Thanks [@ashishjain0512](https://github.com/ashishjain0512)! - chore: Update render options + +- Updated dependencies [[`6c5b7ce`](https://github.com/mermaid-js/mermaid/commit/6c5b7ce9f41c0fbd59fe03dbefc8418d97697f0a), [`9e3aa70`](https://github.com/mermaid-js/mermaid/commit/9e3aa705ae21fd4898504ab22d775a9e437b898e), [`de2c05c`](https://github.com/mermaid-js/mermaid/commit/de2c05cd5463af68d19dd7b6b3f1303d69ddb2dd)]: + - mermaid@11.3.0 + ## 0.1.4 ### Patch Changes diff --git a/packages/mermaid-layout-elk/package.json b/packages/mermaid-layout-elk/package.json index e411de278..26e06b2b1 100644 --- a/packages/mermaid-layout-elk/package.json +++ b/packages/mermaid-layout-elk/package.json @@ -1,6 +1,6 @@ { "name": "@mermaid-js/layout-elk", - "version": "0.1.4", + "version": "0.1.5", "description": "ELK layout engine for mermaid", "module": "dist/mermaid-layout-elk.core.mjs", "types": "dist/layouts.d.ts", diff --git a/packages/mermaid/CHANGELOG.md b/packages/mermaid/CHANGELOG.md index c2ab1d230..733108172 100644 --- a/packages/mermaid/CHANGELOG.md +++ b/packages/mermaid/CHANGELOG.md @@ -1,5 +1,29 @@ # mermaid +## 11.3.0 + +### Minor Changes + +- [#5825](https://github.com/mermaid-js/mermaid/pull/5825) [`9e3aa70`](https://github.com/mermaid-js/mermaid/commit/9e3aa705ae21fd4898504ab22d775a9e437b898e) Thanks [@ashishjain0512](https://github.com/ashishjain0512)! - New Flowchart Shapes (with new syntax) + +### Patch Changes + +- [#5849](https://github.com/mermaid-js/mermaid/pull/5849) [`6c5b7ce`](https://github.com/mermaid-js/mermaid/commit/6c5b7ce9f41c0fbd59fe03dbefc8418d97697f0a) Thanks [@ReneLombard](https://github.com/ReneLombard)! - Fixed an issue when the mermaid classdiagram crashes when adding a . to the namespace. + Forexample + + ```mermaid + + classDiagram + namespace Company.Project.Module { + class GenericClass~T~ { + +addItem(item: T) + +getItem() T + } + } + ``` + +- [#5914](https://github.com/mermaid-js/mermaid/pull/5914) [`de2c05c`](https://github.com/mermaid-js/mermaid/commit/de2c05cd5463af68d19dd7b6b3f1303d69ddb2dd) Thanks [@aloisklink](https://github.com/aloisklink)! - Ban DOMPurify v3.1.7 as a dependency + ## 11.2.1 ### Patch Changes diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json index 72eb2aa1a..8e06dd90d 100644 --- a/packages/mermaid/package.json +++ b/packages/mermaid/package.json @@ -1,6 +1,6 @@ { "name": "mermaid", - "version": "11.2.1", + "version": "11.3.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/mermaid/src/docs/syntax/flowchart.md b/packages/mermaid/src/docs/syntax/flowchart.md index 94bddecd2..9d37a4033 100644 --- a/packages/mermaid/src/docs/syntax/flowchart.md +++ b/packages/mermaid/src/docs/syntax/flowchart.md @@ -194,7 +194,7 @@ flowchart TD id1(((This is the text in the circle))) ``` -## Expanded Node Shapes in Mermaid Flowcharts (v+) +## Expanded Node Shapes in Mermaid Flowcharts (v11.3.0+) Mermaid introduces 30 new shapes to enhance the flexibility and precision of flowchart creation. These new shapes provide more options to represent processes, decisions, events, data storage visually, and other elements within your flowcharts, improving clarity and semantic meaning.