Skip to content

chore(deps): lock file maintenance minor/patch updates#5385

Merged
lukastaegert merged 2 commits intomasterfrom
renovate/minorpatch-updates
Feb 9, 2024
Merged

chore(deps): lock file maintenance minor/patch updates#5385
lukastaegert merged 2 commits intomasterfrom
renovate/minorpatch-updates

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 9, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Pending Age Adoption Passing Confidence
lockFileMaintenance All locks refreshed age adoption passing confidence
@codemirror/language devDependencies patch ^6.10.0 -> ^6.10.1 age adoption passing confidence
@mermaid-js/mermaid-cli devDependencies patch ^10.6.1 -> ^10.7.0 10.8.0 age adoption passing confidence
@typescript-eslint/eslint-plugin (source) devDependencies minor ^6.20.0 -> ^6.21.0 age adoption passing confidence
@typescript-eslint/parser (source) devDependencies minor ^6.20.0 -> ^6.21.0 age adoption passing confidence
eslint-plugin-vue (source) devDependencies patch ^9.20.1 -> ^9.21.1 age adoption passing confidence
husky devDependencies patch ^9.0.7 -> ^9.0.10 age adoption passing confidence
inquirer (source) devDependencies patch ^9.2.13 -> ^9.2.14 age adoption passing confidence
lint-staged devDependencies patch ^15.2.0 -> ^15.2.2 age adoption passing confidence
magic-string devDependencies patch ^0.30.5 -> ^0.30.7 age adoption passing confidence
prettier (source) devDependencies patch ^3.2.4 -> ^3.2.5 age adoption passing confidence
semver overrides minor ^7.5.4 -> ^7.6.0 age adoption passing confidence
semver devDependencies minor ^7.5.4 -> ^7.6.0 age adoption passing confidence
js-sys (source) dependencies patch 0.3.67 -> 0.3.68 age adoption passing confidence
napi-derive dependencies patch 2.15.0 -> 2.15.1 age adoption passing confidence
swc_common dependencies patch 0.33.15 -> 0.33.17 age adoption passing confidence
swc_compiler_base dependencies minor 0.6.6 -> 0.7.3 age adoption passing confidence
swc_ecma_ast dependencies minor 0.111.1 -> 0.112.2 age adoption passing confidence
swc_ecma_parser dependencies minor 0.142.1 -> 0.143.3 age adoption passing confidence
wasm-bindgen (source) dependencies patch 0.2.90 -> 0.2.91 age adoption passing confidence

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


Release Notes

codemirror/language (@​codemirror/language)

v6.10.1

Compare Source

Bug fixes

Fix an issue where, when a lot of code is visible in the initial editor, the bottom bit of code is shown without highlighting for one frame.

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

v6.21.0

Compare Source

🚀 Features
  • export plugin metadata

  • allow parserOptions.project: false

  • eslint-plugin: add rule prefer-find

