Conversation
Contributor
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF ScorecardScorecard details
Scanned Files
|
Member
|
@dependabot rebase |
Bumps [@trivago/prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports) from 5.2.2 to 6.0.0. - [Release notes](https://github.com/trivago/prettier-plugin-sort-imports/releases) - [Changelog](https://github.com/trivago/prettier-plugin-sort-imports/blob/main/CHANGELOG.md) - [Commits](trivago/prettier-plugin-sort-imports@v5.2.2...v6.0.0) --- updated-dependencies: - dependency-name: "@trivago/prettier-plugin-sort-imports" dependency-version: 6.0.0 dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
b243f3f to
5af4011
Compare
npalm
approved these changes
Jan 6, 2026
LudovicTOURMAN
pushed a commit
to doctolib-lab/terraform-aws-github-runner
that referenced
this pull request
Apr 7, 2026
…to 6.0.0 in /lambdas (github-aws-runners#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] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bumps @trivago/prettier-plugin-sort-imports from 5.2.2 to 6.0.0.
Release notes
Sourced from
@trivago/prettier-plugin-sort-imports's releases.Changelog
Sourced from
@trivago/prettier-plugin-sort-imports's changelog.Commits
48863196.0.0d9b0a89Merge pull request #386 from trivago/chorese2d360fupdate lockfilec42a081V6 (#385)f7b685cUpdate README.md12b2291Update README.md875470aMerge branch 'main' of github.com:trivago/prettier-plugin-sort-imports509c5a7Update packages and pin babel/types (#343)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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore this major versionwill 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 versionwill 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 dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)