[PR #1593] Bump @braintree/sanitize-url and mermaid #1464

Open
opened 2026-03-03 00:26:25 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/BoostIO/BoostNote-App/pull/1593
Author: @dependabot[bot]
Created: 2/24/2023
Status: 🔄 Open

Base: masterHead: dependabot/npm_and_yarn/braintree/sanitize-url-and-mermaid-6.0.2


📝 Commits (1)

  • a0e028f Bump @braintree/sanitize-url and mermaid

📊 Changes

2 files changed (+157 additions, -361 deletions)

View changed files

📝 package-lock.json (+156 -360)
📝 package.json (+1 -1)

📄 Description

Bumps @braintree/sanitize-url to 6.0.2 and updates ancestor dependency mermaid. These dependencies need to be updated together.

Updates @braintree/sanitize-url from 3.1.0 to 6.0.2

Changelog

Sourced from @​braintree/sanitize-url's changelog.

6.0.2

  • Fix issue where urls in the form https://example.com

/something were not properly sanitized

6.0.1

  • Fix issue where urls in the form javascript:alert('xss'); were not properly sanitized
  • Fix issue where urls in the form javasc	ript:alert('XSS'); were not properly sanitized

6.0.0

Breaking Changes

  • Decode HTML characters automatically that would result in an XSS vulnerability when rendering links via a server rendered HTML file
// decodes to javacript:alert('XSS')
const vulnerableUrl =
  "&[#0000106](https://github.com/braintree/sanitize-url/issues/0000106)&[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&[#0000118](https://github.com/braintree/sanitize-url/issues/0000118)&[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&[#0000115](https://github.com/braintree/sanitize-url/issues/0000115)&[#0000099](https://github.com/braintree/sanitize-url/issues/0000099)&[#0000114](https://github.com/braintree/sanitize-url/issues/0000114)&[#0000105](https://github.com/braintree/sanitize-url/issues/0000105)&[#0000112](https://github.com/braintree/sanitize-url/issues/0000112)&[#0000116](https://github.com/braintree/sanitize-url/issues/0000116)&[#0000058](https://github.com/braintree/sanitize-url/issues/0000058)&[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&[#0000108](https://github.com/braintree/sanitize-url/issues/0000108)&[#0000101](https://github.com/braintree/sanitize-url/issues/0000101)&[#0000114](https://github.com/braintree/sanitize-url/issues/0000114)&[#0000116](https://github.com/braintree/sanitize-url/issues/0000116)&[#0000040](https://github.com/braintree/sanitize-url/issues/0000040)&[#0000039](https://github.com/braintree/sanitize-url/issues/0000039)&[#0000088](https://github.com/braintree/sanitize-url/issues/0000088)&[#0000083](https://github.com/braintree/sanitize-url/issues/0000083)&[#0000083](https://github.com/braintree/sanitize-url/issues/0000083)&[#0000039](https://github.com/braintree/sanitize-url/issues/0000039)&[#0000041](https://github.com/braintree/sanitize-url/issues/0000041)";

sanitizeUrl(vulnerableUrl); // 'about:blank'

const okUrl = "https://example.com/" + vulnerableUrl;

// since the javascript bit is in the path instead of the protocol // this is successfully sanitized sanitizeUrl(okUrl); // 'https://example.com/javascript:alert('XSS');

5.0.2

  • Fix issue where certain invisible white space characters were not being sanitized (#35)

5.0.1

  • Fix issue where certain safe characters were being filtered out (#31 thanks @​akirchmyer)

5.0.0

Breaking Changes

4.1.1

  • Fixup path to type declaration (closes #25)

4.1.0

  • Add typescript types

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by braintree, a new releaser for @​braintree/sanitize-url since your current version.


Updates mermaid from 8.13.8 to 10.0.0

Release notes

Sourced from mermaid's releases.

v10.0.0

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

Features

Docs

Chores

... (truncated)

Changelog

Sourced from mermaid's changelog.

10.0.0

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); });

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by p_brolin47, a new releaser for mermaid since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language

You can disable automated security fix PRs for this repo from the Security Alerts page.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/BoostIO/BoostNote-App/pull/1593 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 2/24/2023 **Status:** 🔄 Open **Base:** `master` ← **Head:** `dependabot/npm_and_yarn/braintree/sanitize-url-and-mermaid-6.0.2` --- ### 📝 Commits (1) - [`a0e028f`](https://github.com/BoostIO/BoostNote-App/commit/a0e028fcfb2a9d2d59c2ce1e971583418f068c90) Bump @braintree/sanitize-url and mermaid ### 📊 Changes **2 files changed** (+157 additions, -361 deletions) <details> <summary>View changed files</summary> 📝 `package-lock.json` (+156 -360) 📝 `package.json` (+1 -1) </details> ### 📄 Description Bumps [@braintree/sanitize-url](https://github.com/braintree/sanitize-url) to 6.0.2 and updates ancestor dependency [mermaid](https://github.com/mermaid-js/mermaid). These dependencies need to be updated together. Updates `@braintree/sanitize-url` from 3.1.0 to 6.0.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/braintree/sanitize-url/blob/main/CHANGELOG.md"><code>@​braintree/sanitize-url</code>'s changelog</a>.</em></p> <blockquote> <h2>6.0.2</h2> <ul> <li>Fix issue where urls in the form <code>https://example.com&amp;NewLine;&amp;NewLine;/something</code> were not properly sanitized</li> </ul> <h2>6.0.1</h2> <ul> <li>Fix issue where urls in the form <code>javascript&amp;colon;alert('xss');</code> were not properly sanitized</li> <li>Fix issue where urls in the form <code>javasc&amp;Tab;ript:alert('XSS');</code> were not properly sanitized</li> </ul> <h2>6.0.0</h2> <p><strong>Breaking Changes</strong></p> <ul> <li>Decode HTML characters automatically that would result in an XSS vulnerability when rendering links via a server rendered HTML file</li> </ul> <pre lang="js"><code>// decodes to javacript:alert('XSS') const vulnerableUrl = &quot;&amp;[#0000106](https://github.com/braintree/sanitize-url/issues/0000106)&amp;[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&amp;[#0000118](https://github.com/braintree/sanitize-url/issues/0000118)&amp;[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&amp;[#0000115](https://github.com/braintree/sanitize-url/issues/0000115)&amp;[#0000099](https://github.com/braintree/sanitize-url/issues/0000099)&amp;[#0000114](https://github.com/braintree/sanitize-url/issues/0000114)&amp;[#0000105](https://github.com/braintree/sanitize-url/issues/0000105)&amp;[#0000112](https://github.com/braintree/sanitize-url/issues/0000112)&amp;[#0000116](https://github.com/braintree/sanitize-url/issues/0000116)&amp;[#0000058](https://github.com/braintree/sanitize-url/issues/0000058)&amp;[#0000097](https://github.com/braintree/sanitize-url/issues/0000097)&amp;[#0000108](https://github.com/braintree/sanitize-url/issues/0000108)&amp;[#0000101](https://github.com/braintree/sanitize-url/issues/0000101)&amp;[#0000114](https://github.com/braintree/sanitize-url/issues/0000114)&amp;[#0000116](https://github.com/braintree/sanitize-url/issues/0000116)&amp;[#0000040](https://github.com/braintree/sanitize-url/issues/0000040)&amp;[#0000039](https://github.com/braintree/sanitize-url/issues/0000039)&amp;[#0000088](https://github.com/braintree/sanitize-url/issues/0000088)&amp;[#0000083](https://github.com/braintree/sanitize-url/issues/0000083)&amp;[#0000083](https://github.com/braintree/sanitize-url/issues/0000083)&amp;[#0000039](https://github.com/braintree/sanitize-url/issues/0000039)&amp;[#0000041](https://github.com/braintree/sanitize-url/issues/0000041)&quot;; <p>sanitizeUrl(vulnerableUrl); // 'about:blank'</p> <p>const okUrl = &quot;<a href="https://example.com/">https://example.com/</a>&quot; + vulnerableUrl;</p> <p>// since the javascript bit is in the path instead of the protocol // this is successfully sanitized sanitizeUrl(okUrl); // '<a href="https://example.com/javascript:alert(&#x27;XSS&#x27;)">https://example.com/javascript:alert('XSS')</a>; </code></pre></p> <h2>5.0.2</h2> <ul> <li>Fix issue where certain invisible white space characters were not being sanitized (<a href="https://github-redirect.dependabot.com/braintree/sanitize-url/issues/35">#35</a>)</li> </ul> <h2>5.0.1</h2> <ul> <li>Fix issue where certain safe characters were being filtered out (<a href="https://github-redirect.dependabot.com/braintree/sanitize-url/issues/31">#31</a> thanks <a href="https://github.com/akirchmyer"><code>@​akirchmyer</code></a>)</li> </ul> <h2>5.0.0</h2> <p><em>Breaking Changes</em></p> <ul> <li>Sanitize vbscript urls (thanks <a href="https://github.com/vicnicius"><code>@​vicnicius</code></a>)</li> </ul> <h2>4.1.1</h2> <ul> <li>Fixup path to type declaration (closes <a href="https://github-redirect.dependabot.com/braintree/sanitize-url/issues/25">#25</a>)</li> </ul> <h2>4.1.0</h2> <ul> <li>Add typescript types</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/braintree/sanitize-url/commit/14a14e8e201d56dcd7726c30254690301ee03821"><code>14a14e8</code></a> 6.0.2</li> <li><a href="https://github.com/braintree/sanitize-url/commit/b8eb5757bbd06fe44fe0482b8ba840edf5eb5e29"><code>b8eb575</code></a> chore: update changelog</li> <li><a href="https://github.com/braintree/sanitize-url/commit/a39ca113ecf6ae4bd55b193054a947a84be9a257"><code>a39ca11</code></a> fix: remove newline entities (<a href="https://github-redirect.dependabot.com/braintree/sanitize-url/issues/46">#46</a>)</li> <li><a href="https://github.com/braintree/sanitize-url/commit/ab8d43d0516e48324826b9cb7f8612eee0e328a0"><code>ab8d43d</code></a> 6.0.1</li> <li><a href="https://github.com/braintree/sanitize-url/commit/768e9540436fe5e707668ac439ec2f8cfebb1fca"><code>768e954</code></a> chore: update version in changelog</li> <li><a href="https://github.com/braintree/sanitize-url/commit/d4bdc89f1743fe3cdb7c3f24b06e4c875f349b0c"><code>d4bdc89</code></a> Fix html entity tab (<a href="https://github-redirect.dependabot.com/braintree/sanitize-url/issues/45">#45</a>)</li> <li><a href="https://github.com/braintree/sanitize-url/commit/b70161daebd9523590fc6feda017d0489a8f6002"><code>b70161d</code></a> chore: fix CHANGELOG formatting</li> <li><a href="https://github.com/braintree/sanitize-url/commit/eb4a764343269de36463589733fe9508e4dce682"><code>eb4a764</code></a> chore: update dev dependencies</li> <li><a href="https://github.com/braintree/sanitize-url/commit/071dbfb5cfc981877b47816f1fcb8c5069904270"><code>071dbfb</code></a> chore: update dependencies</li> <li><a href="https://github.com/braintree/sanitize-url/commit/34fc6435a6028a5a2a3d35b0dee2299e5a9a3580"><code>34fc643</code></a> 6.0.0</li> <li>Additional commits viewable in <a href="https://github.com/braintree/sanitize-url/compare/v3.1.0...v6.0.2">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~braintree">braintree</a>, a new releaser for <code>@​braintree/sanitize-url</code> since your current version.</p> </details> <br /> Updates `mermaid` from 8.13.8 to 10.0.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/mermaid-js/mermaid/releases">mermaid's releases</a>.</em></p> <blockquote> <h2>v10.0.0</h2> <h2>What's Changed</h2> <h3>Please refer the <a href="https://github.com/mermaid-js/mermaid/blob/master/CHANGELOG.md#1000">v10 changes section in CHANGELOG.md</a> to see detailed migration steps.</h3> <h3>Mermaid is ESM only!</h3> <p>We've dropped CJS support. So, you will have to update your import scripts as follows.</p> <pre lang="html"><code>&lt;script type=&quot;module&quot;&gt; import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs'; mermaid.initialize({ startOnLoad: true }); &lt;/script&gt; </code></pre> <p>You can keep using v9 by adding the <code>@9</code> in the CDN URL.</p> <pre lang="diff"><code>- &lt;script src=&quot;https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.js&quot;&gt;&lt;/script&gt; + &lt;script src=&quot;https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.js&quot;&gt;&lt;/script&gt; </code></pre> <h3>Breaking changes in v10</h3> <ul> <li>Switch to ESM only for v10? by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/3590">#3590</a></li> <li>Break type of mermaid.render in v10 by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/3577">#3577</a></li> <li>Improve init function and how selector and nodes are passed by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/3394">#3394</a></li> <li>mermaid.init is not using the config that's passed by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/3406">#3406</a></li> <li>Configurable HTML class for initialisation by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/3055">#3055</a></li> </ul> <h3>Features</h3> <ul> <li>fix(api): tree shaking package.json import by <a href="https://github.com/AielloChan"><code>@​AielloChan</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4101">mermaid-js/mermaid#4101</a></li> <li>splitDiagrams by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4110">mermaid-js/mermaid#4110</a></li> <li>Adding the ability to use invisible edges by <a href="https://github.com/knsv"><code>@​knsv</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4113">mermaid-js/mermaid#4113</a></li> </ul> <h3>Docs</h3> <ul> <li>Add logo to readme by <a href="https://github.com/sidharthv96"><code>@​sidharthv96</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4076">mermaid-js/mermaid#4076</a></li> <li>docs: minor fix on markdown by <a href="https://github.com/Jeff-Tian"><code>@​Jeff-Tian</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4015">mermaid-js/mermaid#4015</a></li> <li>Fix typos by <a href="https://github.com/fkohrt"><code>@​fkohrt</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4118">mermaid-js/mermaid#4118</a></li> </ul> <h3>Chores</h3> <ul> <li>chore(deps): update all non-major dependencies (minor) by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4044">mermaid-js/mermaid#4044</a></li> <li>chore(deps): update dependency <code>@​types/uuid</code> to v9 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4067">mermaid-js/mermaid#4067</a></li> <li>build(lint:fix): cache eslint in pnpm run lint:fix by <a href="https://github.com/aloisklink"><code>@​aloisklink</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4073">mermaid-js/mermaid#4073</a></li> <li>chore(deps): update dependency rimraf to v4 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4070">mermaid-js/mermaid#4070</a></li> <li>chore(deps): update dependency jsdom to v21 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4069">mermaid-js/mermaid#4069</a></li> <li>chore(deps): update timonvs/pr-labeler-action action to v4 by <a href="https://github.com/renovate"><code>@​renovate</code></a> in <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/pull/4072">mermaid-js/mermaid#4072</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/mermaid-js/mermaid/blob/develop/CHANGELOG.md">mermaid's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/mermaid-js/mermaid/releases/tag/v10.0.0">10.0.0</a></h2> <h3>Mermaid is ESM only!</h3> <p>We've dropped CJS support. So, you will have to update your import scripts as follows.</p> <pre lang="html"><code>&lt;script type=&quot;module&quot;&gt; import mermaid from 'https://cdn.jsdelivr.net/npm/mermaid@10/dist/mermaid.esm.min.mjs'; mermaid.initialize({ startOnLoad: true }); &lt;/script&gt; </code></pre> <p>You can keep using v9 by adding the <code>@9</code> in the CDN URL.</p> <pre lang="diff"><code>- &lt;script src=&quot;https://cdn.jsdelivr.net/npm/mermaid/dist/mermaid.js&quot;&gt;&lt;/script&gt; + &lt;script src=&quot;https://cdn.jsdelivr.net/npm/mermaid@9/dist/mermaid.js&quot;&gt;&lt;/script&gt; </code></pre> <h3>mermaid.render is async and doesn't accept callbacks</h3> <pre lang="js"><code>// &lt; v10 mermaid.render('id', 'graph TD;\nA--&gt;B', (svg, bindFunctions) =&gt; { element.innerHTML = svg; if (bindFunctions) { bindFunctions(element); } }); <p>// Shorter syntax if (bindFunctions) { bindFunctions(element); } // can be replaced with the <code>?.</code> shorthand bindFunctions?.(element);</p> <p>// &gt;= v10 with async/await const { svg, bindFunctions } = await mermaid.render('id', 'graph TD;\nA--&gt;B'); element.innerHTML = svg; bindFunctions?.(element);</p> <p>// &gt;= v10 with promise.then mermaid.render('id', 'graph TD;A--&gt;B').then(({ svg, bindFunctions }) =&gt; { element.innerHTML = svg; bindFunctions?.(element); }); </code></pre></p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/mermaid-js/mermaid/commit/555d4f2cdc83ebeaf0b41f57a05722ffb6d921af"><code>555d4f2</code></a> Fix spellings</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/75633ba125035256d1519117bd90e245e9bcd704"><code>75633ba</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/4118">#4118</a> from fkohrt/patch-1</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/ec5fa31a111723cfe659776f1fb78b4feeb61f94"><code>ec5fa31</code></a> Wrap option working in test case</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/bfb8a75fcabd8c065126a8134a9118a7dceda9b1"><code>bfb8a75</code></a> Fix typos</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/14c15b221ad11bb53edd1689f2aedd6f6df6c483"><code>14c15b2</code></a> Minor cleanup</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/8743e9e30eba80e879498ee76464ef4ec4152c80"><code>8743e9e</code></a> Removed the deprecated use of mindmap in Demo</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/22b18a4320feca32ef0b52e0c675f691dc3a9529"><code>22b18a4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/4113">#4113</a> from mermaid-js/3192_invisible_edges</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/786023ffa670166c739b02c02f67b2276ede8065"><code>786023f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/mermaid-js/mermaid/issues/4110">#4110</a> from mermaid-js/sidv/splitDiagrams</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/68cdc759a736f8b11a87ce3bce799e184353b954"><code>68cdc75</code></a> Minor cleanup</li> <li><a href="https://github.com/mermaid-js/mermaid/commit/eb04d80df01c73a8e74b09e10d728725254976ef"><code>eb04d80</code></a> Update docs</li> <li>Additional commits viewable in <a href="https://github.com/mermaid-js/mermaid/compare/8.13.8...v10.0.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~p_brolin47">p_brolin47</a>, a new releaser for mermaid since your current version.</p> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/BoostIO/BoostNote-App/network/alerts). </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/BoostNote-App#1464
No description provided.