Skip to content

fix(deps): lock file maintenance minor/patch updates #6004

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 4, 2025

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 4, 2025

This PR contains the following updates:

Package Type Update Change Pending Age Confidence
lockFileMaintenance All locks refreshed
@codemirror/language devDependencies patch ^6.11.1 -> ^6.11.2 age confidence
@codemirror/view devDependencies minor ^6.37.2 -> ^6.38.0 age confidence
@eslint/js (source) devDependencies minor ^9.29.0 -> ^9.30.0 9.30.1 age confidence
@jridgewell/sourcemap-codec (source) devDependencies patch ^1.5.0 -> ^1.5.3 1.5.4 age confidence
@mermaid-js/mermaid-cli devDependencies patch ^11.4.3 -> ^11.6.0 age confidence
@rollup/plugin-commonjs (source) devDependencies patch ^28.0.5 -> ^28.0.6 age confidence
@rollup/plugin-typescript (source) devDependencies patch ^12.1.2 -> ^12.1.4 age confidence
@rollup/pluginutils (source) devDependencies patch ^5.1.4 -> ^5.2.0 age confidence
@shikijs/vitepress-twoslash (source) devDependencies minor ^3.6.0 -> ^3.7.0 age confidence
@types/node (source) devDependencies patch ^18.19.112 -> ^18.19.113 18.19.115 (+1) age confidence
concurrently devDependencies minor ^9.1.2 -> ^9.2.0 age confidence
eslint (source) devDependencies minor ^9.29.0 -> ^9.30.0 9.30.1 age confidence
eslint-plugin-prettier devDependencies patch ^5.4.1 -> ^5.5.1 age confidence
mocha (source) devDependencies patch ^11.6.0 -> ^11.7.1 age confidence
prettier (source) devDependencies minor ^3.5.3 -> ^3.6.2 age confidence
rollup (source) devDependencies patch ^4.43.0 -> ^4.44.1 age confidence
terser (source) devDependencies patch ^5.42.0 -> ^5.43.1 age confidence
typescript-eslint (source) devDependencies minor ^8.34.1 -> ^8.35.1 age confidence
vue (source) devDependencies patch ^3.5.16 -> ^3.5.17 age confidence
napi-build build-dependencies patch 2.2.1 -> 2.2.2 age confidence
swc_compiler_base dependencies patch 23.0.1 -> 23.0.2 age confidence
swc_config dependencies patch 3.1.0 -> 3.1.1 age confidence

🔧 This Pull Request updates lock files to use the latest dependency versions.


Release Notes

codemirror/language (@​codemirror/language)

v6.11.2

Compare Source

Bug fixes

Make sure folded ranges open when backspacing or deleting into them.

codemirror/view (@​codemirror/view)

v6.38.0

Compare Source

New features

Gutters can now specify that they should be displayed after the content (which would be to the right in a left-to-right layout).

eslint/eslint (@​eslint/js)

v9.30.0

Compare Source

jridgewell/sourcemaps (@​jridgewell/sourcemap-codec)

v1.5.3

Compare Source

  • Update UMD Wrapper to fix webpack build issue: #​33
  • Add getOwnPropertyDescriptors polyfill to support Node v6: #​34

Full Changelog: jridgewell/sourcemaps@sourcemap-codec/1.5.2...sourcemap-codec/1.5.3

v1.5.2

Compare Source

Full Changelog: jridgewell/sourcemaps@sourcemap-codec/1.5.1...sourcemap-codec/1.5.2

v1.5.1

Compare Source

Full Changelog: jridgewell/sourcemaps@sourcemap-codec/1.5.0...sourcemap-codec/1.5.1

rollup/plugins (@​rollup/plugin-typescript)

v12.1.4

2025-06-28

Bugfixes
shikijs/shiki (@​shikijs/vitepress-twoslash)

v3.7.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub
open-cli-tools/concurrently (concurrently)

v9.2.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.1.2...v9.2.0

eslint/eslint (eslint)

v9.30.0

Compare Source

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.1

Compare Source

Patch Changes
mochajs/mocha (mocha)

v11.7.1

Compare Source

🩹 Fixes
🧹 Chores
prettier/prettier (prettier)

v3.6.2

Compare Source

diff

