Skip to content

Update dependency eslint-plugin-simple-import-sort to v13#1964

Open
renovate[bot] wants to merge 2 commits into
masterfrom
renovate/eslint-plugin-simple-import-sort-13.x
Open

Update dependency eslint-plugin-simple-import-sort to v13#1964
renovate[bot] wants to merge 2 commits into
masterfrom
renovate/eslint-plugin-simple-import-sort-13.x

Conversation

@renovate

@renovate renovate Bot commented May 20, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
eslint-plugin-simple-import-sort 9.0.0 β†’ 13.0.0 age confidence

Release Notes

lydell/eslint-plugin-simple-import-sort (eslint-plugin-simple-import-sort)

v13.0.0

Compare Source

This release puts imports from the same source, but with different import styles, in a deterministic order.

// First namespace imports:
import * as Circle from "circle;
// Then default imports:
import createCircle from "circle";
// Then named imports:
import { radius } from "circle";

That is especially useful if you need to have both a namespace import and 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.

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.

Thanks to Kannan Goundan (@​cakoose)!

v12.1.1

Compare Source

This release adds a short meta.docs.description to each rule. Thanks to fisker Cheung (@​fisker)!

v12.1.0

Compare Source

This release adds TypeScript type definitions for the plugin itself. This is useful when you use TypeScript to check your ESLint configuration. It assumes that you install @types/eslint yourself. Thanks to @​Logicer16!

v12.0.0

Compare Source

This release removes the support for import assignments added in version 11.0.0:

  • Turns out it was broken in some cases.
  • The suggested fix went past my complexity tolerance for such an esoteric feature.
  • I also learned that they aren’t really imports, and that I don’t understand their semantics well enough to know how sorting them affects your program.

If you miss the support for import assignments, I suggest you write your own ESLint rule which moves them out of the way from the actual imports, sorting them or not.

v11.0.0

Compare Source

This release adds support for TypeScript import assignments (import A = B.C and import A = require("module")). Thanks to Szabolcs Kurdi (@​szku01) and Svyatoslav Zaytsev (@​MillerSvt)!

It’s only a breaking change if you use TypeScript import assignments, and only in the form that you need to autofix your files.

In other news, this release adds the meta plugin property in preparation for ESLint Flat Config, and avoids the deprecated context.getSourceCode() method (while still being backwards compatible).

v10.0.0

Compare Source

This release might move some imported items with type around. This is a breaking formatting change (that only affects TypeScript and Flow), but only in the form of that you need to autofix your files.

In previous versions, type specifiers came first:

import { type B, a } from "a";
export { type B, a } from "a";

Now, all specifiers are sorted alphabetically, regardless of type:

import { a, type B } from "a";
export { a, type B } from "a";

Motivation:

You might import a class for a type annotation using:

import {
  type MyClass,
  coolFunction,
} from "example";

Later, you also start instantiating that class in the same file (new MyClass()), so you remove type.

Previously, this resulted in a messy diff due to the class moving:

 import {
-  type MyClass,
   coolFunction,
+  MyClass,
 } from "example";

Now, the sorting with the type keyword would be:

import {
  coolFunction,
  type MyClass,
} from "example";

Now there’s no reordering diff, just the type keyword being removed:

 import {
   coolFunction,
-   type MyClass,
+   MyClass,
 } from "example";

This is consistent with [β€œWhy sort on from?”][sort-from].

Thanks to Jake Bailey (@​jakebailey) for reporting and suggesting the fix!


Configuration

πŸ“… Schedule: (in timezone Europe/London)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

β™» Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

πŸ”• Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added devDependencies Dependencies only required for local dev or the prod build, NOT prod runtime linting For checking code for errors in static analysis labels May 20, 2026
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 7 times, most recently from 230c8ab to 2fc6a97 Compare May 27, 2026 15:30
@socket-security

socket-security Bot commented May 27, 2026

Copy link
Copy Markdown

All alerts resolved. Learn more about Socket for GitHub.

This PR previously contained dependency changes with security issues that have been resolved, removed, or ignored.

View full report

@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 3 times, most recently from 2042241 to b883dfd Compare May 27, 2026 18:56
@socket-security

socket-security Bot commented May 27, 2026

Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updatednpm/​eslint-plugin-simple-import-sort@​9.0.0 ⏡ 13.0.0100 +110080 +281100

View full report

@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 2 times, most recently from edb5ec0 to 429b5b8 Compare June 3, 2026 12:37
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 7 times, most recently from 6835033 to 8aa3ba5 Compare June 20, 2026 00:01
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch from 8aa3ba5 to 649520a Compare June 22, 2026 12:58
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 2 times, most recently from 9e7f842 to bad9b52 Compare June 22, 2026 13:25
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 2 times, most recently from 740a726 to c9ce776 Compare July 6, 2026 13:50
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch 4 times, most recently from d3404a5 to 0eed05e Compare July 7, 2026 13:43
leotm and others added 2 commits July 10, 2026 22:06
- force AGP 9 to act like AGP 8 until libs migrated
- add TODO to revert both flags and old KGP once ecosystem ready
- ref: react/react-native#56222
@renovate renovate Bot force-pushed the renovate/eslint-plugin-simple-import-sort-13.x branch from 0eed05e to 92cbfab Compare July 10, 2026 21:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

devDependencies Dependencies only required for local dev or the prod build, NOT prod runtime linting For checking code for errors in static analysis

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant