chore(deps): lock file maintenance minor/patch updates#5566
Merged
renovate[bot] merged 1 commit intomasterfrom Jul 5, 2024
Merged
chore(deps): lock file maintenance minor/patch updates#5566renovate[bot] merged 1 commit intomasterfrom
renovate[bot] merged 1 commit intomasterfrom
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Thank you for your contribution! ❤️You can try out this pull request locally by installing Rollup via npm install rollup/rollup#renovate/minorpatch-updatesNotice: 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: |
Performance report!Rough benchmark
Internal benchmark
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
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. |
|
This PR has been released as part of rollup@4.18.1. You can test it via |
This was referenced Jul 30, 2024
This was referenced Aug 2, 2024
This was referenced Aug 9, 2024
This was referenced Aug 9, 2024
This was referenced Sep 12, 2024
This was referenced Sep 19, 2024
This was referenced Sep 25, 2024
This was referenced Oct 2, 2024
This was referenced Oct 4, 2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^6.28.2->^6.28.36.28.4^2.18.3->^2.18.4^1.9.0->^1.10.01.10.1^7.14.1->^7.15.0^7.14.1->^7.15.0^9.2.23->^9.3.29.3.4(+1)^10.5.0->^10.5.210.6.0^5.5.2->^5.5.3^5.3.1->^5.3.25.3.3^3.4.30->^3.4.31^0.12.1->^0.13.02.16.6->2.16.80.146.6->0.146.80.8.10->0.8.11🔧 This Pull Request updates lock files to use the latest dependency versions.
Release Notes
codemirror/view (@codemirror/view)
v6.28.3Compare 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.4Compare Source
What Changed
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.0Compare Source
🚀 Features
GrammarState- by @antfu in https://github.com/shikijs/shiki/issues/712 (8a8fa)getLastGrammarStateshorthand - by @antfu (f2b39)🐞 Bug Fixes
createCssVariablesThemeinshiki/coreto avoid side-effects - by @antfu (abe63)View changes on GitHub
typescript-eslint/typescript-eslint (@typescript-eslint/eslint-plugin)
v7.15.0Compare Source
🚀 Features
eslint-plugin: [array-type] detect
Readonly<string[]>caseeslint-plugin: back-port new rules around empty object types from v8
🩹 Fixes
disable
EXPERIMENTAL_useProjectServiceindisabled-type-checkedshared configeslint-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
You can read about our versioning strategy and releases on our website.
typescript-eslint/typescript-eslint (@typescript-eslint/parser)
v7.15.0Compare 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.2Compare Source
Microsoft/TypeScript (typescript)
v5.5.3Compare Source
vuejs/core (vue)
v3.4.31Compare Source
Bug Fixes
Reverts
rustwasm/wasm-pack (wasm-pack)
v0.13.0Compare Source
✨ Features
Add option to skip optimization with wasm-opt - sisou, pull/1321
This feature introduces the
--no-optoption 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
Fix error and warnings in install script - lucashorward, issue/1159, issue/1217, issue/1283, pull/1320
Bump follow-redirects from 1.14.9 to 1.15.6 in /npm - dependabot, pull/1375
Bump rustls-webpki from 0.100.1 to 0.100.2 - dependabot, pull/1323
Bump rustix from 0.37.20 to 0.37.25 - dependabot, pull/1341
Bump rustls from 0.21.9 to 0.21.11 - dependabot, pull/1385
Bump tar from 6.1.11 to 6.2.1 in /npm - dependabot, pull/1379
📖 Documentation
Fix typo in README - Lionelf329, [pull/1368]
Add a description of build --target deno - puxiao, pull/1344
Document deno in build target - sigmaSd, pull/1348
Fix local navigation backing one step too far in docs - SamuSoft, pull/1387
Add --target web to quick start build command - josephrocca, pull/1367
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.
This PR has been generated by Mend Renovate. View repository job log here.