-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release/11.4.1 #6083
Merged
Merged
Release/11.4.1 #6083
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Merge back v4.11.0 to develop
…rsect Fix for intersection issue
fix:Kanban diagrams will not render when adding a number as ticket id or assigned for a task
As [DOMPurify 3.2.0 added TypeScript types][1], this means that we can remove our dependency on the `@types/dompurify` package. [DOMPurify 3.2.0 also adds the `HTML_INTEGRATION_POINTS` option][2], which adds back support for `<foreignObject>`, [which broke in DOMPurify 3.1.7.][3] [1]: https://github.com/cure53/DOMPurify/releases/tag/3.2.0 [2]: cure53/DOMPurify@e4caa67 [3]: de2c05c
…k-layout" This reverts commit 255279e.
fix: update dompurify to `^3.2.1` and remove `@types/dompurify`
fix: Elk rendering of Diamond shape intersections
🦋 Changeset detectedLatest commit: 0dff4ca The changes in this PR will be included in the next version bump. This PR includes changesets to release 2 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
✅ Deploy Preview for mermaid-js ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
📑 Summary
This pull request includes various fixes and improvements to the
mermaid
and@mermaid-js/layout-elk
packages. The most important changes focus on bug fixes, dependency updates, and enhancements to diagram rendering.Bug Fixes:
.changeset/eleven-rocks-leave.md
)..changeset/fresh-bears-doubt.md
)..changeset/nervous-beans-listen.md
).Dependency Updates:
dompurify
to^3.2.1
, removing the need for@types/dompurify
(.changeset/neat-rabbits-bake.md
,packages/mermaid/package.json
,pnpm-lock.yaml
) [1] [2] [3] [4] [5].Enhancements:
cypress/integration/rendering/flowchart-elk.spec.js
) [1] [2].render
function to handle small epsilon values and better log output (packages/mermaid-layout-elk/src/render.ts
) [1] [2] [3] [4] [5] [6] [7] [8].common.ts
(packages/mermaid/src/diagrams/common/common.ts
) [1] [2].packages/mermaid/src/diagrams/kanban/kanbanDb.ts
).These changes collectively improve the stability and functionality of the diagram rendering and related features in the
mermaid
and@mermaid-js/layout-elk
packages.Resolves #6080 , #6058 , #6037
📏 Design Decisions
Describe the way your implementation works or what design decisions you made if applicable.
📋 Tasks
Make sure you
MERMAID_RELEASE_VERSION
is used for all new features.pnpm changeset
and following the prompts. Changesets that add features should beminor
and those that fix bugs should bepatch
. Please prefix changeset messages withfeat:
,fix:
, orchore:
.