Commit c672721
authored
chore(lambda): bump @trivago/prettier-plugin-sort-imports from 5.2.2 to 6.0.0 in /lambdas (#4943)
Bumps
[@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports)
from 5.2.2 to 6.0.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/trivago/prettier-plugin-sort-imports/releases"><code>@trivago/prettier-plugin-sort-imports</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Update packages and pin babel/types by <a
href="https://github.com/byara"><code>@byara</code></a> in <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/343">trivago/prettier-plugin-sort-imports#343</a></li>
<li>V6 by <a href="https://github.com/byara"><code>@byara</code></a>
and <a
href="https://github.com/vladislavarsenev"><code>@vladislavarsenev</code></a>
in <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/385">trivago/prettier-plugin-sort-imports#385</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md"><code>@trivago/prettier-plugin-sort-imports</code>'s
changelog</a>.</em></p>
<blockquote>
<h3>6.0.0</h3>
<h4>Breaking Changes</h4>
<ul>
<li><strong>Switch to ESM</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/366">#366</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a>
- The plugin now uses ES modules instead of CommonJS</li>
<li><strong>Require Node >= 20.x</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/367">#367</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a>
- Drop support for Node.js versions below 20</li>
<li><strong>Switch to vitest</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/370">#370</a>
by <a
href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a>
- Replaced Jest with Vitest for better ESM support</li>
</ul>
<h4>New features</h4>
<ul>
<li><strong>Ember.js gjs/gts support</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/377">#377</a>
by <a
href="https://github.com/NullVoxPopuli"><code>@NullVoxPopuli</code></a>
and <a
href="https://github.com/RobbieTheWagner"><code>@RobbieTheWagner</code></a>
- Add support for Ember.js gjs/gts file formats with namespace and named
type imports</li>
<li><strong><code><BUILTIN_MODULES></code> placeholder</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/381">#381</a>
by <a href="https://github.com/sdotson"><code>@sdotson</code></a> - Add
support for sorting Node.js builtin modules to a specific position using
<code><BUILTIN_MODULES></code> placeholder in
<code>importOrder</code></li>
<li><strong><code><SEPARATOR></code> placeholder</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/339">#339</a>
- Add <code><SEPARATOR></code> keyword for fine-grained control
over import group separation when <code>importOrderSeparation</code> is
enabled</li>
<li><strong>Sort by length option</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/224">#224</a>
by <a href="https://github.com/KLewin23"><code>@KLewin23</code></a> -
Add option to sort imports by import statement length</li>
<li><strong><code>importOrderExclude</code> option</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/384">#384</a>
by <a
href="https://github.com/RyderKishan"><code>@RyderKishan</code></a> -
Add support for excluding specific files from import sorting using glob
patterns</li>
<li><strong>Expand <code>sort-imports-ignore</code> detection</strong>
<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/358">#358</a>
by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> -
Improved detection of <code>sort-imports-ignore</code> comments
throughout the file, not just at line 1</li>
</ul>
<h4>Performance improvements</h4>
<ul>
<li><strong>Improve <code>removeNodesFromOriginalCode()</code>
performance</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/356">#356</a>
by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> -
Replace RegExp logic with string slices for better performance</li>
</ul>
<h4>Refactoring</h4>
<ul>
<li><strong>Stop rerendering directives</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/357">#357</a>
by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> -
Inject imports instead of re-rendering directives to better preserve
whitespace and reduce formatting conflicts</li>
<li><strong>Stop ignoring exceptions in snapshot tests</strong> <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/355">#355</a>
by <a href="https://github.com/ckwalsh"><code>@ckwalsh</code></a> -
Improve test reliability by properly handling exceptions</li>
</ul>
<h4>Chores</h4>
<ul>
<li>Add pnpm install command to README <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/pull/361">#361</a>
- Document pnpm installation option</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/48863194ec046d378678f855df4b17847a52f688"><code>4886319</code></a>
6.0.0</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/d9b0a89de3b093249f56979cee64a8bb0f98e6d6"><code>d9b0a89</code></a>
Merge pull request <a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/386">#386</a>
from trivago/chores</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/e2d360fe131cc3f8d635fa7fa5f920f537e623a4"><code>e2d360f</code></a>
update lockfile</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/c42a081c45934daae541f1fde71984905acf0204"><code>c42a081</code></a>
V6 (<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/385">#385</a>)</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/f7b685c768f1a09a8dc64de77def897856d9e357"><code>f7b685c</code></a>
Update README.md</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/12b22911e643f2161598932cd91cd0c1e924047e"><code>12b2291</code></a>
Update README.md</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/875470a70abf443f1a5e3e54d1c943831d310680"><code>875470a</code></a>
Merge branch 'main' of
github.com:trivago/prettier-plugin-sort-imports</li>
<li><a
href="https://github.com/trivago/prettier-plugin-sort-imports/commit/509c5a7209b338b6d0d24547a6f4e3af48cb0aed"><code>509c5a7</code></a>
Update packages and pin babel/types (<a
href="https://redirect.github.com/trivago/prettier-plugin-sort-imports/issues/343">#343</a>)</li>
<li>See full diff in <a
href="https://github.com/trivago/prettier-plugin-sort-imports/compare/v5.2.2...v6.0.0">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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 this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent d9c0fc2 commit c672721
2 files changed
+119
-25
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
| 34 | + | |
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1206 | 1206 | | |
1207 | 1207 | | |
1208 | 1208 | | |
1209 | | - | |
| 1209 | + | |
1210 | 1210 | | |
1211 | 1211 | | |
1212 | 1212 | | |
| |||
1219 | 1219 | | |
1220 | 1220 | | |
1221 | 1221 | | |
| 1222 | + | |
| 1223 | + | |
| 1224 | + | |
| 1225 | + | |
| 1226 | + | |
| 1227 | + | |
| 1228 | + | |
| 1229 | + | |
| 1230 | + | |
| 1231 | + | |
| 1232 | + | |
| 1233 | + | |
| 1234 | + | |
1222 | 1235 | | |
1223 | 1236 | | |
1224 | 1237 | | |
| |||
1314 | 1327 | | |
1315 | 1328 | | |
1316 | 1329 | | |
| 1330 | + | |
| 1331 | + | |
| 1332 | + | |
| 1333 | + | |
| 1334 | + | |
| 1335 | + | |
| 1336 | + | |
1317 | 1337 | | |
1318 | 1338 | | |
1319 | 1339 | | |
| |||
1439 | 1459 | | |
1440 | 1460 | | |
1441 | 1461 | | |
| 1462 | + | |
| 1463 | + | |
| 1464 | + | |
| 1465 | + | |
| 1466 | + | |
| 1467 | + | |
| 1468 | + | |
1442 | 1469 | | |
1443 | 1470 | | |
1444 | 1471 | | |
| |||
1467 | 1494 | | |
1468 | 1495 | | |
1469 | 1496 | | |
1470 | | - | |
| 1497 | + | |
1471 | 1498 | | |
1472 | 1499 | | |
1473 | 1500 | | |
| |||
1478 | 1505 | | |
1479 | 1506 | | |
1480 | 1507 | | |
| 1508 | + | |
| 1509 | + | |
| 1510 | + | |
| 1511 | + | |
| 1512 | + | |
| 1513 | + | |
| 1514 | + | |
| 1515 | + | |
| 1516 | + | |
| 1517 | + | |
| 1518 | + | |
1481 | 1519 | | |
1482 | 1520 | | |
1483 | 1521 | | |
| |||
2521 | 2559 | | |
2522 | 2560 | | |
2523 | 2561 | | |
2524 | | - | |
| 2562 | + | |
2525 | 2563 | | |
2526 | 2564 | | |
2527 | 2565 | | |
| |||
2536 | 2574 | | |
2537 | 2575 | | |
2538 | 2576 | | |
2539 | | - | |
| 2577 | + | |
| 2578 | + | |
| 2579 | + | |
| 2580 | + | |
| 2581 | + | |
| 2582 | + | |
| 2583 | + | |
| 2584 | + | |
| 2585 | + | |
| 2586 | + | |
| 2587 | + | |
| 2588 | + | |
| 2589 | + | |
| 2590 | + | |
| 2591 | + | |
| 2592 | + | |
2540 | 2593 | | |
2541 | 2594 | | |
2542 | 2595 | | |
| |||
2546 | 2599 | | |
2547 | 2600 | | |
2548 | 2601 | | |
| 2602 | + | |
| 2603 | + | |
| 2604 | + | |
| 2605 | + | |
| 2606 | + | |
| 2607 | + | |
| 2608 | + | |
| 2609 | + | |
| 2610 | + | |
| 2611 | + | |
2549 | 2612 | | |
2550 | 2613 | | |
2551 | 2614 | | |
| |||
2960 | 3023 | | |
2961 | 3024 | | |
2962 | 3025 | | |
| 3026 | + | |
| 3027 | + | |
| 3028 | + | |
| 3029 | + | |
| 3030 | + | |
| 3031 | + | |
| 3032 | + | |
| 3033 | + | |
| 3034 | + | |
| 3035 | + | |
2963 | 3036 | | |
2964 | 3037 | | |
2965 | 3038 | | |
| |||
2985 | 3058 | | |
2986 | 3059 | | |
2987 | 3060 | | |
2988 | | - | |
| 3061 | + | |
2989 | 3062 | | |
2990 | 3063 | | |
2991 | 3064 | | |
| |||
3002 | 3075 | | |
3003 | 3076 | | |
3004 | 3077 | | |
3005 | | - | |
| 3078 | + | |
3006 | 3079 | | |
3007 | 3080 | | |
3008 | 3081 | | |
| |||
4984 | 5057 | | |
4985 | 5058 | | |
4986 | 5059 | | |
4987 | | - | |
4988 | | - | |
4989 | | - | |
| 5060 | + | |
| 5061 | + | |
| 5062 | + | |
4990 | 5063 | | |
4991 | | - | |
4992 | | - | |
4993 | | - | |
4994 | | - | |
| 5064 | + | |
| 5065 | + | |
| 5066 | + | |
| 5067 | + | |
4995 | 5068 | | |
4996 | | - | |
| 5069 | + | |
| 5070 | + | |
| 5071 | + | |
4997 | 5072 | | |
4998 | 5073 | | |
4999 | 5074 | | |
| 5075 | + | |
5000 | 5076 | | |
5001 | 5077 | | |
5002 | 5078 | | |
5003 | 5079 | | |
5004 | 5080 | | |
| 5081 | + | |
| 5082 | + | |
5005 | 5083 | | |
5006 | 5084 | | |
5007 | 5085 | | |
5008 | 5086 | | |
5009 | | - | |
| 5087 | + | |
5010 | 5088 | | |
5011 | 5089 | | |
5012 | 5090 | | |
| |||
8360 | 8438 | | |
8361 | 8439 | | |
8362 | 8440 | | |
8363 | | - | |
| 8441 | + | |
8364 | 8442 | | |
8365 | 8443 | | |
8366 | 8444 | | |
| |||
8410 | 8488 | | |
8411 | 8489 | | |
8412 | 8490 | | |
| 8491 | + | |
| 8492 | + | |
| 8493 | + | |
| 8494 | + | |
| 8495 | + | |
| 8496 | + | |
| 8497 | + | |
8413 | 8498 | | |
8414 | 8499 | | |
8415 | 8500 | | |
| |||
8431 | 8516 | | |
8432 | 8517 | | |
8433 | 8518 | | |
8434 | | - | |
8435 | | - | |
8436 | | - | |
8437 | | - | |
8438 | | - | |
8439 | | - | |
8440 | | - | |
8441 | 8519 | | |
8442 | 8520 | | |
8443 | 8521 | | |
| |||
8631 | 8709 | | |
8632 | 8710 | | |
8633 | 8711 | | |
8634 | | - | |
| 8712 | + | |
8635 | 8713 | | |
8636 | 8714 | | |
8637 | 8715 | | |
| |||
9331 | 9409 | | |
9332 | 9410 | | |
9333 | 9411 | | |
| 9412 | + | |
| 9413 | + | |
| 9414 | + | |
| 9415 | + | |
| 9416 | + | |
| 9417 | + | |
| 9418 | + | |
| 9419 | + | |
| 9420 | + | |
9334 | 9421 | | |
9335 | 9422 | | |
9336 | 9423 | | |
| |||
9343 | 9430 | | |
9344 | 9431 | | |
9345 | 9432 | | |
| 9433 | + | |
| 9434 | + | |
| 9435 | + | |
| 9436 | + | |
| 9437 | + | |
| 9438 | + | |
| 9439 | + | |
9346 | 9440 | | |
9347 | 9441 | | |
9348 | 9442 | | |
| |||
0 commit comments