Unverified Commit 50ea77f1 authored by Jonas Heinrich's avatar Jonas Heinrich Committed by GitHub
Browse files

eslint: 9.39.2 -> 10.0.3 (#497658)

parents ce37db40 c485dd8a
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -122,6 +122,8 @@

- `lima` has been updated from `1.x` to `2.x`. This major update includes several breaking changes, such as `/tmp/lima` no longer being mounted by default.

- `eslint` has been updated from version 9 to version 10. Please see https://eslint.org/blog/2026/02/eslint-v10.0.0-released/ for details about the breaking changes included in the update.

- `minio_legacy_fs` has been removed. If you used that package, migrate your data to be compatible with the newest minio and use the package `minio`.

- `mercure` has been update to `0.21.4` (or later). Version [0.21.0](https://github.com/dunglas/mercure/releases/v0.21.0) and [0.21.2](https://github.com/dunglas/mercure/releases/tag/v0.21.2) introduce breaking changes to the package.
+1562 −1296

File changed.

Preview size limit exceeded, changes collapsed.

+4 −3
Original line number Diff line number Diff line
@@ -6,13 +6,13 @@
}:
buildNpmPackage rec {
  pname = "eslint";
  version = "9.39.2";
  version = "10.0.3";

  src = fetchFromGitHub {
    owner = "eslint";
    repo = "eslint";
    tag = "v${version}";
    hash = "sha256-VIJLEMIg9WUbrSAAHCZ6AJRrao0ssSbR+fyFQE+56vY=";
    hash = "sha256-f9RgM+N6wAM3asLBAl7B0MaggX19PEoTWa6db6ToizM=";
  };

  # NOTE: Generating lock-file
@@ -24,7 +24,7 @@ buildNpmPackage rec {
    cp ${./package-lock.json} package-lock.json
  '';

  npmDepsHash = "sha256-5QC0XLxcwawRcrc3r3EfFdo3hTZDTHz9BF68WJLk7SE=";
  npmDepsHash = "sha256-/dOfQbP9c+gdec/TUTuxrma0nOWdRFoBLDL3tNAQZ5k=";
  npmInstallFlags = [ "--omit=dev" ];

  dontNpmBuild = true;
@@ -35,6 +35,7 @@ buildNpmPackage rec {
  };

  meta = {
    changelog = "https://github.com/eslint/eslint/blob/${src.tag}/CHANGELOG.md";
    description = "Find and fix problems in your JavaScript code";
    homepage = "https://eslint.org";
    license = lib.licenses.mit;