Commit 4c71b6d
authored
feat(deps)!: Bump eslint-plugin-simple-import-sort from 12.1.1 to 14.0.0 (#23110)
Bumps
[eslint-plugin-simple-import-sort](https://github.com/lydell/eslint-plugin-simple-import-sort)
from 12.1.1 to 14.0.0.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/blob/main/CHANGELOG.md">eslint-plugin-simple-import-sort's
changelog</a>.</em></p>
<blockquote>
<h3>Version 14.0.0 (2026-07-16)</h3>
<p>ES2022 allows string literals as module export names ("arbitrary
module namespace names"):</p>
<pre lang="js"><code>export { yukuTs as "yuku-ts" };
import { "a-b" as c } from "a";
</code></pre>
<p>This release adds support for such quotes names. Previously, those
were sorted oddly, and the autofix could suggest changes that wasn’t
valid syntax.</p>
<p>This is only a breaking change if you use string literals as module
export names, and only in the form of that you need to autofix your
files.</p>
<p>Thanks to Kamronbek_Juraev (<a
href="https://github.com/KAMRONBEK"><code>@KAMRONBEK</code></a>) for
fixing this!</p>
<h3>Version 13.0.0 (2026-04-06)</h3>
<p>This release puts imports from the same source, but with different
import styles, in a deterministic order.</p>
<pre lang="js"><code>// First namespace imports:
import * as Circle from "circle;
// Then default imports:
import createCircle from "circle";
// Then named imports:
import { radius } from "circle";
</code></pre>
<p>That is especially useful if you need to have both a namespace import
<em>and</em> want to import a few things separately (since that cannot
be combined into a single import statement). With the above rule, the
imports end up in a deterministic order.</p>
<p>It’s only a breaking change if you import from the same source
multiple times in the same file (using different styles), and only in
the form that you need to autofix your files.</p>
<p>Thanks to Kannan Goundan (<a
href="https://github.com/cakoose"><code>@cakoose</code></a>)!</p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/bef18bd5de7a404efe4ba123d55715258df7cd78"><code>bef18bd</code></a>
eslint-plugin-simple-import-sort v14.0.0</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/d53d160856a2249ef85d3e8409493302a649872f"><code>d53d160</code></a>
Fix autofix and sort order for quoted names (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/217">#217</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/6063737734238b0c2cfd5b20745ddbdb5aef41bb"><code>6063737</code></a>
Bump js-yaml from 4.1.1 to 4.3.0 (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/214">#214</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/143b70e47c63f47bb4887c616d9eb6077d85301d"><code>143b70e</code></a>
Bump vitest and <code>@vitest/coverage-v8</code> (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/212">#212</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/0f5927612931ef1018b83b79521046c7f323c6ed"><code>0f59276</code></a>
Bump vite from 7.1.11 to 7.3.2 (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/211">#211</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/24d74cdf63859920deca1adc1c7c889ce0c32b96"><code>24d74cd</code></a>
Bump lodash from 4.17.23 to 4.18.1 (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/210">#210</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/89746062d276df7448ec12a3ad74a784ad430053"><code>8974606</code></a>
Update GitHub Actions (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/209">#209</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/90078e7fce900b6860ab7cd1800c6ff055601d88"><code>90078e7</code></a>
eslint-plugin-simple-import-sort v13.0.0</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/7794d14a1871cda51f8379c5f3f65b902adf4cd4"><code>7794d14</code></a>
Determinstic ordering between different import styles (<a
href="https://redirect.github.com/lydell/eslint-plugin-simple-import-sort/issues/203">#203</a>)</li>
<li><a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/commit/5ce648ae0be2d0c79062648e2f36c06a5c46bceb"><code>5ce648a</code></a>
Fix deprecation warning when running tests</li>
<li>Additional commits viewable in <a
href="https://github.com/lydell/eslint-plugin-simple-import-sort/compare/v12.1.1...v14.0.0">compare
view</a></li>
</ul>
</details>
<br />
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent fd34bfe commit 4c71b6d
2 files changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
30 | 30 | | |
31 | 31 | | |
32 | 32 | | |
33 | | - | |
| 33 | + | |
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
16185 | 16185 | | |
16186 | 16186 | | |
16187 | 16187 | | |
16188 | | - | |
16189 | | - | |
16190 | | - | |
16191 | | - | |
| 16188 | + | |
| 16189 | + | |
| 16190 | + | |
| 16191 | + | |
16192 | 16192 | | |
16193 | 16193 | | |
16194 | 16194 | | |
| |||
0 commit comments