Skip to content

chore(deps): update devdependencies#2823

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

chore(deps): 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.64.0 age confidence
markdownlint-cli 0.49.00.49.1 age confidence
prettier (source) 3.8.43.9.5 age confidence
typescript-eslint (source) 8.62.08.64.0 age confidence
vite (source) 8.1.08.1.5 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.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.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.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.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.19 ms 15.16 ms -0.2%
🟢 js medium 10.41 ms 7.50 ms -28.0%
🟢 js large 3.05 ms 2.95 ms -3.3%
gjs small 1.29 ms 1.27 ms -1.5%
gjs medium 629.55 µs 629.77 µs +0.0%
gjs large 252.84 µs 250.85 µs -0.8%
gts small 1.27 ms 1.25 ms -1.1%
gts medium 633.72 µs 631.48 µs -0.4%
gts large 251.14 µs 249.73 µs -0.6%

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

Full mitata output
clk: ~3.08 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.26 ms/iter  20.03 ms ▅█                   
                      (13.41 ms … 33.26 ms)  31.94 ms ███                  
                    (  5.74 mb …  10.20 mb)   7.32 mb █████▁▄█▄▁▄▄▄▄▄▁▄▁▁▁▄

js small (experiment)         15.98 ms/iter  15.93 ms  ██ █                
                      (14.13 ms … 23.60 ms)  22.26 ms ▆██▃█                
                    (  6.18 mb …   8.61 mb)   6.90 mb █████▁▄██▄▁▄▁▁▁▁▄▁▁▁▄

                             ┌                                            ┐
                             ╷ ┌─────────┬───┐                            ╷
          js small (control) ├─┤         │   ├────────────────────────────┤
                             ╵ └─────────┴───┘                            ╵
                               ╷┌──┬              ╷
       js small (experiment)   ├┤  │──────────────┤
                               ╵└──┴              ╵
                             └                                            ┘
                             13.41 ms           22.68 ms           31.94 ms

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

------------------------------------------- -------------------------------
js medium (control)           10.93 ms/iter  11.63 ms █                    
                       (7.68 ms … 21.21 ms)  20.63 ms █▄   ▄▅              
                    (  2.93 mb …   4.56 mb)   3.61 mb ██▆▄▆██▁▁▄▄▃▃▁▆▄▁▁▁▁▃

js medium (experiment)         8.03 ms/iter   8.35 ms  █▂                  
                       (7.04 ms … 13.90 ms)  11.94 ms  ██                  
                    (  2.88 mb …   4.41 mb)   3.56 mb ███▅▆▆▅▅▂▂▂▃▁▂▁▁▂▂▂▁▂

                             ┌                                            ┐
                               ╷┌─────────┬─┐                             ╷
         js medium (control)   ├┤         │ ├─────────────────────────────┤
                               ╵└─────────┴─┘                             ╵
                             ╷┌─┬┐           ╷
      js medium (experiment) ├┤ │├───────────┤
                             ╵└─┴┘           ╵
                             └                                            ┘
                             7.04 ms           13.83 ms            20.63 ms

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

------------------------------------------- -------------------------------
js large (control)             3.33 ms/iter   3.21 ms ▄█                   
                        (2.90 ms … 7.58 ms)   6.25 ms ██                   
                    (262.11 kb …   2.10 mb)   1.44 mb ██▆▂▂▃▂▁▂▂▁▁▁▂▁▁▂▁▁▁▂

js large (experiment)          3.41 ms/iter   3.38 ms █                    
                       (2.73 ms … 10.90 ms)   8.50 ms █▆                   
                    (158.28 kb …   3.28 mb)   1.46 mb ██▅▄▃▃▂▂▂▂▂▁▁▂▁▁▁▁▁▁▂

                             ┌                                            ┐
                              ╷┌──┬                     ╷
          js large (control)  ├┤  │─────────────────────┤
                              ╵└──┴                     ╵
                             ╷┌───┬                                       ╷
       js large (experiment) ├┤   │───────────────────────────────────────┤
                             ╵└───┴                                       ╵
                             └                                            ┘
                             2.73 ms            5.62 ms             8.50 ms

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

------------------------------------------- -------------------------------
gjs small (control)            1.45 ms/iter   1.41 ms █                    
                        (1.23 ms … 5.68 ms)   5.23 ms █▄                   
                    (505.41 kb …   1.63 mb)   1.06 mb ██▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gjs small (experiment)         1.38 ms/iter   1.30 ms █                    
                        (1.22 ms … 5.67 ms)   5.06 ms █                    
                    (224.23 kb …   1.91 mb)   1.06 mb █▅▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ┌──┬                                         ╷
         gjs small (control) │  │─────────────────────────────────────────┤
                             └──┴                                         ╵
                             ┌─┬                                        ╷
      gjs small (experiment) │ │────────────────────────────────────────┤
                             └─┴                                        ╵
                             └                                            ┘
                             1.22 ms            3.23 ms             5.23 ms

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

