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

Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2024

This PR contains the following updates:

Package Type Update Change Pending Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed
@codemirror/language devDependencies patch ^6.10.4 -> ^6.10.6 age adoption passing confidence
@eslint/js (source) devDependencies minor ^9.15.0 -> ^9.16.0 age adoption passing confidence
@mermaid-js/mermaid-cli devDependencies patch ^11.4.0 -> ^11.4.2 age adoption passing confidence
@shikijs/vitepress-twoslash (source) devDependencies patch ^1.23.1 -> ^1.24.0 age adoption passing confidence
@types/node (source) devDependencies patch ^18.19.66 -> ^18.19.67 age adoption passing confidence
eslint (source) devDependencies minor ^9.15.0 -> ^9.16.0 age adoption passing confidence
eslint-plugin-vue (source) devDependencies minor ^9.31.0 -> ^9.32.0 age adoption passing confidence
globals devDependencies minor ^15.12.0 -> ^15.13.0 age adoption passing confidence
pinia devDependencies patch ^2.2.6 -> ^2.2.8 2.3.0 age adoption passing confidence
rollup (source) devDependencies minor ^4.27.4 -> ^4.28.0 age adoption passing confidence
typescript-eslint (source) devDependencies minor ^8.16.0 -> ^8.17.0 age adoption passing confidence
js-sys (source) dependencies patch 0.3.72 -> 0.3.74 age adoption passing confidence
wasm-bindgen (source) dependencies patch 0.2.95 -> 0.2.97 age adoption passing confidence

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


Release Notes

eslint/eslint (@​eslint/js)

v9.16.0

Compare Source

mermaid-js/mermaid-cli (@​mermaid-js/mermaid-cli)

v11.4.2

Compare Source

Changes

