Skip to content

Commit 61c4066

Browse files
⬆️ Bump the dependencies group with 5 updates (#244)
Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.4.11` | `2.4.12` | | [@tanstack/react-query](https://github.com/TanStack/query/tree/HEAD/packages/react-query) | `5.99.0` | `5.99.2` | | [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.27` | `10.5.0` | | [postcss](https://github.com/postcss/postcss) | `8.5.9` | `8.5.10` | | [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `8.0.8` | `8.0.9` | Updates `@biomejs/biome` from 2.4.11 to 2.4.12 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/releases"><code>@​biomejs/biome</code>'s releases</a>.</em></p> <blockquote> <h2>Biome CLI v2.4.12</h2> <h2>2.4.12</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9376">#9376</a> <a href="https://github.com/biomejs/biome/commit/9701a336af701c36d0fe4892f53de049f63f46f4"><code>9701a33</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/no-identical-test-title"><code>nursery/noIdenticalTestTitle</code></a> lint rule. This rule disallows using the same title for two <code>describe</code> blocks or two test cases at the same nesting level.</p> <pre lang="js"><code>describe(&quot;foo&quot;, () =&gt; {}); describe(&quot;foo&quot;, () =&gt; { // invalid: same title as previous describe block test(&quot;baz&quot;, () =&gt; {}); test(&quot;baz&quot;, () =&gt; {}); // invalid: same title as previous test case }); </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9889">#9889</a> <a href="https://github.com/biomejs/biome/commit/7ae83f2f60dc83eae6ef72e4cb1d6f06f3a882de"><code>7ae83f2</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the diagnostics for <a href="https://biomejs.dev/linter/rules/use-for-of/"><code>useForOf</code></a> to better explain the problem, why it matters, and how to fix it.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9916">#9916</a> <a href="https://github.com/biomejs/biome/commit/27dd7b156b3bf9c461051b9997b277e1fee6fcb2"><code>27dd7b1</code></a> Thanks <a href="https://github.com/Jayllyz"><code>@​Jayllyz</code></a>! - Added a new nursery rule <a href="https://biomejs.dev/linter/rules/no-component-hook-factories/"><code>noComponentHookFactories</code></a>, that disallows defining React components or custom hooks inside other functions.</p> <p>For example, the following snippets trigger the rule:</p> <pre lang="jsx"><code>function createComponent(label) { function MyComponent() { return &lt;div&gt;{label}&lt;/div&gt;; } return MyComponent; } </code></pre> <pre lang="jsx"><code>function Parent() { function Child() { return &lt;div /&gt;; } return &lt;Child /&gt;; } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9980">#9980</a> <a href="https://github.com/biomejs/biome/commit/098f1fff71e2500da57200a28870f6d6e3d4201d"><code>098f1ff</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9941">#9941</a>: Biome now emits a <code>warning</code> diagnostic when a file exceed the <code>files.maxSize</code> limit.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9942">#9942</a> <a href="https://github.com/biomejs/biome/commit/9956f1d1b53168f8b33792c004f741368c883ff7"><code>9956f1d</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9918">#9918</a>: <a href="https://biomejs.dev/linter/rules/use-consistent-test-it/"><code>useConsistentTestIt</code></a> no longer panics when applying fixes to chained calls such as <code>test.for([])(&quot;x&quot;, () =&gt; {});</code>.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9891">#9891</a> <a href="https://github.com/biomejs/biome/commit/4d9ac51352482d72d3438f2d514dbeef0edc63e0"><code>4d9ac51</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the <code>noGlobalObjectCalls</code> diagnostic to better explain why calling global objects like <code>Math</code> or <code>JSON</code> is invalid and how to fix it.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9902">#9902</a> <a href="https://github.com/biomejs/biome/commit/3f4d1033f7f672be2adba11bb8b7de5d8d3532fc"><code>3f4d103</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9901">#9901</a>: the command <code>lint --write</code> is now idempotent when it's run against HTML-ish files that contains scripts and styles.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9891">#9891</a> <a href="https://github.com/biomejs/biome/commit/4d9ac51352482d72d3438f2d514dbeef0edc63e0"><code>4d9ac51</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the <code>noMultiStr</code> diagnostic to explain why escaped multiline strings are discouraged and what to use instead.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md"><code>@​biomejs/biome</code>'s changelog</a>.</em></p> <blockquote> <h2>2.4.12</h2> <h3>Patch Changes</h3> <ul> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9376">#9376</a> <a href="https://github.com/biomejs/biome/commit/9701a336af701c36d0fe4892f53de049f63f46f4"><code>9701a33</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Added the <a href="https://biomejs.dev/linter/rules/no-identical-test-title"><code>nursery/noIdenticalTestTitle</code></a> lint rule. This rule disallows using the same title for two <code>describe</code> blocks or two test cases at the same nesting level.</p> <pre lang="js"><code>describe(&quot;foo&quot;, () =&gt; {}); describe(&quot;foo&quot;, () =&gt; { // invalid: same title as previous describe block test(&quot;baz&quot;, () =&gt; {}); test(&quot;baz&quot;, () =&gt; {}); // invalid: same title as previous test case }); </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9889">#9889</a> <a href="https://github.com/biomejs/biome/commit/7ae83f2f60dc83eae6ef72e4cb1d6f06f3a882de"><code>7ae83f2</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the diagnostics for <a href="https://biomejs.dev/linter/rules/use-for-of/"><code>useForOf</code></a> to better explain the problem, why it matters, and how to fix it.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9916">#9916</a> <a href="https://github.com/biomejs/biome/commit/27dd7b156b3bf9c461051b9997b277e1fee6fcb2"><code>27dd7b1</code></a> Thanks <a href="https://github.com/Jayllyz"><code>@​Jayllyz</code></a>! - Added a new nursery rule <a href="https://biomejs.dev/linter/rules/no-component-hook-factories/"><code>noComponentHookFactories</code></a>, that disallows defining React components or custom hooks inside other functions.</p> <p>For example, the following snippets trigger the rule:</p> <pre lang="jsx"><code>function createComponent(label) { function MyComponent() { return &lt;div&gt;{label}&lt;/div&gt;; } return MyComponent; } </code></pre> <pre lang="jsx"><code>function Parent() { function Child() { return &lt;div /&gt;; } return &lt;Child /&gt;; } </code></pre> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9980">#9980</a> <a href="https://github.com/biomejs/biome/commit/098f1fff71e2500da57200a28870f6d6e3d4201d"><code>098f1ff</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9941">#9941</a>: Biome now emits a <code>warning</code> diagnostic when a file exceed the <code>files.maxSize</code> limit.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9942">#9942</a> <a href="https://github.com/biomejs/biome/commit/9956f1d1b53168f8b33792c004f741368c883ff7"><code>9956f1d</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9918">#9918</a>: <a href="https://biomejs.dev/linter/rules/use-consistent-test-it/"><code>useConsistentTestIt</code></a> no longer panics when applying fixes to chained calls such as <code>test.for([])(&quot;x&quot;, () =&gt; {});</code>.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9891">#9891</a> <a href="https://github.com/biomejs/biome/commit/4d9ac51352482d72d3438f2d514dbeef0edc63e0"><code>4d9ac51</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the <code>noGlobalObjectCalls</code> diagnostic to better explain why calling global objects like <code>Math</code> or <code>JSON</code> is invalid and how to fix it.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9902">#9902</a> <a href="https://github.com/biomejs/biome/commit/3f4d1033f7f672be2adba11bb8b7de5d8d3532fc"><code>3f4d103</code></a> Thanks <a href="https://github.com/ematipico"><code>@​ematipico</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9901">#9901</a>: the command <code>lint --write</code> is now idempotent when it's run against HTML-ish files that contains scripts and styles.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9891">#9891</a> <a href="https://github.com/biomejs/biome/commit/4d9ac51352482d72d3438f2d514dbeef0edc63e0"><code>4d9ac51</code></a> Thanks <a href="https://github.com/dyc3"><code>@​dyc3</code></a>! - Improved the <code>noMultiStr</code> diagnostic to explain why escaped multiline strings are discouraged and what to use instead.</p> </li> <li> <p><a href="https://redirect.github.com/biomejs/biome/pull/9966">#9966</a> <a href="https://github.com/biomejs/biome/commit/322675ed97b10b088f6af3ad7843326d2888e9d8"><code>322675e</code></a> Thanks <a href="https://github.com/siketyan"><code>@​siketyan</code></a>! - Fixed <a href="https://redirect.github.com/biomejs/biome/issues/9113">#9113</a>: Biome now parses and formats <code>@media</code> and other conditional blocks correctly inside embedded CSS snippets.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/biomejs/biome/commit/baaacfc4cc000070742ac54d6394ed74152a204c"><code>baaacfc</code></a> ci: release (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9890">#9890</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/e0ba71d9dceec6db371c79833855e0ca4ce44a61"><code>e0ba71d</code></a> feat: implement useIframeSandbox (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9949">#9949</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/2cff7004182d21fb2f39b218f9fecf351210f938"><code>2cff700</code></a> feat(lint/js): add <code>useVarsOnTop</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9861">#9861</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/27dd7b156b3bf9c461051b9997b277e1fee6fcb2"><code>27dd7b1</code></a> feat(react/js): add noComponentHookFactories (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9916">#9916</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/0d0e6118ff1ffb93d0c5d59c10abf57cecf46ccd"><code>0d0e611</code></a> feat(js_analyze): implement useReactAsyncServerFunction (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9909">#9909</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/f1c136340f46e5c749337a4600a560c11612d789"><code>f1c1363</code></a> feat(lint/js): add <code>useStringStartsEndsWith</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9796">#9796</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/d417803eb451f3423deb8f3bf6925d76629d271f"><code>d417803</code></a> feat(js_analyze): implement noJsxNamespace (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9913">#9913</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/9701a336af701c36d0fe4892f53de049f63f46f4"><code>9701a33</code></a> feat(lint/js): add <code>noIdenticalTestTitle</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9376">#9376</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/c499f4609912b76fb5a7071a9e9c6a35bb26827a"><code>c499f46</code></a> feat(lint): implement useReduceTypeParameter nursery rule (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9577">#9577</a>)</li> <li><a href="https://github.com/biomejs/biome/commit/40bd18090895046c34105c4d5671f7c27461e18a"><code>40bd180</code></a> feat(lint/js): add <code>noExcessiveSelectorClasses</code> (<a href="https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome/issues/9866">#9866</a>)</li> <li>See full diff in <a href="https://github.com/biomejs/biome/commits/@biomejs/biome@2.4.12/packages/@biomejs/biome">compare view</a></li> </ul> </details> <br /> Updates `@tanstack/react-query` from 5.99.0 to 5.99.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/releases"><code>@​tanstack/react-query</code>'s releases</a>.</em></p> <blockquote> <h2><code>@​tanstack/react-query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-next-experimental</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-persist-client</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-persist-client-core</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-devtools</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-next-experimental</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query-persist-client</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-persist-client-core</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> <li><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> </ul> </li> </ul> <h2><code>@​tanstack/react-query</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []:</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/TanStack/query/blob/main/packages/react-query/CHANGELOG.md"><code>@​tanstack/react-query</code>'s changelog</a>.</em></p> <blockquote> <h2>5.99.2</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.99.2</li> </ul> </li> </ul> <h2>5.99.1</h2> <h3>Patch Changes</h3> <ul> <li>Updated dependencies []: <ul> <li><code>@​tanstack/query-core</code><a href="https://github.com/5"><code>@​5</code></a>.99.1</li> </ul> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/TanStack/query/commit/a3ec7b30cc4c18b2c5aefe608638ecadce732b81"><code>a3ec7b3</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10520">#10520</a>)</li> <li><a href="https://github.com/TanStack/query/commit/69d2757c982f7bd5a483398492fe753f6f574ab8"><code>69d2757</code></a> ci: Version Packages (<a href="https://github.com/TanStack/query/tree/HEAD/packages/react-query/issues/10514">#10514</a>)</li> <li><a href="https://github.com/TanStack/query/commit/7ffa1ed0b01d8c397c379dbb3d85da80b278b21c"><code>7ffa1ed</code></a> test({react,preact,solid}-query/useQueries): fix test description from 'useQu...</li> <li><a href="https://github.com/TanStack/query/commit/bc83d370e8922f1c3126aea4e7757ce8761a06f2"><code>bc83d37</code></a> test({react,preact}-query/useMutation): unify destructuring pattern in comple...</li> <li><a href="https://github.com/TanStack/query/commit/aad1bd59d8e1ecebf14f556e0d9ca2605b4e4b80"><code>aad1bd5</code></a> test({react,preact}-query/useMutation): add parallel 'mutateAsync' tests with...</li> <li><a href="https://github.com/TanStack/query/commit/d7643b54fda462492d474695cd35e2549cefa5d7"><code>d7643b5</code></a> test({react,preact}-query/useMutation): add optimistic update tests with succ...</li> <li><a href="https://github.com/TanStack/query/commit/cd89d6f706bd143382db5ae3807ed8644ec52afe"><code>cd89d6f</code></a> test({react,preact}-query/useMutation): add conditional handling and retry te...</li> <li><a href="https://github.com/TanStack/query/commit/6e15fe62d2551b5269b21a1522f3c7bd653808ba"><code>6e15fe6</code></a> test({react,preact}-query/useMutation): add chained 'mutateAsync' tests for s...</li> <li><a href="https://github.com/TanStack/query/commit/792d3a5b32ee90b13f44456bb50518d24e9550d5"><code>792d3a5</code></a> test({react,preact}-query/useMutation): add callback tests when 'useMutation'...</li> <li><a href="https://github.com/TanStack/query/commit/1b661b34ec5d1df00b4b0a2c084efbd486e73899"><code>1b661b3</code></a> test({react,preact}-query/useMutation): add single callback tests for 'mutate...</li> <li>Additional commits viewable in <a href="https://github.com/TanStack/query/commits/@tanstack/react-query@5.99.2/packages/react-query">compare view</a></li> </ul> </details> <br /> Updates `autoprefixer` from 10.4.27 to 10.5.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/autoprefixer/releases">autoprefixer's releases</a>.</em></p> <blockquote> <h2>10.5.0 “Each Endeavouring, All Achieving”</h2> <!-- raw HTML omitted --> <ul> <li>Added <code>mask-position-x</code> and <code>mask-position-y</code> support (by <a href="https://github.com/toporek"><code>@​toporek</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md">autoprefixer's changelog</a>.</em></p> <blockquote> <h2>10.5.0 “Each Endeavouring, All Achieving”</h2> <ul> <li>Added <code>mask-position-x</code> and <code>mask-position-y</code> support (by <a href="https://github.com/toporek"><code>@​toporek</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/postcss/autoprefixer/commit/faf456a4be572dbcb60cbe5d76a8927e23809ef5"><code>faf456a</code></a> Release 10.5 version</li> <li><a href="https://github.com/postcss/autoprefixer/commit/b841fc53575a2e8c3dd8d04b0bc5998ee11e7587"><code>b841fc5</code></a> Update dependencies</li> <li><a href="https://github.com/postcss/autoprefixer/commit/47d6e68b27009f7cb60513172f765783b55bb000"><code>47d6e68</code></a> Update email</li> <li><a href="https://github.com/postcss/autoprefixer/commit/45cfc0827012fda39b809f1654136e1d5ab7ab25"><code>45cfc08</code></a> Replace ESLint and Prettier to oxlint and oxfmt</li> <li><a href="https://github.com/postcss/autoprefixer/commit/7e3ec7db7274289ccc385fb788bc48f14a4e1dd8"><code>7e3ec7d</code></a> Add prefixing support for mask-position-x and mask-position-y (<a href="https://redirect.github.com/postcss/autoprefixer/issues/1548">#1548</a>)</li> <li>See full diff in <a href="https://github.com/postcss/autoprefixer/compare/10.4.27...10.5.0">compare view</a></li> </ul> </details> <br /> Updates `postcss` from 8.5.9 to 8.5.10 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/releases">postcss's releases</a>.</em></p> <blockquote> <h2>8.5.10</h2> <ul> <li>Fixed XSS via unescaped <code>&lt;/style&gt;</code> in non-bundler cases (by <a href="https://github.com/TharVid"><code>@​TharVid</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/postcss/postcss/blob/main/CHANGELOG.md">postcss's changelog</a>.</em></p> <blockquote> <h2>8.5.10</h2> <ul> <li>Fixed XSS via unescaped <code>&lt;/style&gt;</code> in non-bundler cases (by <a href="https://github.com/TharVid"><code>@​TharVid</code></a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/postcss/postcss/commit/33b9790263dc1562a46ce45d9532bd63e95b7986"><code>33b9790</code></a> Release 8.5.10 version</li> <li><a href="https://github.com/postcss/postcss/commit/536c79e4b01e58a3a56b09c3c0cf2323f4b9a28b"><code>536c79e</code></a> Escape &lt;/style&gt; in CSS output (<a href="https://redirect.github.com/postcss/postcss/issues/2074">#2074</a>)</li> <li><a href="https://github.com/postcss/postcss/commit/afa96b2a139ce625c4d27973313479c7c85f39d4"><code>afa96b2</code></a> Update dependencies (<a href="https://redirect.github.com/postcss/postcss/issues/2073">#2073</a>)</li> <li><a href="https://github.com/postcss/postcss/commit/effe88bb87cabdc1876e02adbdd30f392f19f40d"><code>effe88b</code></a> Typo (<a href="https://redirect.github.com/postcss/postcss/issues/2072">#2072</a>)</li> <li><a href="https://github.com/postcss/postcss/commit/3ee79a2c4a11e41d52db50b444eebe38299495ad"><code>3ee79a2</code></a> Thread model (<a href="https://redirect.github.com/postcss/postcss/issues/2071">#2071</a>)</li> <li><a href="https://github.com/postcss/postcss/commit/2e0683daca4dc2919211b03774f6b2d137136c01"><code>2e0683d</code></a> Create incident response docs (<a href="https://redirect.github.com/postcss/postcss/issues/2070">#2070</a>)</li> <li>See full diff in <a href="https://github.com/postcss/postcss/compare/8.5.9...8.5.10">compare view</a></li> </ul> </details> <br /> Updates `vite` from 8.0.8 to 8.0.9 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/releases">vite's releases</a>.</em></p> <blockquote> <h2>v8.0.9</h2> <p>Please refer to <a href="https://github.com/vitejs/vite/blob/v8.0.9/packages/vite/CHANGELOG.md">CHANGELOG.md</a> for details.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's changelog</a>.</em></p> <blockquote> <h2><!-- raw HTML omitted --><a href="https://github.com/vitejs/vite/compare/v8.0.8...v8.0.9">8.0.9</a> (2026-04-20)<!-- raw HTML omitted --></h2> <h3>Features</h3> <ul> <li>update rolldown to 1.0.0-rc.16 (<a href="https://redirect.github.com/vitejs/vite/issues/22248">#22248</a>) (<a href="https://github.com/vitejs/vite/commit/2947edd57ceb64a0b4dc43269743e8e44e68c09b">2947edd</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>allow binding when strictPort is set but wildcard port is in use (<a href="https://redirect.github.com/vitejs/vite/issues/22150">#22150</a>) (<a href="https://github.com/vitejs/vite/commit/dfc8aa5057dd8ec2b1223980d1e2eeb946ac3384">dfc8aa5</a>)</li> <li><strong>build:</strong> emptyOutDir should happen for watch rebuilds (<a href="https://redirect.github.com/vitejs/vite/issues/22207">#22207</a>) (<a href="https://github.com/vitejs/vite/commit/ee522672bb374c7ff95a347f14732491121b1cd6">ee52267</a>)</li> <li><strong>bundled-dev:</strong> reject requests to HMR patch files in non potentially trustworthy origins (<a href="https://redirect.github.com/vitejs/vite/issues/22269">#22269</a>) (<a href="https://github.com/vitejs/vite/commit/868f1411a6f474baa4417f2d6524692dd452f760">868f141</a>)</li> <li><strong>css:</strong> use unique key for cssEntriesMap to prevent same-basename collision (<a href="https://redirect.github.com/vitejs/vite/issues/22039">#22039</a>) (<a href="https://github.com/vitejs/vite/commit/374bb5d597fcd0485e929565c698d8ed219136f8">374bb5d</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22219">#22219</a>) (<a href="https://github.com/vitejs/vite/commit/4cd0d6760edd5fb0841abe86538de3c225e880a1">4cd0d67</a>)</li> <li><strong>deps:</strong> update all non-major dependencies (<a href="https://redirect.github.com/vitejs/vite/issues/22268">#22268</a>) (<a href="https://github.com/vitejs/vite/commit/c28e9c12a849f80e6fdc93f42283ad2863ab9dbc">c28e9c1</a>)</li> <li>detect Deno workspace root (fix <a href="https://redirect.github.com/vitejs/vite/issues/22237">#22237</a>) (<a href="https://redirect.github.com/vitejs/vite/issues/22238">#22238</a>) (<a href="https://github.com/vitejs/vite/commit/1b793c0e1726467fffd06ffad9bc81c61a840188">1b793c0</a>)</li> <li><strong>dev:</strong> handle errors in <code>watchChange</code> hook (<a href="https://redirect.github.com/vitejs/vite/issues/22188">#22188</a>) (<a href="https://github.com/vitejs/vite/commit/fc08bdab9bba871b03689f2f6997c3a4ba4351da">fc08bda</a>)</li> <li><strong>optimizer:</strong> handle more chars that will be sanitized (<a href="https://redirect.github.com/vitejs/vite/issues/22208">#22208</a>) (<a href="https://github.com/vitejs/vite/commit/3f24533ac4845ed22547279d1721bd82a35345e3">3f24533</a>)</li> <li>skip fallback sourcemap generation for <code>?raw</code> imports (<a href="https://redirect.github.com/vitejs/vite/issues/22148">#22148</a>) (<a href="https://github.com/vitejs/vite/commit/3ec9cdaac7936ca32d0956c4cb1eb6e172945996">3ec9cda</a>)</li> </ul> <h3>Documentation</h3> <ul> <li>align the descriptions in READMEs (<a href="https://redirect.github.com/vitejs/vite/issues/22231">#22231</a>) (<a href="https://github.com/vitejs/vite/commit/44c42b97639bb6ad777e66d752b2829cccb9a27a">44c42b9</a>)</li> <li>fix reuses wording in dev environment comment (<a href="https://redirect.github.com/vitejs/vite/issues/22173">#22173</a>) (<a href="https://github.com/vitejs/vite/commit/9163412fdfec7fb1656529713326a5b5c5e986ea">9163412</a>)</li> <li>fix wording in sass error comment (<a href="https://redirect.github.com/vitejs/vite/issues/22214">#22214</a>) (<a href="https://github.com/vitejs/vite/commit/bc5c6a7a498845dff20dc410c395355b79a4b753">bc5c6a7</a>)</li> <li>update build CLI defaults (<a href="https://redirect.github.com/vitejs/vite/issues/22261">#22261</a>) (<a href="https://github.com/vitejs/vite/commit/605bb97994678a1bb70a8de9a85c29d5f5d48c5a">605bb97</a>)</li> </ul> <h3>Miscellaneous Chores</h3> <ul> <li><strong>deps:</strong> update dependency dotenv-expand to v13 (<a href="https://redirect.github.com/vitejs/vite/issues/22271">#22271</a>) (<a href="https://github.com/vitejs/vite/commit/0a3887da18812cacb254c616e4dd35631e776fda">0a3887d</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/vitejs/vite/commit/ce729f5fa1a5adca373b2adcb0e1b18099164a14"><code>ce729f5</code></a> release: v8.0.9</li> <li><a href="https://github.com/vitejs/vite/commit/605bb97994678a1bb70a8de9a85c29d5f5d48c5a"><code>605bb97</code></a> docs: update build CLI defaults (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22261">#22261</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/c28e9c12a849f80e6fdc93f42283ad2863ab9dbc"><code>c28e9c1</code></a> fix(deps): update all non-major dependencies (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22268">#22268</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/0a3887da18812cacb254c616e4dd35631e776fda"><code>0a3887d</code></a> chore(deps): update dependency dotenv-expand to v13 (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22271">#22271</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/868f1411a6f474baa4417f2d6524692dd452f760"><code>868f141</code></a> fix(bundled-dev): reject requests to HMR patch files in non potentially trust...</li> <li><a href="https://github.com/vitejs/vite/commit/3ec9cdaac7936ca32d0956c4cb1eb6e172945996"><code>3ec9cda</code></a> fix: skip fallback sourcemap generation for <code>?raw</code> imports (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22148">#22148</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/3f24533ac4845ed22547279d1721bd82a35345e3"><code>3f24533</code></a> fix(optimizer): handle more chars that will be sanitized (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22208">#22208</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/1b793c0e1726467fffd06ffad9bc81c61a840188"><code>1b793c0</code></a> fix: detect Deno workspace root (fix <a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22237">#22237</a>) (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22238">#22238</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/fc08bdab9bba871b03689f2f6997c3a4ba4351da"><code>fc08bda</code></a> fix(dev): handle errors in <code>watchChange</code> hook (<a href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/22188">#22188</a>)</li> <li><a href="https://github.com/vitejs/vite/commit/374bb5d597fcd0485e929565c698d8ed219136f8"><code>374bb5d</code></a> fix(css): use unique key for cssEntriesMap to prevent same-basename collision...</li> <li>Additional commits viewable in <a href="https://github.com/vitejs/vite/commits/v8.0.9/packages/vite">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 </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 71112a6 commit 61c4066

1 file changed

Lines changed: 166 additions & 163 deletions

File tree

0 commit comments

Comments
 (0)