Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 5, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Pending Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@codemirror/view devDependencies patch ^6.28.2 -> ^6.28.3 6.28.4 age adoption passing confidence
@napi-rs/cli devDependencies patch ^2.18.3 -> ^2.18.4 age adoption passing confidence
@shikijs/vitepress-twoslash (source) devDependencies minor ^1.9.0 -> ^1.10.0 1.10.1 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) devDependencies minor ^7.14.1 -> ^7.15.0 age adoption passing confidence
@typescript-eslint/parser (source) devDependencies minor ^7.14.1 -> ^7.15.0 age adoption passing confidence
inquirer (source) devDependencies patch ^9.2.23 -> ^9.3.2 9.3.4 (+1) age adoption passing confidence
mocha (source) devDependencies patch ^10.5.0 -> ^10.5.2 10.6.0 age adoption passing confidence
typescript (source) devDependencies patch ^5.5.2 -> ^5.5.3 age adoption passing confidence
vite (source) devDependencies patch ^5.3.1 -> ^5.3.2 5.3.3 age adoption passing confidence
vue (source) devDependencies patch ^3.4.30 -> ^3.4.31 age adoption passing confidence
wasm-pack devDependencies minor ^0.12.1 -> ^0.13.0 age adoption passing confidence
napi-derive dependencies patch 2.16.6 -> 2.16.8 age adoption passing confidence
swc_ecma_parser dependencies patch 0.146.6 -> 0.146.8 age adoption passing confidence
xxhash-rust dependencies patch 0.8.10 -> 0.8.11 age adoption passing confidence

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


Release Notes

codemirror/view (@​codemirror/view)

v6.28.3

Compare Source

Bug fixes

Fix an issue causing the IME interface to appear in the wrong spot on Chrome Windows.

napi-rs/napi-rs (@​napi-rs/cli)

v2.18.4

Compare Source

What Changed

  • fix(cli): add missing declare keyword

Full Changelog: https://github.com/napi-rs/napi-rs/compare/[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​2](https://togithub.com/2).18.3...[@​napi-rs/cli](https://togithub.com/napi-rs/cli)[@​2](https://togithub.com/2).18.4

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

v1.10.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
  • Expose createCssVariablesTheme in shiki/core to avoid side-effects  -  by @​antfu (abe63)
    View changes on GitHub
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v7.15.0

Compare Source

🚀 Features
  • eslint-plugin: [array-type] detect Readonly<string[]> case

  • eslint-plugin: back-port new rules around empty object types from v8

🩹 Fixes
  • disable EXPERIMENTAL_useProjectService in disabled-type-checked shared config

  • eslint-plugin: [no-unsafe-return] differentiate a types-error any from a true any

  • eslint-plugin: [no-unsafe-call] differentiate a types-error any from a true any

❤️ Thank You
  • auvred
  • Kim Sang Du
  • rgehbt
  • Vinccool96

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

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v7.15.0

Compare Source

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

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

SBoudrias/Inquirer.js (inquirer)

v9.3.2

Compare Source

Microsoft/TypeScript (typescript)

v5.5.3

Compare Source

vuejs/core (vue)

v3.4.31

Compare Source

Bug Fixes
Reverts
  • Revert "fix(reactivity): avoid infinite loop when render access a side effect computed (#​11135)" (e0df985)
  • Revert "fix(reactivity): fix side effect computed dirty level (#​11183)" (6c303ea), closes #​11183
rustwasm/wasm-pack (wasm-pack)

v0.13.0