Markdown: Add missing blank line around code block (#​17675 by @​fisker)
<!-- Input -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

<!-- Prettier 3.6.1 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```
   1. Another
   2. List

<!-- Prettier 3.6.2 -->
1. Some text, and code block below, with newline after code block

   ```yaml
   ---
   foo: bar
   ```

   1. Another
   2. List

v3.6.1

Compare Source

diff

TypeScript: Allow const without initializer (#​17650, #​17654 by @​fisker)
// Input
export const version: string;

// Prettier 3.6.0 (--parser=babel-ts)
SyntaxError: Unexpected token (1:21)
> 1 | export const version: string;
    |                     ^

// Prettier 3.6.0 (--parser=oxc-ts)
SyntaxError: Missing initializer in const declaration (1:14)
> 1 | export const version: string;
    |              ^^^^^^^^^^^^^^^

// Prettier 3.6.1
export const version: string;
Miscellaneous: Avoid closing files multiple times (#​17665 by @​43081j)

When reading a file to infer the interpreter from a shebang, we use the
n-readlines library to read the first line in order to get the shebang.

This library closes files when it reaches EOF, and we later try close the same
files again. We now close files only if n-readlines did not already close
them.

v3.6.0

Compare Source

diff

🔗 Release Notes

rollup/rollup (rollup)

v4.44.1

Compare Source

2025-06-26

Bug Fixes
  • Reinstate maxParallelFileOps limit of 1000 to resolve the issue for some (#​5992)
Pull Requests
typescript-eslint/typescript-eslint (typescript-eslint)

v8.35.1

Compare Source

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

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

v8.35.0

Compare Source

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

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

napi-rs/napi-rs (napi-build)

v2.2.2

Compare Source

What's Changed

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi@3.0.0-beta.10...napi-build@2.2.2


Configuration

📅 Schedule: Branch creation - "before 4am on Friday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge July 4, 2025 03:40
Copy link

vercel bot commented Jul 4, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
rollup ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jul 4, 2025 4:27am

Copy link

github-actions bot commented Jul 4, 2025

Thank you for your contribution! ❤️

You can try out this pull request locally by installing Rollup via

npm install rollup/rollup#renovate/minorpatch-updates

Notice: Ensure you have installed the latest stable Rust toolchain. If you haven't installed it yet, please see https://www.rust-lang.org/tools/install to learn how to download Rustup and install Rust.

or load it into the REPL:
https://rollup-pwzpjo6kj-rollup-js.vercel.app/repl/?pr=6004

Copy link

github-actions bot commented Jul 4, 2025

Performance report

  • BUILD: 6828ms, 825 MB
    • initialize: 0ms, 24.7 MB
    • generate module graph: 2550ms, 631 MB
      • generate ast: 1396ms, 619 MB
    • sort and bind modules: 382ms, 686 MB
    • mark included statements: 3890ms, 825 MB
      • treeshaking pass 1: 2276ms, 826 MB
      • treeshaking pass 2: 452ms, 815 MB (-3%)
      • treeshaking pass 3: 386ms, 827 MB
      • treeshaking pass 4: 376ms, 807 MB
      • treeshaking pass 5: 373ms, 825 MB
  • GENERATE: 771ms (+96ms, +14.2%), 918 MB (-4%)
    • initialize render: 0ms, 868 MB (+4%)
    • generate chunks: 136ms (+94ms, +222.2%), 836 MB
      • optimize chunks: 0ms, 847 MB (+3%)
    • render chunks: 613ms, 905 MB (-3%)
    • transform chunks: 18ms, 918 MB (-4%)
    • generate bundle: 0ms, 918 MB (-4%)

Copy link
Contributor Author

renovate bot commented Jul 4, 2025

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link

codecov bot commented Jul 4, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 98.78%. Comparing base (5a7f9e2) to head (fd0fad6).
Report is 1 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #6004   +/-   ##
=======================================
  Coverage   98.78%   98.78%           
=======================================
  Files         270      270           
  Lines        8745     8745           
  Branches     1512     1512           
=======================================
  Hits         8639     8639           
  Misses         73       73           
  Partials       33       33           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate renovate bot added this pull request to the merge queue Jul 4, 2025
Merged via the queue into master with commit 960c246 Jul 4, 2025
41 checks passed
@renovate renovate bot deleted the renovate/minorpatch-updates branch July 4, 2025 04:52
Copy link

github-actions bot commented Jul 4, 2025

This PR has been released as part of rollup@4.44.2. You can test it via npm install rollup.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant