turborepo
35083365 - examples(dev-deps): bump the with-svelte group in /examples/with-svelte with 3 updates (#11219)

Commit
74 days ago
examples(dev-deps): bump the with-svelte group in /examples/with-svelte with 3 updates (#11219) Bumps the with-svelte group in /examples/with-svelte with 3 updates: [prettier](https://github.com/prettier/prettier), [svelte](https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte) and [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint). Updates `prettier` from 3.6.0 to 3.7.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/releases">prettier's releases</a>.</em></p> <blockquote> <h2>3.7.4</h2> <h2>What's Changed</h2> <ul> <li>Fix comment in union type gets duplicated by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18393">prettier/prettier#18393</a></li> <li>Fix unstable comment print in union type by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18395">prettier/prettier#18395</a></li> <li>Avoid quote around LWC interpolations by <a href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18383">prettier/prettier#18383</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#374">Changelog</a></p> <h2>3.7.3</h2> <h2>What's Changed</h2> <ul> <li>Fix <code>prettier.getFileInfo()</code> change that breaks VSCode extension by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18375">prettier/prettier#18375</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#373">Changelog</a></p> <h2>3.7.2</h2> <h2>What's Changed</h2> <ul> <li>Fix string print when switching quotes by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18351">prettier/prettier#18351</a></li> <li>Preserve quote for embedded HTML attribute values by <a href="https://github.com/kovsu"><code>@​kovsu</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18352">prettier/prettier#18352</a></li> <li>Fix comment in empty type literal by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/18364">prettier/prettier#18364</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#372">Changelog</a></p> <h2>3.7.1</h2> <ul> <li>Fix performance regression in doc printer (<a href="https://redirect.github.com/prettier/prettier/pull/18342">#18342</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#371">Changelog</a></p> <h2>3.7.0</h2> <p><a href="https://github.com/prettier/prettier/compare/3.6.2...3.7.0">diff</a></p> <p>🔗 <a href="https://prettier.io/blog/2025/11/27/3.7.0">Release note</a></p> <h2>3.6.2</h2> <h2>What's Changed</h2> <ul> <li>Add missing blank line around code block by <a href="https://github.com/fisker"><code>@​fisker</code></a> in <a href="https://redirect.github.com/prettier/prettier/pull/17675">prettier/prettier#17675</a></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#362">Changelog</a></p> <h2>3.6.1</h2> <ul> <li>Fix &quot;Warning: File descriptor 39 closed but not opened in unmanaged mode&quot; error when running <code>--experimental-cli</code></li> </ul> <p>🔗 <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#361">Changelog</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's changelog</a>.</em></p> <blockquote> <h1>3.7.4</h1> <p><a href="https://github.com/prettier/prettier/compare/3.7.3...3.7.4">diff</a></p> <h4>LWC: Avoid quote around interpolations (<a href="https://redirect.github.com/prettier/prettier/pull/18383">#18383</a> by <a href="https://github.com/kovsu"><code>@​kovsu</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="html"><code>&lt;!-- Input --&gt; &lt;div foo={bar}&gt; &lt;/div&gt; <p>&lt;!-- Prettier 3.7.3 (--embedded-language-formatting off) --&gt; &lt;div foo=&quot;{bar}&quot;&gt;&lt;/div&gt;</p> <p>&lt;!-- Prettier 3.7.4 (--embedded-language-formatting off) --&gt; &lt;div foo={bar}&gt;&lt;/div&gt; </code></pre></p> <h4>TypeScript: Fix comment inside union type gets duplicated (<a href="https://redirect.github.com/prettier/prettier/pull/18393">#18393</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input type Foo = (/** comment */ a | b) | c; <p>// Prettier 3.7.3 type Foo = /** comment <em>/ (/</em>* comment */ a | b) | c;</p> <p>// Prettier 3.7.4 type Foo = /** comment */ (a | b) | c; </code></pre></p> <h4>TypeScript: Fix unstable comment print in union type comments (<a href="https://redirect.github.com/prettier/prettier/pull/18395">#18395</a> by <a href="https://github.com/fisker"><code>@​fisker</code></a>)</h4> <!-- raw HTML omitted --> <pre lang="tsx"><code>// Input type X = (A | B) &amp; ( // comment A | B ); <p>// Prettier 3.7.3 (first format) type X = (A | B) &amp; (// comment A | B);</p> <p>// Prettier 3.7.3 (second format) type X = ( | A &lt;/tr&gt;&lt;/table&gt; </code></pre></p> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/prettier/prettier/commit/7848357af654883e21ed05c0bbbedf89ee88750e"><code>7848357</code></a> Release 3.7.4</li> <li><a href="https://github.com/prettier/prettier/commit/7686c59d512177707711cb327196d4a965411ec0"><code>7686c59</code></a> Release <code>@​prettier/plugin-hermes</code> &amp; <code>@​prettier/plugin-oxc</code> v0.1.3</li> <li><a href="https://github.com/prettier/prettier/commit/fe494348a027cb9fcefd2cab9cd7ab1190d74a1c"><code>fe49434</code></a> Remove dead code checking union/intersection types length (<a href="https://redirect.github.com/prettier/prettier/issues/18396">#18396</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/ca02b37489870d5f5996a7f91cbc4e4983fa9729"><code>ca02b37</code></a> Fix unstable comment print (<a href="https://redirect.github.com/prettier/prettier/issues/18395">#18395</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/7efb988c6784997685f38766b93a436ef7456974"><code>7efb988</code></a> Fix comment in union type get duplicated (<a href="https://redirect.github.com/prettier/prettier/issues/18393">#18393</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/cfa92c1b6dc6a67f7ac13b801e2f827953721af3"><code>cfa92c1</code></a> Update dependency <code>@​angular/compiler</code> to v21.0.2 (<a href="https://redirect.github.com/prettier/prettier/issues/18392">#18392</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/1de273770b052749f735987c5733c862217b991d"><code>1de2737</code></a> Update dependency yaml to v2.8.2 (<a href="https://redirect.github.com/prettier/prettier/issues/18391">#18391</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/706aa4ef90dbf3804595b10adffad6b75228fea6"><code>706aa4e</code></a> Switch js parse postprocess to <code>onEnter</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18382">#18382</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/d3eb2b2d081f4b5b1008e64655ce7cc8fefd731e"><code>d3eb2b2</code></a> Reuse arrays in visitor keys (<a href="https://redirect.github.com/prettier/prettier/issues/18386">#18386</a>)</li> <li><a href="https://github.com/prettier/prettier/commit/c45fef106ec4d1efdcd61a64c3dd3298272b3d99"><code>c45fef1</code></a> Fix LWC attribute with <code>--embedded-language-formatting off</code> (<a href="https://redirect.github.com/prettier/prettier/issues/18383">#18383</a>)</li> <li>Additional commits viewable in <a href="https://github.com/prettier/prettier/compare/3.6.0...3.7.4">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by [GitHub Actions](<a href="https://www.npmjs.com/~GitHub">https://www.npmjs.com/~GitHub</a> Actions), a new releaser for prettier since your current version.</p> </details> <br /> Updates `svelte` from 5.43.5 to 5.45.6 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/svelte/releases">svelte's releases</a>.</em></p> <blockquote> <h2>svelte@5.45.6</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: don't issue a11y warning for <code>&lt;video&gt;</code> without captions if it has no <code>src</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17311">#17311</a>)</p> </li> <li> <p>fix: add <code>srcObject</code> to permitted <code>&lt;audio&gt;</code>/<code>&lt;video&gt;</code> attributes (<a href="https://redirect.github.com/sveltejs/svelte/pull/17310">#17310</a>)</p> </li> </ul> <h2>svelte@5.45.5</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: correctly reconcile each blocks after outroing branches are resumed (<a href="https://redirect.github.com/sveltejs/svelte/pull/17258">#17258</a>)</p> </li> <li> <p>fix: destroy each items after siblings are resumed (<a href="https://redirect.github.com/sveltejs/svelte/pull/17258">#17258</a>)</p> </li> </ul> <h2>svelte@5.45.4</h2> <h3>Patch Changes</h3> <ul> <li> <p>chore: move DOM-related effect properties to <code>effect.nodes</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17293">#17293</a>)</p> </li> <li> <p>fix: allow <code>$props.id()</code> to occur after an <code>await</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17285">#17285</a>)</p> </li> <li> <p>fix: keep reactions up to date even when read outside of effect (<a href="https://redirect.github.com/sveltejs/svelte/pull/17295">#17295</a>)</p> </li> </ul> <h2>svelte@5.45.3</h2> <h3>Patch Changes</h3> <ul> <li> <p>add props to state_referenced_locally (<a href="https://redirect.github.com/sveltejs/svelte/pull/17266">#17266</a>)</p> </li> <li> <p>fix: preserve node locations for better sourcemaps (<a href="https://redirect.github.com/sveltejs/svelte/pull/17269">#17269</a>)</p> </li> <li> <p>fix: handle cross-realm Promises in <code>hydratable</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17284">#17284</a>)</p> </li> </ul> <h2>svelte@5.45.2</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: array destructuring after await (<a href="https://redirect.github.com/sveltejs/svelte/pull/17254">#17254</a>)</p> </li> <li> <p>fix: throw on invalid <code>{@tag}</code>s (<a href="https://redirect.github.com/sveltejs/svelte/pull/17256">#17256</a>)</p> </li> </ul> <h2>svelte@5.45.1</h2> <h3>Patch Changes</h3> <ul> <li>fix: link offscreen items and last effect in each block correctly (<a href="https://redirect.github.com/sveltejs/svelte/pull/17240">#17240</a>)</li> </ul> <h2>svelte@5.45.0</h2> <h3>Minor Changes</h3> <ul> <li>feat: add <code>print(...)</code> function (<a href="https://redirect.github.com/sveltejs/svelte/pull/16188">#16188</a>)</li> </ul> <h2>svelte@5.44.1</h2> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/sveltejs/svelte/blob/main/packages/svelte/CHANGELOG.md">svelte's changelog</a>.</em></p> <blockquote> <h2>5.45.6</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: don't issue a11y warning for <code>&lt;video&gt;</code> without captions if it has no <code>src</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17311">#17311</a>)</p> </li> <li> <p>fix: add <code>srcObject</code> to permitted <code>&lt;audio&gt;</code>/<code>&lt;video&gt;</code> attributes (<a href="https://redirect.github.com/sveltejs/svelte/pull/17310">#17310</a>)</p> </li> </ul> <h2>5.45.5</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: correctly reconcile each blocks after outroing branches are resumed (<a href="https://redirect.github.com/sveltejs/svelte/pull/17258">#17258</a>)</p> </li> <li> <p>fix: destroy each items after siblings are resumed (<a href="https://redirect.github.com/sveltejs/svelte/pull/17258">#17258</a>)</p> </li> </ul> <h2>5.45.4</h2> <h3>Patch Changes</h3> <ul> <li> <p>chore: move DOM-related effect properties to <code>effect.nodes</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17293">#17293</a>)</p> </li> <li> <p>fix: allow <code>$props.id()</code> to occur after an <code>await</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17285">#17285</a>)</p> </li> <li> <p>fix: keep reactions up to date even when read outside of effect (<a href="https://redirect.github.com/sveltejs/svelte/pull/17295">#17295</a>)</p> </li> </ul> <h2>5.45.3</h2> <h3>Patch Changes</h3> <ul> <li> <p>add props to state_referenced_locally (<a href="https://redirect.github.com/sveltejs/svelte/pull/17266">#17266</a>)</p> </li> <li> <p>fix: preserve node locations for better sourcemaps (<a href="https://redirect.github.com/sveltejs/svelte/pull/17269">#17269</a>)</p> </li> <li> <p>fix: handle cross-realm Promises in <code>hydratable</code> (<a href="https://redirect.github.com/sveltejs/svelte/pull/17284">#17284</a>)</p> </li> </ul> <h2>5.45.2</h2> <h3>Patch Changes</h3> <ul> <li> <p>fix: array destructuring after await (<a href="https://redirect.github.com/sveltejs/svelte/pull/17254">#17254</a>)</p> </li> <li> <p>fix: throw on invalid <code>{@tag}</code>s (<a href="https://redirect.github.com/sveltejs/svelte/pull/17256">#17256</a>)</p> </li> </ul> <h2>5.45.1</h2> <h3>Patch Changes</h3> <ul> <li>fix: link offscreen items and last effect in each block correctly (<a href="https://redirect.github.com/sveltejs/svelte/pull/17240">#17240</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/sveltejs/svelte/commit/275fa8231f43b610c43ad711e41015309c9701cf"><code>275fa82</code></a> Version Packages (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17312">#17312</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/0990095aed863ce5edfb55417ab9e5cabe1296d0"><code>0990095</code></a> fix: don't issue a11y warning for video without captions if it has no <code>src</code> (...</li> <li><a href="https://github.com/sveltejs/svelte/commit/46603d93cbe072ea463a099894e2bccdd264051e"><code>46603d9</code></a> fix: add <code>srcObject</code> to permitted <code>\&lt;audio&gt;</code>/<code>\&lt;video&gt;</code> attributes (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17310">#17310</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/0cdc4315624a715004e192f35bdccf1315fb3e92"><code>0cdc431</code></a> chore: upgrade dependencies to fix dependabot warnings (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17287">#17287</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/c864d2c778633da749530fe1a5aa24cd7dd0792f"><code>c864d2c</code></a> Version Packages (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17299">#17299</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/190e64acd9fcd6d86de53f8d1e51242393716772"><code>190e64a</code></a> fix: destroy each items after siblings are resumed (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17258">#17258</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/3a3b7e8a3f35cb736046ea16cfca1e302bf210fc"><code>3a3b7e8</code></a> chore: tidy up types for DOM operations (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17298">#17298</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/f091b11eab0b0f274b6332ae2aa081679f74064b"><code>f091b11</code></a> Version Packages (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17286">#17286</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/794b8f3dfd14fad5d2d67dea7607bae8185cf800"><code>794b8f3</code></a> fix: keep reactions up to date even when read outside of effect (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17295">#17295</a>)</li> <li><a href="https://github.com/sveltejs/svelte/commit/1f3f1826e8827ff084043198dd3cd07248e47f48"><code>1f3f182</code></a> chore: move DOM-related effect properties to <code>effect.nodes</code> (<a href="https://github.com/sveltejs/svelte/tree/HEAD/packages/svelte/issues/17293">#17293</a>)</li> <li>Additional commits viewable in <a href="https://github.com/sveltejs/svelte/commits/svelte@5.45.6/packages/svelte">compare view</a></li> </ul> </details> <br /> Updates `typescript-eslint` from 8.47.0 to 8.48.1 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases">typescript-eslint's releases</a>.</em></p> <blockquote> <h2>v8.48.1</h2> <h2>8.48.1 (2025-12-02)</h2> <h3>⏪ Reverts</h3> <ul> <li><strong>eslint-plugin:</strong> revert &quot;[no-redundant-type-constituents] use assignability checking for redundancy checks (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10744">#10744</a>)&quot; (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11812">#11812</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [consistent-type-exports] check value flag before resolving alias (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11769">#11769</a>)</li> <li><strong>eslint-plugin:</strong> honor ignored base types on generic classes (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11767">#11767</a>)</li> <li><strong>eslint-plugin:</strong> [restrict-template-expressions] check base types in allow list (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11764">#11764</a>, <a href="https://redirect.github.com/typescript-eslint/typescript-eslint/issues/11759">#11759</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Josh Goldberg</li> <li>OleksandraKordonets</li> <li>SangheeSon <a href="https://github.com/Higangssh"><code>@​Higangssh</code></a></li> <li>tao</li> </ul> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>v8.48.0</h2> <h2>8.48.0 (2025-11-24)</h2> <h3>🚀 Features</h3> <ul> <li><strong>eslint-plugin:</strong> [no-redundant-type-constituents] use assignability checking for redundancy checks (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10744">#10744</a>)</li> <li><strong>rule-tester:</strong> remove workaround for jest circular structure error (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11772">#11772</a>)</li> <li><strong>typescript-estree:</strong> gate all errors behind allowInvalidAST (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11693">#11693</a>)</li> <li><strong>typescript-estree:</strong> replace fast-glob with tinyglobby (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11740">#11740</a>)</li> </ul> <h3>🩹 Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [consistent-generic-constructors] ignore when constructor is typed array (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/10477">#10477</a>)</li> <li><strong>scope-manager:</strong> change unhelpful <code>aaa</code> error message and change <code>analyze</code> to expects <code>Program</code> (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11747">#11747</a>)</li> <li><strong>typescript-estree:</strong> infers singleRun as true for project service (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11327">#11327</a>)</li> <li><strong>typescript-estree:</strong> disallow binding patterns in parameter properties (<a href="https://redirect.github.com/typescript-eslint/typescript-eslint/pull/11760">#11760</a>)</li> </ul> <h3>❤️ Thank You</h3> <ul> <li>Ben McCann <a href="https://github.com/benmccann"><code>@​benmccann</code></a></li> <li>Dima Barabash <a href="https://github.com/dbarabashh"><code>@​dbarabashh</code></a></li> <li>fisker Cheung <a href="https://github.com/fisker"><code>@​fisker</code></a></li> <li>James Henry <a href="https://github.com/JamesHenry"><code>@​JamesHenry</code></a></li> <li>JamesHenry <a href="https://github.com/JamesHenry"><code>@​JamesHenry</code></a></li> <li>Josh Goldberg</li> <li>Josh Goldberg ✨</li> <li>Kirk Waiblinger <a href="https://github.com/kirkwaiblinger"><code>@​kirkwaiblinger</code></a></li> <li>mdm317 <a href="https://github.com/gen-ip-1"><code>@​gen-ip-1</code></a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md">typescript-eslint's changelog</a>.</em></p> <blockquote> <h2>8.48.1 (2025-12-02)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> <h2>8.48.0 (2025-11-24)</h2> <p>This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.</p> <p>You can read about our <a href="https://typescript-eslint.io/users/versioning">versioning strategy</a> and <a href="https://typescript-eslint.io/users/releases">releases</a> on our website.</p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/8fe34456f75c1d1e8a4dc518306d5ab93422efec"><code>8fe3445</code></a> chore(release): publish 8.48.1</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/6fb1551634b2ff11718e579098f69e041a2ff92c"><code>6fb1551</code></a> chore(release): publish 8.48.0</li> <li><a href="https://github.com/typescript-eslint/typescript-eslint/commit/a4dc42ac541139f0da344550bce7accd8f3d366a"><code>a4dc42a</code></a> chore: migrate to nx 22 (<a href="https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint/issues/11780">#11780</a>)</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v8.48.1/packages/typescript-eslint">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 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 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>
Parents
Loading