Skip to content

Commit 62d1c9f

Browse files
chore(deps): bump the npm_and_yarn group across 1 directory with 7 updates (#413)
Bumps the npm_and_yarn group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [fast-xml-parser](https://github.com/NaturalIntelligence/fast-xml-parser) | `4.5.3` | `4.5.6` | | [js-yaml](https://github.com/nodeca/js-yaml) | `3.14.1` | `3.14.2` | | [picomatch](https://github.com/micromatch/picomatch) | `2.3.1` | `2.3.2` | | [serve-static](https://github.com/expressjs/serve-static) | `1.15.0` | `1.16.3` | | [shell-quote](https://github.com/ljharb/shell-quote) | `1.8.1` | `1.8.4` | | [tmp](https://github.com/raszi/node-tmp) | `0.2.5` | `0.2.7` | | [yaml](https://github.com/eemeli/yaml) | `2.4.5` | `2.9.0` | Updates `fast-xml-parser` from 4.5.3 to 4.5.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/NaturalIntelligence/fast-xml-parser/releases">fast-xml-parser's releases</a>.</em></p> <blockquote> <h2>Summary update on all the previous releases from v4.2.4</h2> <ul> <li>Multiple minor fixes provided in the validator and parser</li> <li>v6 is added for experimental use.</li> <li>ignoreAttributes support function, and array of string or regex</li> <li>Add support for parsing HTML numeric entities</li> <li>v5 of the application is ESM module now. However, JS is also supported</li> </ul> <p><strong>Note</strong>: Release section in not updated frequently. Please check <a href="https://github.com/NaturalIntelligence/fast-xml-parser/blob/master/CHANGELOG.md">CHANGELOG</a> or <a href="https://github.com/NaturalIntelligence/fast-xml-parser/tags">Tags</a> for latest release information.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/NaturalIntelligence/fast-xml-parser/commit/42fbb0bc95e753e03fe52cb0805a8774bba4bf28"><code>42fbb0b</code></a> update release info</li> <li><a href="https://github.com/NaturalIntelligence/fast-xml-parser/commit/805671cb6c19108b171b876cf3e8865f18cdb8fd"><code>805671c</code></a> increase expansion limit as many system need it</li> <li><a href="https://github.com/NaturalIntelligence/fast-xml-parser/commit/9a2cf097c2961d4ad878f618e39fb0a9f5a0e9e5"><code>9a2cf09</code></a> update version</li> <li><a href="https://github.com/NaturalIntelligence/fast-xml-parser/commit/88d0936a23dabe51bfbf42255e2ce912dfee2221"><code>88d0936</code></a> apply all fixes from v5</li> <li><a href="https://github.com/NaturalIntelligence/fast-xml-parser/commit/d4eb6b4713a8d11e6730943392419040898ecbc0"><code>d4eb6b4</code></a> update release version</li> <li>See full diff in <a href="https://github.com/NaturalIntelligence/fast-xml-parser/compare/v4.5.3...v4.5.6">compare view</a></li> </ul> </details> <br /> Updates `js-yaml` from 3.14.1 to 3.14.2 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md">js-yaml's changelog</a>.</em></p> <blockquote> <h2>[3.14.2] - 2025-11-15</h2> <h3>Security</h3> <ul> <li>Backported v4.1.1 fix to v3</li> </ul> <h2>[4.1.1] - 2025-11-12</h2> <h3>Security</h3> <ul> <li>Fix prototype pollution issue in yaml merge (&lt;&lt;) operator.</li> </ul> <h2>[4.1.0] - 2021-04-15</h2> <h3>Added</h3> <ul> <li>Types are now exported as <code>yaml.types.XXX</code>.</li> <li>Every type now has <code>options</code> property with original arguments kept as they were (see <code>yaml.types.int.options</code> as an example).</li> </ul> <h3>Changed</h3> <ul> <li><code>Schema.extend()</code> now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as <code>abcd</code> instead of <code>cbad</code>).</li> </ul> <h2>[4.0.0] - 2021-01-03</h2> <h3>Changed</h3> <ul> <li>Check migration guide in <a href="https://github.com/nodeca/js-yaml/blob/master/docs">docs</a> for details of all breaking changes.</li> <li>Breaking: &quot;unsafe&quot; tags <code>!!js/function</code>, <code>!!js/regexp</code>, <code>!!js/undefined</code> are moved to <a href="https://github.com/nodeca/js-yaml-js-types">js-yaml-js-types</a> package.</li> <li>Breaking: removed <code>safe*</code> functions. Use <code>load</code>, <code>loadAll</code>, <code>dump</code> instead which are all now safe by default.</li> <li><code>yaml.DEFAULT_SAFE_SCHEMA</code> and <code>yaml.DEFAULT_FULL_SCHEMA</code> are removed, use <code>yaml.DEFAULT_SCHEMA</code> instead.</li> <li><code>yaml.Schema.create(schema, tags)</code> is removed, use <code>schema.extend(tags)</code> instead.</li> <li><code>!!binary</code> now always mapped to <code>Uint8Array</code> on load.</li> <li>Reduced nesting of <code>/lib</code> folder.</li> <li>Parse numbers according to YAML 1.2 instead of YAML 1.1 (<code>01234</code> is now decimal, <code>0o1234</code> is octal, <code>1:23</code> is parsed as string instead of base60).</li> <li><code>dump()</code> no longer quotes <code>:</code>, <code>[</code>, <code>]</code>, <code>(</code>, <code>)</code> except when necessary, <a href="https://redirect.github.com/nodeca/js-yaml/issues/470">#470</a>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/557">#557</a>.</li> <li>Line and column in exceptions are now formatted as <code>(X:Y)</code> instead of <code>at line X, column Y</code> (also present in compact format), <a href="https://redirect.github.com/nodeca/js-yaml/issues/332">#332</a>.</li> <li>Code snippet created in exceptions now contains multiple lines with line numbers.</li> <li><code>dump()</code> now serializes <code>undefined</code> as <code>null</code> in collections and removes keys with <code>undefined</code> in mappings, <a href="https://redirect.github.com/nodeca/js-yaml/issues/571">#571</a>.</li> <li><code>dump()</code> with <code>skipInvalid=true</code> now serializes invalid items in collections as null.</li> <li>Custom tags starting with <code>!</code> are now dumped as <code>!tag</code> instead of <code>!&lt;!tag&gt;</code>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/576">#576</a>.</li> <li>Custom tags starting with <code>tag:yaml.org,2002:</code> are now shorthanded using <code>!!</code>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/258">#258</a>.</li> </ul> <h3>Added</h3> <ul> <li>Added <code>.mjs</code> (es modules) support.</li> <li>Added <code>quotingType</code> and <code>forceQuotes</code> options for dumper to configure string literal style, <a href="https://redirect.github.com/nodeca/js-yaml/issues/290">#290</a>, <a href="https://redirect.github.com/nodeca/js-yaml/issues/529">#529</a>.</li> <li>Added <code>styles: { '!!null': 'empty' }</code> option for dumper</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nodeca/js-yaml/commit/9963d366dfbde0c69722452bcd40b41e7e4160a0"><code>9963d36</code></a> 3.14.2 released</li> <li><a href="https://github.com/nodeca/js-yaml/commit/10d3c8e70a6888543f5cdb656bb39f73e0ea77c1"><code>10d3c8e</code></a> dist rebuild</li> <li><a href="https://github.com/nodeca/js-yaml/commit/5278870a17454fe8621dbd8c445c412529525266"><code>5278870</code></a> fix prototype pollution in merge (&lt;&lt;) (<a href="https://redirect.github.com/nodeca/js-yaml/issues/731">#731</a>)</li> <li>See full diff in <a href="https://github.com/nodeca/js-yaml/compare/3.14.1...3.14.2">compare view</a></li> </ul> </details> <br /> Updates `picomatch` from 2.3.1 to 2.3.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/micromatch/picomatch/releases">picomatch's releases</a>.</em></p> <blockquote> <h2>2.3.2</h2> <p>This is a security release fixing several security relevant issues.</p> <h2>What's Changed</h2> <ul> <li>fix: exception when glob pattern contains constructor by <a href="https://github.com/Jason3S"><code>@​Jason3S</code></a> in <a href="https://redirect.github.com/micromatch/picomatch/pull/144">micromatch/picomatch#144</a></li> <li>Fix for <a href="https://github.com/micromatch/picomatch/security/advisories/GHSA-c2c7-rcm5-vvqj">CVE-2026-33671</a></li> <li>Fix for <a href="https://github.com/micromatch/picomatch/security/advisories/GHSA-3v7f-55p6-f55p">CVE-2026-33672</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2">https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md">picomatch's changelog</a>.</em></p> <blockquote> <h1>Release history</h1> <p><strong>All notable changes to this project will be documented in this file.</strong></p> <p>The format is based on <a href="http://keepachangelog.com/en/1.0.0/">Keep a Changelog</a> and this project adheres to <a href="http://semver.org/spec/v2.0.0.html">Semantic Versioning</a>.</p> <!-- raw HTML omitted --> <ul> <li>Changelogs are for humans, not machines.</li> <li>There should be an entry for every single version.</li> <li>The same types of changes should be grouped.</li> <li>Versions and sections should be linkable.</li> <li>The latest version comes first.</li> <li>The release date of each versions is displayed.</li> <li>Mention whether you follow Semantic Versioning.</li> </ul> <!-- raw HTML omitted --> <!-- raw HTML omitted --> <p>Changelog entries are classified using the following labels <em>(from <a href="http://keepachangelog.com/">keep-a-changelog</a></em>):</p> <ul> <li><code>Added</code> for new features.</li> <li><code>Changed</code> for changes in existing functionality.</li> <li><code>Deprecated</code> for soon-to-be removed features.</li> <li><code>Removed</code> for now removed features.</li> <li><code>Fixed</code> for any bug fixes.</li> <li><code>Security</code> in case of vulnerabilities.</li> </ul> <!-- raw HTML omitted --> <h2>4.0.0 (2024-02-07)</h2> <h3>Fixes</h3> <ul> <li>Fix bad text values in parse <a href="https://redirect.github.com/micromatch/picomatch/issues/126">#126</a>, thanks to <a href="https://github.com/connor4312"><code>@​connor4312</code></a></li> </ul> <h3>Changed</h3> <ul> <li>Remove process global to work outside of node <a href="https://redirect.github.com/micromatch/picomatch/issues/129">#129</a>, thanks to <a href="https://github.com/styfle"><code>@​styfle</code></a></li> <li>Add sideEffects to package.json <a href="https://redirect.github.com/micromatch/picomatch/issues/128">#128</a>, thanks to <a href="https://github.com/frandiox"><code>@​frandiox</code></a></li> <li>Removed <code>os</code>, make compatible browser environment. See <a href="https://redirect.github.com/micromatch/picomatch/issues/124">#124</a>, thanks to <a href="https://github.com/gwsbhqt"><code>@​gwsbhqt</code></a></li> </ul> <h2>3.0.1</h2> <h3>Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/micromatch/picomatch/commit/81cba8d4b767cab3cb29d26eb4f691eed75b73b2"><code>81cba8d</code></a> Publish 2.3.2</li> <li><a href="https://github.com/micromatch/picomatch/commit/fc1f6b69006e9435caf8fb40d8aff378bc0b7bce"><code>fc1f6b6</code></a> Merge commit from fork</li> <li><a href="https://github.com/micromatch/picomatch/commit/eec17aee5428a7249e9ca5adbb8a0d28fa29619b"><code>eec17ae</code></a> Merge commit from fork</li> <li><a href="https://github.com/micromatch/picomatch/commit/78f8ca4362d9e66cadea97b93e292f10096452ed"><code>78f8ca4</code></a> Merge pull request <a href="https://redirect.github.com/micromatch/picomatch/issues/156">#156</a> from micromatch/backport-144</li> <li><a href="https://github.com/micromatch/picomatch/commit/3f4f10eaa65bf3a52e8f2999674cd27e11fa3c9b"><code>3f4f10e</code></a> Merge pull request <a href="https://redirect.github.com/micromatch/picomatch/issues/144">#144</a> from Jason3S/jdent-object-properties</li> <li>See full diff in <a href="https://github.com/micromatch/picomatch/compare/2.3.1...2.3.2">compare view</a></li> </ul> </details> <br /> Updates `serve-static` from 1.15.0 to 1.16.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/expressjs/serve-static/releases">serve-static's releases</a>.</em></p> <blockquote> <h2>v1.16.3</h2> <h2>What's Changed</h2> <ul> <li>deps: send@~0.19.1 by <a href="https://github.com/Phillip9587"><code>@​Phillip9587</code></a> in <a href="https://redirect.github.com/expressjs/serve-static/pull/227">expressjs/serve-static#227</a></li> <li>Release: 1.16.3 by <a href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a> in <a href="https://redirect.github.com/expressjs/serve-static/pull/229">expressjs/serve-static#229</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/expressjs/serve-static/compare/v1.16.2...v1.16.3">https://github.com/expressjs/serve-static/compare/v1.16.2...v1.16.3</a></p> <h2>v1.16.2</h2> <h2>What's Changed</h2> <ul> <li>encodeurl@~2.0.0 by <a href="https://github.com/wesleytodd"><code>@​wesleytodd</code></a> in <a href="https://redirect.github.com/expressjs/serve-static/pull/180">expressjs/serve-static#180</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/expressjs/serve-static/compare/v1.16.1...v1.16.2">https://github.com/expressjs/serve-static/compare/v1.16.1...v1.16.2</a></p> <h2>v1.16.1</h2> <h2>What's Changed</h2> <ul> <li>bump send to 0.19 by <a href="https://github.com/tommasini"><code>@​tommasini</code></a> in <a href="https://redirect.github.com/expressjs/serve-static/pull/176">expressjs/serve-static#176</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/tommasini"><code>@​tommasini</code></a> made their first contribution in <a href="https://redirect.github.com/expressjs/serve-static/pull/176">expressjs/serve-static#176</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/expressjs/serve-static/compare/1.16.0...v1.16.1">https://github.com/expressjs/serve-static/compare/1.16.0...v1.16.1</a></p> <h2>1.16.0</h2> <h2>What's Changed</h2> <ul> <li>Remove link renderization in html while redirecting (<a href="https://redirect.github.com/expressjs/serve-static/pull/173">expressjs/serve-static#173</a>)</li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/UlisesGascon"><code>@​UlisesGascon</code></a> made their first contribution in <a href="https://redirect.github.com/expressjs/serve-static/pull/173">expressjs/serve-static#173</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/expressjs/serve-static/compare/v1.15.0...1.16.0">https://github.com/expressjs/serve-static/compare/v1.15.0...1.16.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/expressjs/serve-static/blob/master/HISTORY.md">serve-static's changelog</a>.</em></p> <blockquote> <h1>1.16.3 / 2024-12-15</h1> <ul> <li>deps: send@~0.19.1 <ul> <li>deps: encodeurl@~2.0.0</li> </ul> </li> </ul> <h1>1.16.2 / 2024-09-11</h1> <ul> <li>deps: encodeurl@~2.0.0</li> </ul> <h1>1.16.1 / 2024-09-11</h1> <ul> <li>deps: send@0.19.0</li> </ul> <h1>1.16.0 / 2024-09-10</h1> <ul> <li>Remove link renderization in html while redirecting</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/expressjs/serve-static/commit/9acad22498aa5f95b6e887eae1ab9eae63657d8a"><code>9acad22</code></a> 1.16.3 (<a href="https://redirect.github.com/expressjs/serve-static/issues/229">#229</a>)</li> <li><a href="https://github.com/expressjs/serve-static/commit/52dc97d9d3a0269266d005b79eeac295d0a5a895"><code>52dc97d</code></a> deps: send@~0.19.1 and upgrade Node.js versions on the CI (<a href="https://redirect.github.com/expressjs/serve-static/issues/227">#227</a>)</li> <li><a href="https://github.com/expressjs/serve-static/commit/ec9c5ecfb09368519e4698ffbbe1882de00d0ef2"><code>ec9c5ec</code></a> 1.16.2</li> <li><a href="https://github.com/expressjs/serve-static/commit/f454d37c68fdad04b582cb9ac0cd165ab6d19114"><code>f454d37</code></a> fix(deps): encodeurl@~2.0.0</li> <li><a href="https://github.com/expressjs/serve-static/commit/77a8255688cc4affc70e6dc9aa02e3ced4957e77"><code>77a8255</code></a> 1.16.1</li> <li><a href="https://github.com/expressjs/serve-static/commit/4263f496876980c165a3104d087c1ebaa046ad3d"><code>4263f49</code></a> fix(deps): send@0.19.0</li> <li><a href="https://github.com/expressjs/serve-static/commit/48c73970b129b96cba448e792576ad89b1f9fbed"><code>48c7397</code></a> 1.16.0</li> <li><a href="https://github.com/expressjs/serve-static/commit/0c11fad159898cdc69fd9ab63269b72468ecaf6b"><code>0c11fad</code></a> Merge commit from fork</li> <li>See full diff in <a href="https://github.com/expressjs/serve-static/compare/v1.15.0...v1.16.3">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/~ulisesgascon">ulisesgascon</a>, a new releaser for serve-static since your current version.</p> </details> <br /> Updates `shell-quote` from 1.8.1 to 1.8.4 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/ljharb/shell-quote/blob/main/CHANGELOG.md">shell-quote's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/ljharb/shell-quote/compare/v1.8.3...v1.8.4">v1.8.4</a> - 2026-05-22</h2> <h3>Commits</h3> <ul> <li>[Fix] <code>quote</code>: validate object-token shapes <a href="https://github.com/ljharb/shell-quote/commit/4378a6e613db5948168684864e49b42b83134d2d"><code>4378a6e</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>eslint</code>, <code>npmignore</code> <a href="https://github.com/ljharb/shell-quote/commit/22ebec04349065a45ad8afc8cc8d53c4624634a6"><code>22ebec0</code></a></li> <li>[Tests] increase coverage <a href="https://github.com/ljharb/shell-quote/commit/9f3caa31900cc6ee64858b31134144c648ce206d"><code>9f3caa3</code></a></li> <li>[readme] replace runkit CI badge with shields.io check-runs badge <a href="https://github.com/ljharb/shell-quote/commit/3344a047dd1e95f71c4ca27522cbfd05c56277e0"><code>3344a04</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code> <a href="https://github.com/ljharb/shell-quote/commit/699c5113d135f4d4591574bebf173334ffa453d4"><code>699c511</code></a></li> </ul> <h2><a href="https://github.com/ljharb/shell-quote/compare/v1.8.2...v1.8.3">v1.8.3</a> - 2025-06-01</h2> <h3>Fixed</h3> <ul> <li>[Fix] remove unnecessary backslash escaping in single quotes <a href="https://redirect.github.com/ljharb/shell-quote/issues/15"><code>[#15](https://github.com/ljharb/shell-quote/issues/15)</code></a></li> </ul> <h2><a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.2">v1.8.2</a> - 2024-11-27</h2> <h3>Fixed</h3> <ul> <li>[Fix] <code>quote</code>: preserve empty strings <a href="https://redirect.github.com/ljharb/shell-quote/issues/18"><code>[#18](https://github.com/ljharb/shell-quote/issues/18)</code></a></li> </ul> <h3>Commits</h3> <ul> <li>[meta] fix changelog tags <a href="https://github.com/ljharb/shell-quote/commit/0fb9fd8441aa06f7de995e90ce85bd9e758f5f05"><code>0fb9fd8</code></a></li> <li>[actions] split out node 10-20, and 20+ <a href="https://github.com/ljharb/shell-quote/commit/819bd842e0b01f3e5041834ab82bad299851de08"><code>819bd84</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>npmignore</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/fc564086c83317363908b55f6c744ad35983ccca"><code>fc56408</code></a></li> <li>[actions] update npm for windows tests <a href="https://github.com/ljharb/shell-quote/commit/fdeb0fd102ecdd4ff227a978532598c462312347"><code>fdeb0fd</code></a></li> <li>[Dev Deps] update <code>@ljharb/eslint-config</code>, <code>aud</code>, <code>tape</code> <a href="https://github.com/ljharb/shell-quote/commit/b8a4a3b3f5ae3ca8ae86b89ed0030e4e3358ef3c"><code>b8a4a3b</code></a></li> <li>[actions] prevent node 14 on ARM mac from failing <a href="https://github.com/ljharb/shell-quote/commit/9eecafc0486c9321be223415cf3fb76a5bd07dda"><code>9eecafc</code></a></li> <li>[meta] exclude more files from the package <a href="https://github.com/ljharb/shell-quote/commit/4044e7fad4a45e696602060b69b31a95702bee28"><code>4044e7f</code></a></li> <li>[Tests] replace <code>aud</code> with <code>npm audit</code> <a href="https://github.com/ljharb/shell-quote/commit/8cfdbd8ec30e653f9f99348e59117ed4a789e1ba"><code>8cfdbd8</code></a></li> <li>[meta] add missing <code>engines.node</code> <a href="https://github.com/ljharb/shell-quote/commit/843820e1a46cebcf10d8e48c4d82d0ab5a7b0194"><code>843820e</code></a></li> <li>[Dev Deps] add missing peer dep <a href="https://github.com/ljharb/shell-quote/commit/4c3b88d7925d29e9cc1ac76ccde05f4e714ede96"><code>4c3b88d</code></a></li> <li>[Dev Deps] pin <code>jackspeak</code> since 2.1.2+ depends on npm aliases, which kill the install process in npm &lt; 6 <a href="https://github.com/ljharb/shell-quote/commit/80322ed5914a5922d9507946490fbabcc96e624b"><code>80322ed</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ljharb/shell-quote/commit/ff166e2b63eb5f932bd131a8886a99e9afdf45ae"><code>ff166e2</code></a> v1.8.4</li> <li><a href="https://github.com/ljharb/shell-quote/commit/4378a6e613db5948168684864e49b42b83134d2d"><code>4378a6e</code></a> [Fix] <code>quote</code>: validate object-token shapes</li> <li><a href="https://github.com/ljharb/shell-quote/commit/22ebec04349065a45ad8afc8cc8d53c4624634a6"><code>22ebec0</code></a> [Dev Deps] update <code>@ljharb/eslint-config</code>, <code>auto-changelog</code>, <code>eslint</code>, `npmig...</li> <li><a href="https://github.com/ljharb/shell-quote/commit/9f3caa31900cc6ee64858b31134144c648ce206d"><code>9f3caa3</code></a> [Tests] increase coverage</li> <li><a href="https://github.com/ljharb/shell-quote/commit/3344a047dd1e95f71c4ca27522cbfd05c56277e0"><code>3344a04</code></a> [readme] replace runkit CI badge with shields.io check-runs badge</li> <li><a href="https://github.com/ljharb/shell-quote/commit/699c5113d135f4d4591574bebf173334ffa453d4"><code>699c511</code></a> [Dev Deps] update <code>@ljharb/eslint-config</code></li> <li><a href="https://github.com/ljharb/shell-quote/commit/487a9b41a7b6154d2a9c10bdffe65cf74d2c3ded"><code>487a9b4</code></a> v1.8.3</li> <li><a href="https://github.com/ljharb/shell-quote/commit/01faafff9727bf2b72ede0e7cb291bdd8438a8df"><code>01faaff</code></a> [Fix] remove unnecessary backslash escaping in single quotes</li> <li><a href="https://github.com/ljharb/shell-quote/commit/b19fc77e66871eee10a9978d54c27d802a1da99b"><code>b19fc77</code></a> v1.8.2</li> <li><a href="https://github.com/ljharb/shell-quote/commit/59d29ea6941335258ceb75bab95d045886650436"><code>59d29ea</code></a> [Fix] <code>quote</code>: preserve empty strings</li> <li>Additional commits viewable in <a href="https://github.com/ljharb/shell-quote/compare/v1.8.1...v1.8.4">compare view</a></li> </ul> </details> <br /> Updates `tmp` from 0.2.5 to 0.2.7 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/raszi/node-tmp/commit/8ea1f37d75c67569e0f151448330d52f7babf211"><code>8ea1f37</code></a> Bump up the version</li> <li><a href="https://github.com/raszi/node-tmp/commit/8f24f788a356b5d45c9bec894632bd4931338153"><code>8f24f78</code></a> Merge commit from fork</li> <li><a href="https://github.com/raszi/node-tmp/commit/ce787f37aaacccad921ae90990c9da33481fe59c"><code>ce787f3</code></a> Reject non-string prefix, postfix, template</li> <li><a href="https://github.com/raszi/node-tmp/commit/41f71598d03f104a67e0448a7cb9bd4efcdd5980"><code>41f7159</code></a> Bump up the version</li> <li><a href="https://github.com/raszi/node-tmp/commit/efa4a06f24374797ae32ab2b6ae39b7a611ae429"><code>efa4a06</code></a> Merge commit from fork</li> <li><a href="https://github.com/raszi/node-tmp/commit/7ef2728ce0211b8110b2033dfe62eaf030341acf"><code>7ef2728</code></a> Check for relative values</li> <li>See full diff in <a href="https://github.com/raszi/node-tmp/compare/v0.2.5...v0.2.7">compare view</a></li> </ul> </details> <br /> Updates `yaml` from 2.4.5 to 2.9.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/eemeli/yaml/releases">yaml's releases</a>.</em></p> <blockquote> <h2>v2.9.0</h2> <p>The changes here are really only patches, but I'm releasing this as a minor version to note a small change to the documentation of <code>parseDocument()</code> and <code>parseAllDocuments()</code>: I've removed the claim that they'll &quot;never throw&quot;.</p> <p>It remains the case that practically all non-malicious inputs will be handled without emitting an error, but there is a decent chance that code paths remain where e.g. a RangeError due to call stack exhaustion can be triggered by malicious inputs. Up to now, I've considered these as security vulnerabilities, and in fact it's the only category of error for which <code>yaml</code> CVEs have been issued so far.</p> <p>Starting from this release, I'll be considering such errors as bugs, but not vulnerabilities. I do welcome people and/or LLMs looking for them, but please report them as normal issues rather than suspected security vulnerabilities. This also applies to previously undiscovered bugs in earlier releases.</p> <ul> <li>fix: Avoid calling <code>Array.prototype.push.apply()</code> with large source array</li> <li>fix(lexer): Avoid recursive calls that may exhaust the call stack</li> </ul> <h2>v2.8.4</h2> <ul> <li>Disable alias resolution with <code>maxAliasCount:0</code> (<a href="https://redirect.github.com/eemeli/yaml/issues/677">#677</a>)</li> <li>Handle invalid unicode escapes (e1a1a77)</li> <li>Apply <code>minFractionDigits</code> only to decimal strings (<a href="https://redirect.github.com/eemeli/yaml/issues/676">#676</a>)</li> </ul> <h2>v2.8.3</h2> <ul> <li>Add <code>trailingComma</code> ToString option for multiline flow formatting (<a href="https://redirect.github.com/eemeli/yaml/issues/670">#670</a>)</li> <li>Catch stack overflow during node composition (1e84ebb)</li> </ul> <h2>v2.8.2</h2> <ul> <li>Serialize -0 as -0 (<a href="https://redirect.github.com/eemeli/yaml/issues/638">#638</a>)</li> <li>Do not double newlines for empty map values (<a href="https://redirect.github.com/eemeli/yaml/issues/642">#642</a>)</li> </ul> <h2>v2.8.1</h2> <ul> <li>Preserve empty block literals (<a href="https://redirect.github.com/eemeli/yaml/issues/634">#634</a>)</li> </ul> <h2>v2.8.0</h2> <ul> <li>Add node cache for faster alias resolution (<a href="https://redirect.github.com/eemeli/yaml/issues/612">#612</a>)</li> <li>Re-introduce compatibility with Node.js 14.6 (<a href="https://redirect.github.com/eemeli/yaml/issues/614">#614</a>)</li> <li>Add <code>--merge</code> option to CLI tool (<a href="https://redirect.github.com/eemeli/yaml/issues/611">#611</a>)</li> <li>Improve error for tag resolution error on null value (<a href="https://redirect.github.com/eemeli/yaml/issues/616">#616</a>)</li> <li>Allow empty string as plain scalar representation, for failsafe schema (<a href="https://redirect.github.com/eemeli/yaml/issues/616">#616</a>)</li> <li>docs: include cli example (<a href="https://redirect.github.com/eemeli/yaml/issues/617">#617</a>)</li> </ul> <h2>v2.7.1</h2> <ul> <li>Do not allow seq with single-line collection value on same line with map key (<a href="https://redirect.github.com/eemeli/yaml/issues/603">#603</a>)</li> <li>Improve warning &amp; avoid TypeError on bad YAML 1.1 nodes (<a href="https://redirect.github.com/eemeli/yaml/issues/610">#610</a>)</li> </ul> <h2>v2.7.0</h2> <p>The library is now available on JSR as <a href="https://jsr.io/@eemeli/yaml">@​eemeli/yaml</a> and on deno.land/x as <a href="https://deno.land/x/yaml">yaml</a>. In addition to Node.js and browsers, it should work in Deno, Bun, and Cloudflare Workers.</p> <ul> <li>Use .ts extension in all relative imports (<a href="https://redirect.github.com/eemeli/yaml/issues/591">#591</a>)</li> <li>Ignore newline after block seq indicator as space before value (<a href="https://redirect.github.com/eemeli/yaml/issues/590">#590</a>)</li> <li>Require Node.js 14.18 or later (was 14.6) (<a href="https://redirect.github.com/eemeli/yaml/issues/598">#598</a>)</li> </ul> <h2>v2.6.1</h2> <ul> <li>Do not strip <code>:00</code> seconds from <code>!!timestamp</code> values (<a href="https://redirect.github.com/eemeli/yaml/issues/578">#578</a>, with thanks to <a href="https://github.com/qraynaud"><code>@​qraynaud</code></a>)</li> <li>Tighten regexp for JSON <code>!!bool</code> (<a href="https://redirect.github.com/eemeli/yaml/issues/587">#587</a>, with thanks to <a href="https://github.com/vra5107"><code>@​vra5107</code></a>)</li> <li>Default to literal block scalar if folded would overflow (<a href="https://redirect.github.com/eemeli/yaml/issues/585">#585</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/eemeli/yaml/commit/ddb21b04cb889722cec8f89dc1b67f19d62d7f7d"><code>ddb21b0</code></a> 2.9.0</li> <li><a href="https://github.com/eemeli/yaml/commit/167365befdae1f03d53d47a8c6533140a9d48a75"><code>167365b</code></a> docs: Clarify that not all errors can be avoided</li> <li><a href="https://github.com/eemeli/yaml/commit/6eca2a7087548f86c4edb6a7cf2cdfe548759f06"><code>6eca2a7</code></a> fix: Avoid calling Array.prototype.push.apply() with large source array</li> <li><a href="https://github.com/eemeli/yaml/commit/0543cd57fd61ea15a58e9f0ec2064b8b408177d8"><code>0543cd5</code></a> fix(lexer): Avoid recursive calls that may exhaust the call stack</li> <li><a href="https://github.com/eemeli/yaml/commit/ccdf7439587544f64223429498a1d9ec514eaac1"><code>ccdf743</code></a> 2.8.4</li> <li><a href="https://github.com/eemeli/yaml/commit/f625789dbd971c936ff66fe5c49e368062ae7b41"><code>f625789</code></a> fix: Disable alias resolution with maxAliasCount:0 (<a href="https://redirect.github.com/eemeli/yaml/issues/677">#677</a>)</li> <li><a href="https://github.com/eemeli/yaml/commit/e1a1a7735ff2e9717b87af36795bcd280f85f55d"><code>e1a1a77</code></a> fix: Handle invalid unicode escapes</li> <li><a href="https://github.com/eemeli/yaml/commit/a163ea009c57ab9f1054ca39b24b6ef4c1e9fdbe"><code>a163ea0</code></a> style: Satify Prettier</li> <li><a href="https://github.com/eemeli/yaml/commit/b2a5a6c615673056917aaa04d657802945e81425"><code>b2a5a6c</code></a> fix: Apply minFractionDigits only to decimal strings (<a href="https://redirect.github.com/eemeli/yaml/issues/676">#676</a>)</li> <li><a href="https://github.com/eemeli/yaml/commit/93c951b3478b4bb061d7b5227fd64f46d3f9df7f"><code>93c951b</code></a> chore: Bump JSR version to v2.8.3 (<a href="https://redirect.github.com/eemeli/yaml/issues/673">#673</a>)</li> <li>Additional commits viewable in <a href="https://github.com/eemeli/yaml/compare/v2.4.5...v2.9.0">compare view</a></li> </ul> </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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/livekit/client-sdk-react-native/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent bc1abff commit 62d1c9f

1 file changed

Lines changed: 59 additions & 127 deletions

File tree

yarn.lock

Lines changed: 59 additions & 127 deletions
Original file line numberDiff line numberDiff line change
@@ -6422,7 +6422,7 @@ __metadata:
64226422
languageName: node
64236423
linkType: hard
64246424

6425-
"depd@npm:2.0.0":
6425+
"depd@npm:2.0.0, depd@npm:~2.0.0":
64266426
version: 2.0.0
64276427
resolution: "depd@npm:2.0.0"
64286428
checksum: 10/c0c8ff36079ce5ada64f46cc9d6fd47ebcf38241105b6e0c98f412e8ad91f084bcf906ff644cc3a4bd876ca27a62accb8b0fff72ea6ed1a414b89d8506f4a5ca
@@ -7281,13 +7281,13 @@ __metadata:
72817281
linkType: hard
72827282

72837283
"fast-xml-parser@npm:^4.4.1":
7284-
version: 4.5.3
7285-
resolution: "fast-xml-parser@npm:4.5.3"
7284+
version: 4.5.6
7285+
resolution: "fast-xml-parser@npm:4.5.6"
72867286
dependencies:
7287-
strnum: "npm:^1.1.1"
7287+
strnum: "npm:^1.0.5"
72887288
bin:
72897289
fxparser: src/cli/cli.js
7290-
checksum: 10/ca22bf9d65c10b8447c1034c13403e90ecee210e2b3852690df3d8a42b8a46ec655fae7356096abd98a15b89ddaf11878587b1773e0c3be4cbc2ac4af4c7bf95
7290+
checksum: 10/dd77cce4b1b322400339147b72b2d315bddc12c6ed3ca82bfc87543ced6dd8d81a6e0b429489e2f048f39258aa2023580654c8934881c633b9d58a6e79672349
72917291
languageName: node
72927292
linkType: hard
72937293

@@ -7460,7 +7460,7 @@ __metadata:
74607460
languageName: node
74617461
linkType: hard
74627462

7463-
"fresh@npm:0.5.2":
7463+
"fresh@npm:~0.5.2":
74647464
version: 0.5.2
74657465
resolution: "fresh@npm:0.5.2"
74667466
checksum: 10/64c88e489b5d08e2f29664eb3c79c705ff9a8eb15d3e597198ef76546d4ade295897a44abb0abd2700e7ef784b2e3cbf1161e4fbf16f59129193fd1030d16da1
@@ -7964,6 +7964,19 @@ __metadata:
79647964
languageName: node
79657965
linkType: hard
79667966

7967+
"http-errors@npm:~2.0.1":
7968+
version: 2.0.1
7969+
resolution: "http-errors@npm:2.0.1"
7970+
dependencies:
7971+
depd: "npm:~2.0.0"
7972+
inherits: "npm:~2.0.4"
7973+
setprototypeof: "npm:~1.2.0"
7974+
statuses: "npm:~2.0.2"
7975+
toidentifier: "npm:~1.0.1"
7976+
checksum: 10/9fe31bc0edf36566c87048aed1d3d0cbe03552564adc3541626a0613f542d753fbcb13bdfcec0a3a530dbe1714bb566c89d46244616b66bddd26ac413b06a207
7977+
languageName: node
7978+
linkType: hard
7979+
79677980
"https-proxy-agent@npm:^7.0.5":
79687981
version: 7.0.6
79697982
resolution: "https-proxy-agent@npm:7.0.6"
@@ -8103,7 +8116,7 @@ __metadata:
81038116
languageName: node
81048117
linkType: hard
81058118

8106-
"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3":
8119+
"inherits@npm:2, inherits@npm:2.0.4, inherits@npm:^2.0.3, inherits@npm:^2.0.4, inherits@npm:~2.0.3, inherits@npm:~2.0.4":
81078120
version: 2.0.4
81088121
resolution: "inherits@npm:2.0.4"
81098122
checksum: 10/cd45e923bee15186c07fa4c89db0aace24824c482fb887b528304694b2aa6ff8a898da8657046a5dcf3e46cd6db6c61629551f9215f208d7c3f157cf9b290521
@@ -9263,19 +9276,7 @@ __metadata:
92639276
languageName: node
92649277
linkType: hard
92659278

9266-
"js-yaml@npm:^3.13.1":
9267-
version: 3.14.1
9268-
resolution: "js-yaml@npm:3.14.1"
9269-
dependencies:
9270-
argparse: "npm:^1.0.7"
9271-
esprima: "npm:^4.0.0"
9272-
bin:
9273-
js-yaml: bin/js-yaml.js
9274-
checksum: 10/9e22d80b4d0105b9899135365f746d47466ed53ef4223c529b3c0f7a39907743fdbd3c4379f94f1106f02755b5e90b2faaf84801a891135544e1ea475d1a1379
9275-
languageName: node
9276-
linkType: hard
9277-
9278-
"js-yaml@npm:^3.6.1":
9279+
"js-yaml@npm:^3.13.1, js-yaml@npm:^3.6.1":
92799280
version: 3.14.2
92809281
resolution: "js-yaml@npm:3.14.2"
92819282
dependencies:
@@ -9287,18 +9288,7 @@ __metadata:
92879288
languageName: node
92889289
linkType: hard
92899290

9290-
"js-yaml@npm:^4.1.0":
9291-
version: 4.1.0
9292-
resolution: "js-yaml@npm:4.1.0"
9293-
dependencies:
9294-
argparse: "npm:^2.0.1"
9295-
bin:
9296-
js-yaml: bin/js-yaml.js
9297-
checksum: 10/c138a34a3fd0d08ebaf71273ad4465569a483b8a639e0b118ff65698d257c2791d3199e3f303631f2cb98213fa7b5f5d6a4621fd0fff819421b990d30d967140
9298-
languageName: node
9299-
linkType: hard
9300-
9301-
"js-yaml@npm:^4.1.1":
9291+
"js-yaml@npm:^4.1.0, js-yaml@npm:^4.1.1":
93029292
version: 4.1.1
93039293
resolution: "js-yaml@npm:4.1.1"
93049294
dependencies:
@@ -10677,7 +10667,7 @@ __metadata:
1067710667
languageName: node
1067810668
linkType: hard
1067910669

10680-
"on-finished@npm:2.4.1":
10670+
"on-finished@npm:2.4.1, on-finished@npm:~2.4.1":
1068110671
version: 2.4.1
1068210672
resolution: "on-finished@npm:2.4.1"
1068310673
dependencies:
@@ -10989,20 +10979,13 @@ __metadata:
1098910979
linkType: hard
1099010980

1099110981
"picomatch@npm:^2.0.4, picomatch@npm:^2.2.3, picomatch@npm:^2.3.1":
10992-
version: 2.3.1
10993-
resolution: "picomatch@npm:2.3.1"
10994-
checksum: 10/60c2595003b05e4535394d1da94850f5372c9427ca4413b71210f437f7b2ca091dbd611c45e8b37d10036fa8eade25c1b8951654f9d3973bfa66a2ff4d3b08bc
10982+
version: 2.3.2
10983+
resolution: "picomatch@npm:2.3.2"
10984+
checksum: 10/b788ef8148a2415b9dec12f0bb350ae6a5830f8f1950e472abc2f5225494debf7d1b75eb031df0ceaea9e8ec3e7bad599e8dbf3c60d61b42be429ba41bff4426
1099510985
languageName: node
1099610986
linkType: hard
1099710987

10998-
"picomatch@npm:^4.0.3":
10999-
version: 4.0.3
11000-
resolution: "picomatch@npm:4.0.3"
11001-
checksum: 10/57b99055f40b16798f2802916d9c17e9744e620a0db136554af01d19598b96e45e2f00014c91d1b8b13874b80caa8c295b3d589a3f72373ec4aaf54baa5962d5
11002-
languageName: node
11003-
linkType: hard
11004-
11005-
"picomatch@npm:^4.0.4":
10988+
"picomatch@npm:^4.0.3, picomatch@npm:^4.0.4":
1100610989
version: 4.0.4
1100710990
resolution: "picomatch@npm:4.0.4"
1100810991
checksum: 10/f6ef80a3590827ce20378ae110ac78209cc4f74d39236370f1780f957b7ee41c12acde0e4651b90f39983506fd2f5e449994716f516db2e9752924aff8de93ce
@@ -11970,45 +11953,24 @@ __metadata:
1197011953
languageName: node
1197111954
linkType: hard
1197211955

11973-
"send@npm:0.18.0":
11974-
version: 0.18.0
11975-
resolution: "send@npm:0.18.0"
11976-
dependencies:
11977-
debug: "npm:2.6.9"
11978-
depd: "npm:2.0.0"
11979-
destroy: "npm:1.2.0"
11980-
encodeurl: "npm:~1.0.2"
11981-
escape-html: "npm:~1.0.3"
11982-
etag: "npm:~1.8.1"
11983-
fresh: "npm:0.5.2"
11984-
http-errors: "npm:2.0.0"
11985-
mime: "npm:1.6.0"
11986-
ms: "npm:2.1.3"
11987-
on-finished: "npm:2.4.1"
11988-
range-parser: "npm:~1.2.1"
11989-
statuses: "npm:2.0.1"
11990-
checksum: 10/ec66c0ad109680ad8141d507677cfd8b4e40b9559de23191871803ed241718e99026faa46c398dcfb9250676076573bd6bfe5d0ec347f88f4b7b8533d1d391cb
11991-
languageName: node
11992-
linkType: hard
11993-
11994-
"send@npm:0.19.0":
11995-
version: 0.19.0
11996-
resolution: "send@npm:0.19.0"
11956+
"send@npm:~0.19.1":
11957+
version: 0.19.2
11958+
resolution: "send@npm:0.19.2"
1199711959
dependencies:
1199811960
debug: "npm:2.6.9"
1199911961
depd: "npm:2.0.0"
1200011962
destroy: "npm:1.2.0"
12001-
encodeurl: "npm:~1.0.2"
11963+
encodeurl: "npm:~2.0.0"
1200211964
escape-html: "npm:~1.0.3"
1200311965
etag: "npm:~1.8.1"
12004-
fresh: "npm:0.5.2"
12005-
http-errors: "npm:2.0.0"
11966+
fresh: "npm:~0.5.2"
11967+
http-errors: "npm:~2.0.1"
1200611968
mime: "npm:1.6.0"
1200711969
ms: "npm:2.1.3"
12008-
on-finished: "npm:2.4.1"
11970+
on-finished: "npm:~2.4.1"
1200911971
range-parser: "npm:~1.2.1"
12010-
statuses: "npm:2.0.1"
12011-
checksum: 10/1f6064dea0ae4cbe4878437aedc9270c33f2a6650a77b56a16b62d057527f2766d96ee282997dd53ec0339082f2aad935bc7d989b46b48c82fc610800dc3a1d0
11972+
statuses: "npm:~2.0.2"
11973+
checksum: 10/e932a592f62c58560b608a402d52333a8ae98a5ada076feb5db1d03adaa77c3ca32a7befa1c4fd6dedc186e88f342725b0cb4b3d86835eaf834688b259bef18d
1201211974
languageName: node
1201311975
linkType: hard
1201411976

@@ -12019,27 +11981,15 @@ __metadata:
1201911981
languageName: node
1202011982
linkType: hard
1202111983

12022-
"serve-static@npm:^1.13.1":
12023-
version: 1.15.0
12024-
resolution: "serve-static@npm:1.15.0"
12025-
dependencies:
12026-
encodeurl: "npm:~1.0.2"
12027-
escape-html: "npm:~1.0.3"
12028-
parseurl: "npm:~1.3.3"
12029-
send: "npm:0.18.0"
12030-
checksum: 10/699b2d4c29807a51d9b5e0f24955346911437aebb0178b3c4833ad30d3eca93385ff9927254f5c16da345903cad39d9cd4a532198c95a5129cc4ed43911b15a4
12031-
languageName: node
12032-
linkType: hard
12033-
12034-
"serve-static@npm:^1.16.2":
12035-
version: 1.16.2
12036-
resolution: "serve-static@npm:1.16.2"
11984+
"serve-static@npm:^1.13.1, serve-static@npm:^1.16.2":
11985+
version: 1.16.3
11986+
resolution: "serve-static@npm:1.16.3"
1203711987
dependencies:
1203811988
encodeurl: "npm:~2.0.0"
1203911989
escape-html: "npm:~1.0.3"
1204011990
parseurl: "npm:~1.3.3"
12041-
send: "npm:0.19.0"
12042-
checksum: 10/7fa9d9c68090f6289976b34fc13c50ac8cd7f16ae6bce08d16459300f7fc61fbc2d7ebfa02884c073ec9d6ab9e7e704c89561882bbe338e99fcacb2912fde737
11991+
send: "npm:~0.19.1"
11992+
checksum: 10/149d6718dd9e53166784d0a65535e21a7c01249d9c51f57224b786a7306354c6807e7811a9f6c143b45c863b1524721fca2f52b5c81a8b5194e3dde034a03b9c
1204311993
languageName: node
1204411994
linkType: hard
1204511995

@@ -12076,7 +12026,7 @@ __metadata:
1207612026
languageName: node
1207712027
linkType: hard
1207812028

12079-
"setprototypeof@npm:1.2.0":
12029+
"setprototypeof@npm:1.2.0, setprototypeof@npm:~1.2.0":
1208012030
version: 1.2.0
1208112031
resolution: "setprototypeof@npm:1.2.0"
1208212032
checksum: 10/fde1630422502fbbc19e6844346778f99d449986b2f9cdcceb8326730d2f3d9964dbcb03c02aaadaefffecd0f2c063315ebea8b3ad895914bf1afc1747fc172e
@@ -12099,17 +12049,10 @@ __metadata:
1209912049
languageName: node
1210012050
linkType: hard
1210112051

12102-
"shell-quote@npm:^1.6.1":
12103-
version: 1.8.1
12104-
resolution: "shell-quote@npm:1.8.1"
12105-
checksum: 10/af19ab5a1ec30cb4b2f91fd6df49a7442d5c4825a2e269b3712eded10eedd7f9efeaab96d57829880733fc55bcdd8e9b1d8589b4befb06667c731d08145e274d
12106-
languageName: node
12107-
linkType: hard
12108-
12109-
"shell-quote@npm:^1.8.3":
12110-
version: 1.8.3
12111-
resolution: "shell-quote@npm:1.8.3"
12112-
checksum: 10/5473e354637c2bd698911224129c9a8961697486cff1fb221f234d71c153fc377674029b0223d1d3c953a68d451d79366abfe53d1a0b46ee1f28eb9ade928f4c
12052+
"shell-quote@npm:^1.6.1, shell-quote@npm:^1.8.3":
12053+
version: 1.8.4
12054+
resolution: "shell-quote@npm:1.8.4"
12055+
checksum: 10/a3e3796385f2cd5cf0b78207a4439f0c7395c0833fc75b2473084b5d298c109c5c0fa687fcd1c04e4b4484866e5bb8eaae7efae443b80fff71ea7e29baf11f0c
1211312056
languageName: node
1211412057
linkType: hard
1211512058

@@ -12277,6 +12220,13 @@ __metadata:
1227712220
languageName: node
1227812221
linkType: hard
1227912222

12223+
"statuses@npm:~2.0.2":
12224+
version: 2.0.2
12225+
resolution: "statuses@npm:2.0.2"
12226+
checksum: 10/6927feb50c2a75b2a4caab2c565491f7a93ad3d8dbad7b1398d52359e9243a20e2ebe35e33726dee945125ef7a515e9097d8a1b910ba2bbd818265a2f6c39879
12227+
languageName: node
12228+
linkType: hard
12229+
1228012230
"stop-iteration-iterator@npm:^1.0.0":
1228112231
version: 1.0.0
1228212232
resolution: "stop-iteration-iterator@npm:1.0.0"
@@ -12450,7 +12400,7 @@ __metadata:
1245012400
languageName: node
1245112401
linkType: hard
1245212402

12453-
"strnum@npm:^1.1.1":
12403+
"strnum@npm:^1.0.5":
1245412404
version: 1.1.2
1245512405
resolution: "strnum@npm:1.1.2"
1245612406
checksum: 10/ccd6297a1fdaf0fc8ea0ea904acdae76878d49a4b0d98a70155df4bc081fd88eac5ec99fb150f3d1d1af065c1898d38420705259ba6c39aa850c671bcd54e35d
@@ -12572,9 +12522,9 @@ __metadata:
1257212522
linkType: hard
1257312523

1257412524
"tmp@npm:^0.2.4":
12575-
version: 0.2.5
12576-
resolution: "tmp@npm:0.2.5"
12577-
checksum: 10/dd4b78b32385eab4899d3ae296007b34482b035b6d73e1201c4a9aede40860e90997a1452c65a2d21aee73d53e93cd167d741c3db4015d90e63b6d568a93d7ec
12525+
version: 0.2.7
12526+
resolution: "tmp@npm:0.2.7"
12527+
checksum: 10/0a3bc90beb0c6275273c3475fb57e466eaab1c9c4a101d029ff62b18146ce136e7f75d09de34863d9f2c2a492751402508f9e028bc98eb34a1416195d4b15619
1257812528
languageName: node
1257912529
linkType: hard
1258012530

@@ -12601,7 +12551,7 @@ __metadata:
1260112551
languageName: node
1260212552
linkType: hard
1260312553

12604-
"toidentifier@npm:1.0.1":
12554+
"toidentifier@npm:1.0.1, toidentifier@npm:~1.0.1":
1260512555
version: 1.0.1
1260612556
resolution: "toidentifier@npm:1.0.1"
1260712557
checksum: 10/952c29e2a85d7123239b5cfdd889a0dde47ab0497f0913d70588f19c53f7e0b5327c95f4651e413c74b785147f9637b17410ac8c846d5d4a20a5a33eb6dc3a45
@@ -13349,25 +13299,7 @@ __metadata:
1334913299
languageName: node
1335013300
linkType: hard
1335113301

13352-
"yaml@npm:^2.2.1":
13353-
version: 2.4.5
13354-
resolution: "yaml@npm:2.4.5"
13355-
bin:
13356-
yaml: bin.mjs
13357-
checksum: 10/b09bf5a615a65276d433d76b8e34ad6b4c0320b85eb3f1a39da132c61ae6e2ff34eff4624e6458d96d49566c93cf43408ba5e568218293a8c6541a2006883f64
13358-
languageName: node
13359-
linkType: hard
13360-
13361-
"yaml@npm:^2.2.2, yaml@npm:^2.6.1":
13362-
version: 2.8.1
13363-
resolution: "yaml@npm:2.8.1"
13364-
bin:
13365-
yaml: bin.mjs
13366-
checksum: 10/eae07b3947d405012672ec17ce27348aea7d1fa0534143355d24a43a58f5e05652157ea2182c4fe0604f0540be71f99f1173f9d61018379404507790dff17665
13367-
languageName: node
13368-
linkType: hard
13369-
13370-
"yaml@npm:^2.8.3":
13302+
"yaml@npm:^2.2.1, yaml@npm:^2.2.2, yaml@npm:^2.6.1, yaml@npm:^2.8.3":
1337113303
version: 2.9.0
1337213304
resolution: "yaml@npm:2.9.0"
1337313305
bin:

0 commit comments

Comments
 (0)