🐛 Bug Fixes

  • fix(types): correct rootDir in tsconfig.json @​aloisklink (#​804)
    This fixes TypeScripts imports in v11.4.1

Full Changelog: mermaid-js/mermaid-cli@11.4.1...11.4.2

v11.4.1

Compare Source

Changes

🐛 Bug Fixes

📦 Dependency updates

eslint/eslint (eslint)

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

vuejs/eslint-plugin-vue (eslint-plugin-vue)

v9.32.0

Compare Source

sindresorhus/globals (globals)

v15.13.0

Compare Source

rollup/rollup (rollup)

v4.28.0

Compare Source

2024-11-30

Features
  • Allow to specify how to handle import attributes when transpiling Rollup config files (#​5743)
Pull Requests
typescript-eslint/typescript-eslint (typescript-eslint)

v8.17.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.

rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.97

Compare Source

Released 2024-11-30

Fixed
  • Fixed js-sys and wasm-bindgen-futures relying on internal paths of wasm-bindgen that are not crate feature additive.
    #​4305

v0.2.96

Compare Source

Released 2024-11-29

Added
  • Added support for the HTMLOrSVGElement mixin, which is used for all interfaces deriving from Element.
    #​4143

  • Added bindings for MathMLElement.
    #​4143

  • Added JSDoc type annotations to C-style enums.
    #​4192

  • Added support for C-style enums with negative discriminants.
    #​4204

  • Added bindings for MediaStreamTrack.getCapabilities.
    #​4236

  • Added WASM ABI support for u128 and i128
    #​4222

  • Added support for the wasm32v1-none target.
    #​4277

  • Added support for no_std to js-sys, web-sys, wasm-bindgen-futures and wasm-bindgen-test.
    #​4277

  • Added support for no_std to link_to!, static_string (via thread_local_v2) and throw.
    #​4277

  • Added environment variables to configure tests: WASM_BINDGEN_USE_BROWSER, WASM_BINDGEN_USE_DEDICATED_WORKER, WASM_BINDGEN_USE_SHARED_WORKER WASM_BINDGEN_USE_SERVICE_WORKER, WASM_BINDGEN_USE_DENO and WASM_BINDGEN_USE_NODE_EXPERIMENTAL. The use of wasm_bindgen_test_configure! will overwrite any environment variable.
    #​4295

Changed
  • String enums now generate private TypeScript types but only if used.
    #​4174

  • Remove unnecessary JSDoc type annotations from generated .d.ts files
    #​4187

  • Deprecate autofocus, tabIndex, focus() and blur() bindings in favor of bindings on the inherited Element class.
    #​4143

  • Optimized ABI performance for Option<{i32,u32,isize,usize,f32,*const T,*mut T}>.
    #​4183

  • Deprecate --reference-types in favor of automatic target feature detection.
    #​4237

  • wasm-bindgen-test-runner now tries to restart the WebDriver on failure, instead of spending its timeout period trying to connect to a non-existing WebDriver.
    #​4267

  • Deprecated #[wasm_bindgen(thread_local)] in favor of #[wasm_bindgen(thread_local_v2)], which creates a wasm_bindgen::JsThreadLocal. It is similar to std::thread::LocalKey but supports no_std.
    #​4277

  • Updated the WebGPU API to the current draft as of 2024-11-22.
    #​4290

  • Improved error messages for self arguments in invalid positions.
    #​4276

Fixed
  • Fixed methods with self: &Self consuming the object.
    #​4178

  • Fixed unused string enums generating JS values.
    #​4193

  • Fixed triggering lints in testing facilities.
    #​4195

  • Fixed #[should_panic] not working with #[wasm_bindgen_test(unsupported = ...)].
    #​4196

  • Fixed potential null error when using JsValue::as_debug_string().
    #​4192

  • Fixed generated types when the getter and setter of a property have different types.
    #​4202

  • Fixed generated types when a static getter/setter has the same name as an instance getter/setter.
    #​4202

  • Fixed invalid TypeScript return types for multivalue signatures.
    #​4210

  • Only emit table.fill instructions if the bulk-memory proposal is enabled.
    #​4237

  • Fixed calls to JsCast::instanceof() not respecting JavaScript namespaces.
    #​4241

  • Fixed imports for functions using this and late binding.
    #​4225

  • Don't expose non-functioning implicit constructors to classes when none are provided.
    #​4282



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 December 6, 2024 00:12
Copy link

vercel bot commented Dec 6, 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 Dec 6, 2024 10:06am

Copy link

github-actions bot commented Dec 6, 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-dic23kwpc-rollup-js.vercel.app/repl/?pr=5755

Copy link

github-actions bot commented Dec 6, 2024

Performance report

  • BUILD: 8197ms, 736 MB
    • initialize: 0ms, 26.6 MB
    • generate module graph: 3145ms, 553 MB
      • generate ast: 1513ms, 547 MB
    • sort and bind modules: 451ms, 597 MB
    • mark included statements: 4601ms, 736 MB
      • treeshaking pass 1: 1556ms, 698 MB
      • treeshaking pass 2: 751ms, 719 MB
      • treeshaking pass 3: 295ms, 720 MB
      • treeshaking pass 4: 275ms, 726 MB
      • treeshaking pass 5: 320ms, 732 MB
      • treeshaking pass 6: 262ms, 729 MB
      • treeshaking pass 7: 244ms, 731 MB
      • treeshaking pass 8: 237ms, 731 MB
      • treeshaking pass 9: 216ms, 729 MB
      • treeshaking pass 10: 217ms, 731 MB
      • treeshaking pass 11: 216ms, 736 MB
  • GENERATE: 887ms, 982 MB
    • initialize render: 0ms, 871 MB
    • generate chunks: 88ms, 881 MB
      • optimize chunks: 0ms, 872 MB
    • render chunks: 781ms, 957 MB
    • transform chunks: 17ms, 982 MB
    • generate bundle: 0ms, 982 MB

Copy link

codecov bot commented Dec 6, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 99.00%. Comparing base (87a911c) to head (6f66b3b).
Report is 2 commits behind head on master.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #5755   +/-   ##
=======================================
  Coverage   99.00%   99.00%           
=======================================
  Files         258      258           
  Lines        8072     8072           
  Branches     1361     1361           
=======================================
  Hits         7992     7992           
  Misses         53       53           
  Partials       27       27           

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

@renovate renovate bot force-pushed the renovate/minorpatch-updates branch from b96187c to bdde90d Compare December 6, 2024 10:00
@renovate renovate bot added this pull request to the merge queue Dec 6, 2024
Merged via the queue into master with commit 224247b Dec 6, 2024
43 checks passed
@renovate renovate bot deleted the renovate/minorpatch-updates branch December 6, 2024 10:41
Copy link

github-actions bot commented Dec 6, 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