Compare Source

  • ✨ Features

    • Add option to skip optimization with wasm-opt - sisou, pull/1321

      This feature introduces the --no-opt option to wasm-pack, providing a significant improvement in build efficiency for projects requiring multiple wasm-pack executions.

    • Add support geckodriver for linux-aarch64 - EstebanBorai, pull/1371

      Introduces support to download Geckodriver in Linux aarch64.

    • Add wasm-opt linux aarch64 condition - dkristia, issue/1392, pull/1393

      A linux aarch64 build for wasm-opt exists in the newest binaryen versions.

  • 🤕 Fixes

    • Fix passing relative paths to cargo - dfaust, issue/704, issue/1156, issue/1252, pull/1331

      When building a crate located in a sub-directory, relative paths, passed as extra options to cargo (like --target-dir), are now handled correctly.

    • Rewrite wasm_target to use target-libdir - daidoji, issue/1342, pull/1343

      Rewritten wasm_target to use target libdir from the rustc tool rather than looking through sysroot. This is to accomodate non-rustup installations.

    • Declare ES module in package.json - gthb, issue/1039, pull/1061

      In bundler mode, generate package.json with "type": "module" and use the "main" attribute instead of the "module" attribute.

      This change makes the built ES module palatable to Node.js (when run with --experimental-vm-modules --experimental-wasm-modules),
      while it remains also palatable to webpack as illustrated in webpack/webpack#14313
      (where the pkg subfolder is generated with wasm-pack built with this change).
      This resolves the headache of using a wasm-pack-built package in a library that one needs to both run directly in Node and include in a webpack build.

    • Use new chromdriver endpoint and fix CI - Myriad-Dreamin, kade-robertson, issue/1315, issue/1390, pull/1325, pull/1391

    • Add mingw support to npm package - nathaniel-daniel, issue/1354, issue/1359, pull/1363

      Fixes the NPM package's platform detection for mingw.

    • pkg-dir option for pack and publish commands - danielronnkvist, issue/1369, pull/1370

      To be able to use these commands when the output directory option to the build command isn't the default pkg.

    • Optimize out-dir display - ahaoboy, issue/1395, pull/1396

      Optimize out-dir display.

      from:

      [INFO]: 📦 Your wasm pkg is ready to publish at /root/code/fib-wasm/fib-rs/../fib-wasm/wasm.

      to:

      [INFO]: 📦 Your wasm pkg is ready to publish at /root/code/fib-wasm/fib-wasm/wasm.

  • 🛠️ Maintenance

  • 📖 Documentation


Configuration

📅 Schedule: Branch creation - "before 4am on Friday" (UTC), 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 has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot enabled auto-merge July 5, 2024 01:51
Copy link

vercel bot commented Jul 5, 2024

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 5, 2024 1:52am

Copy link

github-actions bot commented Jul 5, 2024

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-hu74mk14z-rollup-js.vercel.app/repl/?pr=5566

Copy link

github-actions bot commented Jul 5, 2024

Performance report!

Rough benchmark

Command Mean [s] Min [s] Max [s] Relative
node _benchmark/previous/bin/rollup -i ./perf/entry.js -o _benchmark/result/previous.js 9.242 ± 0.044 9.207 9.292 1.00
node _benchmark/current/bin/rollup -i ./perf/entry.js -o _benchmark/result/current.js 9.315 ± 0.076 9.228 9.373 1.01 ± 0.01

Internal benchmark

  • BUILD: 8222ms, 748 MB
    • initialize: 0ms, 25.9 MB
    • generate module graph: 3125ms, 573 MB
      • generate ast: 1495ms, 566 MB
    • sort and bind modules: 447ms, 619 MB
    • mark included statements: 4641ms, 748 MB
      • treeshaking pass 1: 1575ms, 714 MB
      • treeshaking pass 2: 759ms, 742 MB
      • treeshaking pass 3: 294ms, 744 MB
      • treeshaking pass 4: 277ms, 743 MB
      • treeshaking pass 5: 318ms, 747 MB
      • treeshaking pass 6: 263ms, 752 MB
      • treeshaking pass 7: 247ms, 748 MB
      • treeshaking pass 8: 240ms, 756 MB
      • treeshaking pass 9: 218ms, 754 MB
      • treeshaking pass 10: 220ms, 751 MB
      • treeshaking pass 11: 217ms, 748 MB
  • GENERATE: 895ms, 1.02 GB
    • initialize render: 0ms, 913 MB
    • generate chunks: 82ms, 919 MB
      • optimize chunks: 0ms, 916 MB
    • render chunks: 790ms, 1 GB
    • transform chunks: 21ms, 1.02 GB
    • generate bundle: 0ms, 1.02 GB

Copy link

codecov bot commented Jul 5, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.04%. Comparing base (dd1a6be) to head (291055b).

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #5566   +/-   ##
=======================================
  Coverage   99.04%   99.04%           
=======================================
  Files         238      238           
  Lines        9252     9252           
  Branches     2439     2439           
=======================================
  Hits         9164     9164           
  Misses         58       58           
  Partials       30       30           

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

@renovate renovate bot added this pull request to the merge queue Jul 5, 2024
Merged via the queue into master with commit f38f72d Jul 5, 2024
Copy link

github-actions bot commented Jul 8, 2024

This PR has been released as part of [email protected]. 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.

0 participants