🩹 Fixes
  • eslint-plugin: [no-unused-vars] don't report on types referenced in export assignment expression

  • eslint-plugin: [switch-exhaustiveness-check] better support for intersections, infinite types, non-union values

  • eslint-plugin: [consistent-type-imports] dont report on types used in export assignment expressions

  • eslint-plugin: [no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option

  • eslint-plugin: [class-literal-property-style] allow getter when same key setter exists

  • eslint-plugin: [no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before as keyword

❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

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

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

v6.21.0

Compare Source

🚀 Features
  • allow parserOptions.project: false
❤️ Thank You
  • auvred
  • Brad Zacher
  • Kirk Waiblinger
  • Pete Gonzalez
  • YeonJuan

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

SBoudrias/Inquirer.js (inquirer)

v9.2.14

Compare Source

okonet/lint-staged (lint-staged)

v15.2.2

Compare Source

Patch Changes
  • #​1391 fdcdad4 Thanks @​iiroj! - Lint-staged no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.
rich-harris/magic-string (magic-string)

v0.30.7

Compare Source

Features
prettier/prettier (prettier)

v3.2.5

Compare Source

diff

Support Angular inline styles as single template literal (#​15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@​Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}
Unexpected embedded formatting for Angular template (#​15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
Use "json" parser for tsconfig.json by default (#​16012 by @​sosukesuzuki)

In v2.3.0, we introduced "jsonc" parser which adds trialing comma by default.

When adding a new parser we also define how it will be used based on the linguist-languages data.

tsconfig.json is a special file used by TypeScript, it uses .json file extension, but it actually uses the JSON with Comments syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing .json file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the "jsonc" parser for your tsconfig.json files, add the following to your .pretterrc file

{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
npm/node-semver (semver)

v7.6.0

Compare Source

Features
Chores
napi-rs/napi-rs (napi-derive)

v2.15.1

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/napi-rs/napi-rs/compare/napi@2.15.0...napi@2.15.1

rustwasm/wasm-bindgen (wasm-bindgen)

v0.2.91

Compare Source

Released 2024-02-06

Added
  • Added bindings for the RTCRtpTransceiver.setCodecPreferences() and unstable bindings for the RTCRtpEncodingParameters.scalabilityMode.
    #​3828

  • Add unstable bindings for the FileSystemAccess API
    #​3810

  • Added support for running tests in shared and service workers with wasm_bindgen_test_configure! run_in_shared_worker and run_in_service_worker.
    #​3804

  • Accept the --skip flag with wasm-bindgen-test-runner.
    #​3803

  • Introduce environment variable WASM_BINDGEN_TEST_NO_ORIGIN_ISOLATION to disable origin isolation for wasm-bindgen-test-runner.
    #​3807

  • Add bindings for USBDevice.forget().
    #​3821

Changed
  • Stabilize ClipboardEvent.
    #​3791

  • Use immutable buffers in SubtleCrypto methods.
    #​3797

  • Deprecate wasm_bindgen_test_configure!s run_in_worker in favor of run_in_dedicated_worker.
    #​3804

  • Updated the WebGPU WebIDL to the current draft as of 2024-01-30. Note that this retains the previous update's workaround for GPUPipelineError, and holds back an update to the buffer argument of the GPUQueue.{writeBuffer,writeTexture} methods.
    #​3816

  • Depreate --weak-refs and WASM_BINDGEN_WEAKREF in favor of automatic run-time detection.
    #​3822

Fixed
  • Fixed UB when freeing strings received from JS if not using the default allocator.
    #​3808

  • Fixed temporary folder detection by wasm-bindgen-test-runner on MacOS.
    #​3817

  • Fixed using #[wasm_bindgen(js_name = default)] with #[wasm_bindgen(module = ...)].
    #​3823

  • Fixed nighly build of wasm-bindgen-futures.
    #​3827



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 February 9, 2024 01:55
@vercel
Copy link

vercel bot commented Feb 9, 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 Feb 9, 2024 5:25am

@renovate
Copy link
Contributor Author

renovate bot commented Feb 9, 2024

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.

@github-actions
Copy link

github-actions bot commented Feb 9, 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 Rust nightly. If you haven't installed it yet, please first see https://www.rust-lang.org/tools/install to learn how to download Rustup and install Rust, then see https://rust-lang.github.io/rustup/concepts/channels.html to learn how to install Rust nightly.

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

@codecov
Copy link

codecov bot commented Feb 9, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Comparison is base (51226e3) 98.81% compared to head (4a8b0a6) 98.81%.

Additional details and impacted files
@@           Coverage Diff           @@
##           master    #5385   +/-   ##
=======================================
  Coverage   98.81%   98.81%           
=======================================
  Files         232      232           
  Lines        9009     9009           
  Branches     2351     2351           
=======================================
  Hits         8902     8902           
  Misses         46       46           
  Partials       61       61           

☔ 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 Feb 9, 2024
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Feb 9, 2024
@lukastaegert lukastaegert added this pull request to the merge queue Feb 9, 2024
Merged via the queue into master with commit cb65c0d Feb 9, 2024
@lukastaegert lukastaegert deleted the renovate/minorpatch-updates branch February 9, 2024 06:07
@github-actions
Copy link

This PR has been released as part of rollup@4.10.0. 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