------------------------------------------- -------------------------------
gjs medium (control)         685.08 µs/iter 646.96 µs █                    
                      (596.70 µs … 5.76 ms)   3.36 ms █                    
                    (247.77 kb …   1.12 mb) 542.13 kb █▃▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gjs medium (experiment)      681.83 µs/iter 647.23 µs  █                   
                      (595.68 µs … 5.92 ms)   1.81 ms ██                   
                    (246.18 kb …   1.13 mb) 541.77 kb ██▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ┌┬                                           ╷
        gjs medium (control) ││───────────────────────────────────────────┤
                             └┴                                           ╵
                             ┌┬                  ╷
     gjs medium (experiment) ││──────────────────┤
                             └┴                  ╵
                             └                                            ┘
                             595.68 µs           1.98 ms            3.36 ms

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

------------------------------------------- -------------------------------
gjs large (control)          283.32 µs/iter 268.46 µs  █                   
                      (239.88 µs … 4.98 ms) 415.17 µs ▆█▄                  
                    (143.73 kb … 739.38 kb) 217.30 kb █████▄▃▂▁▁▁▁▁▁▁▁▁▁▁▁▁

gjs large (experiment)       276.55 µs/iter 267.15 µs  █                   
                      (238.83 µs … 5.08 ms) 374.24 µs  ██                  
                    (105.97 kb … 808.84 kb) 216.58 kb ▇██▆▇█▄▂▂▂▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷ ┌────────┬                                 ╷
         gjs large (control) ├─┤        │─────────────────────────────────┤
                             ╵ └────────┴                                 ╵
                             ╷┌────────┬                        ╷
      gjs large (experiment) ├┤        │────────────────────────┤
                             ╵└────────┴                        ╵
                             └                                            ┘
                             238.83 µs         327.00 µs          415.17 µs

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

------------------------------------------- -------------------------------
gts small (control)            1.35 ms/iter   1.29 ms █                    
                        (1.23 ms … 5.59 ms)   4.68 ms █                    
                    (182.05 kb …   1.52 mb)   1.06 mb █▄▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gts small (experiment)         1.34 ms/iter   1.28 ms █                    
                        (1.21 ms … 5.88 ms)   4.72 ms █                    
                    (579.87 kb …   1.57 mb)   1.05 mb █▄▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

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

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

------------------------------------------- -------------------------------
gts medium (control)         676.40 µs/iter 649.92 µs  █                   
                      (603.30 µs … 5.00 ms)   1.28 ms  █                   
                    (238.61 kb …   1.11 mb) 541.27 kb ██▇▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

gts medium (experiment)      677.55 µs/iter 647.39 µs  █                   
                      (597.50 µs … 5.58 ms)   1.80 ms ▇█                   
                    (200.20 kb …   1.13 mb) 540.59 kb ██▂▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷┌─┬                      ╷
        gts medium (control) ├┤ │──────────────────────┤
                             ╵└─┴                      ╵
                             ╷┌─┬                                         ╷
     gts medium (experiment) ├┤ │─────────────────────────────────────────┤
                             ╵└─┴                                         ╵
                             └                                            ┘
                             597.50 µs           1.20 ms            1.80 ms

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

------------------------------------------- -------------------------------
gts large (control)          277.12 µs/iter 266.72 µs  █▃                  
                      (239.26 µs … 5.08 ms) 358.11 µs  ██                  
                    ( 31.75 kb … 901.59 kb) 217.00 kb ▆██▇▅█▆▄▂▂▂▁▁▁▁▁▁▁▁▁▁

gts large (experiment)       271.95 µs/iter 266.13 µs  █                   
                      (238.21 µs … 4.86 ms) 352.05 µs  ██                  
                    (215.70 kb … 965.81 kb) 216.81 kb ▅██▇▃█▆▅▂▂▂▁▁▁▁▁▁▁▁▁▁

                             ┌                                            ┐
                             ╷ ┌────────────┬                             ╷
         gts large (control) ├─┤            │─────────────────────────────┤
                             ╵ └────────────┴                             ╵
                             ╷ ┌──────────┬                             ╷
      gts large (experiment) ├─┤          │─────────────────────────────┤
                             ╵ └──────────┴                             ╵
                             └                                            ┘
                             238.21 µs         298.16 µs          358.11 µs

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

@renovate
renovate Bot force-pushed the renovate/devdependencies branch from 32bbaa7 to 65cdd1a Compare July 19, 2026 21:37
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