Skip to content

Update devDependencies - #2823

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/devdependencies
Open

Update devDependencies#2823
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/devdependencies

Conversation

@renovate

@renovate renovate Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@eslint/eslintrc 3.3.53.3.6 age confidence
@eslint/js (source) 9.39.49.39.5 age confidence
@typescript-eslint/parser (source) 8.62.08.65.0 age confidence
markdownlint-cli 0.49.00.49.1 age confidence
prettier (source) 3.8.43.9.6 age confidence
typescript-eslint (source) 8.62.08.65.0 age confidence
vite (source) 8.1.08.2.0 age confidence
vitest (source) 3.2.63.2.7 age confidence

Release Notes

eslint/eslintrc (@​eslint/eslintrc)

v3.3.6

Compare Source

Bug Fixes
  • update js-yaml to 4.3.0 to address security vulnerability (#​235) (0c5de74)
eslint/eslint (@​eslint/js)

v9.39.5

Compare Source

Bug Fixes

Documentation

Chores

  • 458205f chore: update @eslint/eslintrc and @eslint/js for v9.39.5 (#​21077) (Francesco Trotta)
  • 202117b chore: package.json update for @​eslint/js release (Jenkins)
  • d9eb6ed test: disable warning for vm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER (#​21074) (Francesco Trotta)
  • 7b431a7 chore: override re2 dependency for @metascraper/helpers (#​21068) (Milos Djermanovic)
  • daf7791 chore: pin fflate@​0.8.2 (#​20895) (Milos Djermanovic)
  • daee8ba ci: use pnpm in eslint-flat-config-utils type integration test (#​20829) (Milos Djermanovic)
  • 116d4be ci: unpin Node.js 25.x in CI (#​20619) (Copilot)
typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v8.65.0

Compare Source

🚀 Features
  • add warning when TS 7 is detected (#​12529)
  • parser: add onUnsupportedTypeScriptVersion option to error on unsupported TypeScript versions (#​12465)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.64.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.63.0

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for parser to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

igorshubovych/markdownlint-cli (markdownlint-cli)

v0.49.1

Compare Source

  • Update markdownlint dependency to 0.41.1
    • Improve MD029
    • Fix module resolution under webpack
    • Update dependencies
  • Update all dependencies via Dependabot
prettier/prettier (prettier)

v3.9.6

Compare Source

v3.9.5

Compare Source

diff

Markdown: Cap ordered list mark at 999,999,999 (#​19351 by @​tats-u)

CommonMark parsers only support ordered list item numbers up to 999,999,999.

With this change, Prettier now caps the ordered list item number at 999,999,999 to ensure that the output is correctly parsed as an ordered list by CommonMark parsers. Numbers larger than 999,999,999 are not parsed as list item numbers and are left unchanged in the output:

<!-- Input -->
999999998. text
999999998. text
999999998. text
999999998. text

1234567890123456789012) text

<!-- Prettier 3.9.4 -->
999999998. text
999999999. text
1000000000. text
1000000001. text

1234567890123456789012) text

<!-- Prettier 3.9.5 -->
999999998. text
999999999. text
999999999. text
999999999. text

1234567890123456789012) text
Markdown: Avoid corrupting empty link with title (#​19487 by @​andersk)

Do not remove <> from an inline link or image with an empty URL and a title, as this removal would change its interpretation.

<!-- Input -->
[link](<> "title")

<!-- Prettier 3.9.4 -->
[link]( "title")

<!-- Prettier 3.9.5 -->
[link](<> "title")
Less: Remove extra spaces after [ in map lookups (#​19503 by @​kovsu)
// Input
.foo {
  color: #theme[ primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}

// Prettier 3.9.4
.foo {
  color: #theme[ primary];
  color: #theme[ @&#8203;name];
  color: #theme[ @&#8203;@&#8203;name];
}

// Prettier 3.9.5
.foo {
  color: #theme[primary];
  color: #theme[@&#8203;name];
  color: #theme[@&#8203;@&#8203;name];
}
CSS: Prevent addition space in type() with + (#​19516 by @​bigandy)

This fixes the addition space before + in CSS type() declaration. For example type(<number>+) was being converted into type(<number> +) which is invalid CSS and does not work.

/* Input */
div {
  border-radius: attr(br type(<length>+));
}

/* Prettier 3.9.4 */
div {
  border-radius: attr(br type(<length> +));
}

/* Prettier 3.9.5 */
div {
  border-radius: attr(br type(<length>+));
}
Less: Remove spaces between merge markers and colons (#​19517 by @​kovsu)
// Input
a {
  box-shadow  +  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.4
a {
  box-shadow+  : 0 0 1px #&#8203;000;
}

// Prettier 3.9.5
a {
  box-shadow+: 0 0 1px #&#8203;000;
}
Markdown: Preserve wiki links with aliases (#​19527 by @​kovsu)
<!-- Input -->
[[Foo:Bar]]

<!-- Prettier 3.9.4 -->
[[Foo]]

<!-- Prettier 3.9.5 -->
[[Foo:Bar]]
TypeScript: Fix comments being dropped on shorthand type import/export specifiers (#​19565 by @​kirkwaiblinger)
// Input
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";

// Prettier 3.9.4
Error: Comment "comment" was not printed. Please report this error!

// Prettier 3.9.5
export { type /* comment */ T } from "foo";
import { type /* comment */ T } from "foo";
Miscellaneous: Preserving comments' placement property (#​19567 by @​Janther)

Prettier@​3.9.0 deleted an undocumented property on comments, which was already used by plugins, comment.placement is now available again after comment attach.

Flow: Stop enforcing empty module declaration to break (#​19568 by @​fisker)
// Input
declare module "foo" {}

// Prettier 3.9.4
declare module "foo" {
}

// Prettier 3.9.5
declare module "foo" {}
Angular: Support expression for exhaustive typechecking (#​19571 by @​fisker)
<!-- Input -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}

<!-- Prettier 3.9.4 -->
@&#8203;switch (state.mode) {
  @&#8203;default never;
}

<!-- Prettier 3.9.5 -->
@&#8203;switch (state.mode) {
  @&#8203;default never(state);
}
TypeScript: Ignore comments inside mapped type when checking type parameter comments (#​19572 by @​fisker)
// Input
foo<{
  // comment
  [key in keyof Foo]: number
}>();

// Prettier 3.9.4
foo<
  {
    // comment
    [key in keyof Foo]: number;
  }
>();

// Prettier 3.9.5
foo<{
  // comment
  [key in keyof Foo]: number;
}>();
Less: Fix adjacent block comments being corrupted (#​19574 by @​kovsu)
// Input
/* a *//* b */
/* a */* {
  color: red;
}

// Prettier 3.9.4
/* a */
/* b */
/* a * {
  color: red;
}

// Prettier 3.9.5
/* a */ /* b */
/* a */
* {
  color: red;
}
JavaScript: Handle dangling comments in SwitchStatement (#​19581 by @​fisker)
// Input
switch (foo) {
 // comment
}

// Prettier 3.9.4
switch (
  foo
  // comment
) {
}

// Prettier 3.9.5
switch (foo) {
  // comment
}
TypeScript: Remove space in comment-only object type (#​19583 by @​fisker)
// Input
var foo = {
  /* comment */
};
type Foo = {
  /* comment */
};

// Prettier 3.9.4
var foo = {/* comment */};
type Foo = { /* comment */ };

// Prettier 3.9.5
var foo = {/* comment */};
type Foo = {/* comment */};

v3.9.4

Compare Source

v3.9.3

Compare Source

v3.9.2

Compare Source

v3.9.1

Compare Source

v3.9.0

Compare Source

diff

🔗 Release Notes

v3.8.5

Compare Source

typescript-eslint/typescript-eslint (typescript-eslint)

v8.65.0

Compare Source

🚀 Features
  • add warning when TS 7 is detected (#​12529)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.64.0

Compare Source

8.64.0 (2026-07-13)

🚀 Features
  • support parsing import defer (#​12513)
  • eslint-plugin: [no-loop-func] support using / await using declarations and deprecate the rule (#​12500)
  • typescript-estree: throw for invalid definite assignment in class properties (#​12543)
🩹 Fixes
  • eslint-plugin: [require-array-sort-compare] handle constrained arrays (#​12512)
❤️ Thank You

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.63.0

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

v8.62.1

Compare Source

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

See GitHub Releases for more information.

You can read about our versioning strategy and releases on our website.

vitejs/vite (vite)

v8.2.0

Compare Source

Features
Bug Fixes
  • bundledDev: print build errors to the terminal when an HMR update fails (#​23024) (41c4658)
  • deps: update all non-major dependencies (#​23069) (4c07b74)
  • hmr: preserve environment snapshot during server restart (#​22992) (b1186c3)
  • importAnalysis: interop imports injected into optimized dep files by plugins (#​23029) (8c2a87d)
  • module-runner: keep stack trace interception working when Object.prototype is frozen (#​23073) (599c5b0)
  • server: strip base in indexHtml module graph lookup (#​22932) (fa005d1)
  • support resolving top-level input option with plugins (#​23101) (41df81a)
Documentation
Tests

v8.1.5

Compare Source

Please refer to CHANGELOG.md for details.

v8.1.4

Compare Source

Features
Bug Fixes
Documentation
Miscellaneous Chores
Code Refactoring
Tests
Build System

v8.1.3

Compare Source

Bug Fixes

v8.1.2

Compare Source

Bug Fixes

v8.1.1

Compare Source

Features
Bug Fixes
Miscellaneous Chores
Code Refactoring
  • css: remove lightningcss null byte bug workaround (#​22822) (2dafd3b)
  • use pre-defined environments variable to avoid duplicate Object.values calls (#​22790) (1113acf)
Tests
  • enable "manual chunk path" test and remove "worker.format error" test (#​22824) (c088511)
vitest-dev/vitest (vitest)

v3.2.7

Compare Source

   🐞 Bug Fixes
  • browser: Check fs access in builtin commands [backport to v3]  -  by @​hi-ogawa, Hiroshi Ogawa and OpenCode (claude-opus-4-8) in #​10679 (b795e)
    View changes on GitHub

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "after 9pm on sunday"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 the dependencies Pull requests that update a dependency file label Jul 5, 2026
@renovate
renovate Bot enabled auto-merge (squash) July 5, 2026 21:28
@renovate renovate Bot added the dependencies Pull requests that update a dependency file label Jul 5, 2026
@github-actions

github-actions Bot commented Jul 5, 2026

Copy link
Copy Markdown
Contributor

🏎️ Benchmark Comparison

Benchmark Control (p50) Experiment (p50) Δ
🟢 js small 15.29 ms 14.79 ms -3.3%
🟢 js medium 7.63 ms 7.34 ms -3.8%
🟢 js large 2.95 ms 2.83 ms -4.0%
gjs small 1.26 ms 1.24 ms -1.1%
gjs medium 624.92 µs 621.21 µs -0.6%
gjs large 249.17 µs 250.09 µs +0.4%
gts small 1.24 ms 1.25 ms +0.9%
gts medium 627.67 µs 627.88 µs +0.0%
gts large 247.42 µs 248.27 µs +0.3%

🟢 faster · 🔴 slower · 🟠 slightly slower · ⚪ within 2%

Full mitata output
clk: ~3.07 GHz
cpu: AMD EPYC 7763 64-Core Processor
runtime: node 24.18.0 (x64-linux)

benchmark                   avg (min … max) p75 / p99    (min … top 1%)
------------------------------------------- -------------------------------
js small (control)            18.22 ms/iter  18.71 ms █▄█                  
                      (13.31 ms … 32.82 ms)  32.59 ms ███ █                
                    (  5.47 mb …  10.80 mb)   7.36 mb ███▅██▅▅▁▁▅▁█▅▅▁▅▁▁▁▅

js small (experiment)         15.87 ms/iter  16.27 ms █                    
                      (14.05 ms … 23.89 ms)  22.31 ms █ ▆                  
                    (  6.34 mb …   9.01 mb)   6.90 mb ███▅▇▅▃▃▃▅▃▃▁▁▁▁▁▁▁▃▃

                             ┌                                            ┐
                             ╷ ┌────────┬─┐                               ╷
          js small (control) ├─┤        │ ├───────────────────────────────┤
                             ╵ └────────┴─┘                               ╵
                               ┌───┬┐             ╷
       js small (experiment)   │   │├─────────────┤
                               └───┴┘             ╵
                             └                                            ┘
                             13.31 ms           22.95 ms           32.59 ms

summary
  js small (experiment)
   1.15x faster than js small (control)

------------------------------------------- -------------------------------
js medium (control)            8.40 ms/iter   8.53 ms █▅                   
                       (7.15 ms … 15.66 ms)  14.92 ms ██                   
                    (  2.12 mb …   5.64 mb)   3.59 mb ██▇▅▄▅▄▁▂▂▁▂▁▂▂▂▁▃▁▁▂

js medium (experiment)         7.94 ms/iter   8.43 ms ▂█                   
                       (6.88 ms … 13.98 ms)  13.48 ms ██▃                  
                    (  2.50 mb …   4.54 mb)   3.57 mb ████▁▇▆▄▃▁▂▂▁▁▂▁▁▁▁▂▂

                             ┌                                            ┐
                               ┌──────┬                                   ╷
         js medium (control)   │      │───────────────────────────────────┤
                               └──────┴                                   ╵
                             ╷┌────┬──┐                           ╷
      js medium (experiment) ├┤    │  ├───────────────────────────┤
                             ╵└────┴──┘                           ╵
                             └                                            ┘
                             6.88 ms           10.90 ms            14.92 ms

summary
  js medium (experiment)
   1.06x faster than js medium (control)

------------------------------------------- -------------------------------
js large (control)             3.24 ms/iter   3.10 ms  █                   
                        (2.80 ms … 7.78 ms)   6.03 ms ▃█                   
                    (163.36 kb …   2.74 mb)   1.44 mb ██▅▂▂▂▂▁▂▂▁▁▁▁▁▁▁▁▁▁▁

js large (experiment)          3.41 ms/iter   3.17 ms █                    
                       (2.69 ms … 11.87 ms)   8.87 ms █▃                   
                    (219.10 kb …   3.16 mb)   1.46 mb ██▃▂▂▂▂▁▂▂▁▂▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                              ╷┌─┬                   ╷
          js large (control)  ├┤ │───────────────────┤
                              ╵└─┴                   ╵
                             ╷┌───┬                                       ╷
       js large (experiment) ├┤   │───────────────────────────────────────┤
                             ╵└───┴                                       ╵
                             └                                            ┘
                             2.69 ms            5.78 ms             8.87 ms

summary
  js large (control)
   1.05x faster than js large (experiment)

------------------------------------------- -------------------------------
gjs small (control)            1.42 ms/iter   1.36 ms █                    
                        (1.20 ms … 6.34 ms)   5.36 ms █▄                   
                    (250.70 kb …   1.82 mb)   1.06 mb ██▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gjs small (experiment)         1.37 ms/iter   1.28 ms █                    
                        (1.20 ms … 6.14 ms)   5.47 ms █                    
                    (314.18 kb …   1.63 mb)   1.06 mb █▅▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ┌─┬                                         ╷
         gjs small (control) │ │─────────────────────────────────────────┤
                             └─┴                                         ╵
                             ┌─┬                                          ╷
      gjs small (experiment) │ │──────────────────────────────────────────┤
                             └─┴                                          ╵
                             └                                            ┘
                             1.20 ms            3.34 ms             5.47 ms

summary
  gjs small (experiment)
   1.03x faster than gjs small (control)

------------------------------------------- -------------------------------
gjs medium (control)         675.87 µs/iter 638.99 µs █                    
                      (592.91 µs … 5.58 ms)   3.08 ms █                    
                    (246.13 kb …   1.10 mb) 541.51 kb █▃▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gjs medium (experiment)      665.09 µs/iter 637.80 µs  █                   
                      (589.59 µs … 5.14 ms)   1.44 ms  █                   
                    ( 34.09 kb …   1.04 mb) 540.37 kb ██▃▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ┌─┬                                          ╷
        gjs medium (control) │ │──────────────────────────────────────────┤
                             └─┴                                          ╵
                             ┌┬             ╷
     gjs medium (experiment) ││─────────────┤
                             └┴             ╵
                             └                                            ┘
                             589.59 µs           1.83 ms            3.08 ms

summary
  gjs medium (experiment)
   1.02x faster than gjs medium (control)

------------------------------------------- -------------------------------
gjs large (control)          276.85 µs/iter 264.90 µs  █                   
                      (236.91 µs … 4.87 ms) 376.90 µs  ██                  
                    (216.10 kb … 808.80 kb) 217.23 kb ▆██▅█▇▄▂▂▁▁▁▁▁▁▁▁▁▁▁▁

gjs large (experiment)       277.18 µs/iter 266.50 µs █▅                   
                      (238.92 µs … 5.12 ms) 604.63 µs ██▄                  
                    (215.70 kb … 660.73 kb) 216.70 kb ███▂▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷┌───┬           ╷
         gjs large (control) ├┤   │───────────┤
                             ╵└───┴           ╵
                             ╷┌───┬                                       ╷
      gjs large (experiment) ├┤   │───────────────────────────────────────┤
                             ╵└───┴                                       ╵
                             └                                            ┘
                             236.91 µs         420.77 µs          604.63 µs

summary
  gjs large (control)
   1x faster than gjs large (experiment)

------------------------------------------- -------------------------------
gts small (control)            1.34 ms/iter   1.26 ms █                    
                        (1.21 ms … 5.98 ms)   5.16 ms █                    
                    (280.12 kb …   1.85 mb)   1.06 mb █▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gts small (experiment)         1.35 ms/iter   1.27 ms █                    
                        (1.21 ms … 6.30 ms)   5.24 ms █                    
                    (336.30 kb …   1.79 mb)   1.05 mb █▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ┌┬                                          ╷
         gts small (control) ││──────────────────────────────────────────┤
                             └┴                                          ╵
                             ┌─┬                                          ╷
      gts small (experiment) │ │──────────────────────────────────────────┤
                             └─┴                                          ╵
                             └                                            ┘
                             1.21 ms            3.22 ms             5.24 ms

summary
  gts small (control)
   1.01x faster than gts small (experiment)

------------------------------------------- -------------------------------
gts medium (control)         670.32 µs/iter 640.90 µs  █                   
                      (592.07 µs … 5.45 ms)   1.46 ms ▂█                   
                    (239.89 kb …   1.17 mb) 542.14 kb ██▃▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gts medium (experiment)      670.85 µs/iter 641.52 µs  █                   
                      (597.71 µs … 5.36 ms)   1.54 ms ▄█                   
                    ( 74.48 kb …   1.20 mb) 540.47 kb ██▃▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷┌──┬                                    ╷
        gts medium (control) ├┤  │────────────────────────────────────┤
                             ╵└──┴                                    ╵
                             ╷┌──┬                                        ╷
     gts medium (experiment) ├┤  │────────────────────────────────────────┤
                             ╵└──┴                                        ╵
                             └                                            ┘
                             592.07 µs           1.07 ms            1.54 ms

summary
  gts medium (control)
   1x faster than gts medium (experiment)

------------------------------------------- -------------------------------
gts large (control)          273.60 µs/iter 264.86 µs ▃█                   
                      (237.72 µs … 4.65 ms) 479.65 µs ██                   
                    (216.09 kb … 802.44 kb) 216.80 kb ████▂▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gts large (experiment)       273.19 µs/iter 265.39 µs  █                   
                      (237.64 µs … 5.15 ms) 337.98 µs  ██                  
                    (183.80 kb … 965.80 kb) 216.80 kb ▄███▅▅▇▆▃▂▂▂▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷┌─────┬                                     ╷
         gts large (control) ├┤     │─────────────────────────────────────┤
                             ╵└─────┴                                     ╵
                             ╷┌─────┬           ╷
      gts large (experiment) ├┤     │───────────┤
                             ╵└─────┴           ╵
                             └                                            ┘
                             237.64 µs         358.65 µs          479.65 µs

summary
  gts large (experiment)
   1x faster than gts large (control)

@renovate
renovate Bot force-pushed the renovate/devdependencies branch 2 times, most recently from 65cdd1a to 2f0d47a Compare July 26, 2026 21:31
@renovate renovate Bot changed the title chore(deps): update devdependencies Update devDependencies Jul 26, 2026
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 2f0d47a to fb9bab9 Compare July 26, 2026 21:40
@renovate
renovate Bot force-pushed the renovate/devdependencies branch from fb9bab9 to 03d181f Compare August 2, 2026 21:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants