Skip to content

chore(deps): update all non-major dependencies

Reiter, Christoph requested to merge renovate/all-minor-patch into master

This MR contains the following updates:

Package Type Update Change
eslint-plugin-jsdoc devDependencies patch 38.1.0 -> 38.1.6
jszip dependencies minor 3.7.1 -> 3.8.0
prettier (source) devDependencies patch 2.6.1 -> 2.6.2

Release Notes

gajus/eslint-plugin-jsdoc

v38.1.6

Compare Source

Bug Fixes
  • no-restricted-syntax, no-missing-syntax: pass on parser's visitorKeys to esquery (f873e32)

v38.1.5

Compare Source

Bug Fixes
  • no-restricted-syntax: include comment in templates and in default error message if present (cc031b8)

v38.1.4

Compare Source

Bug Fixes
  • no-undefined-types: add TypeScript utility types (globally allowed types); fixes #​839 (bf9f994)

v38.1.3

Compare Source

Bug Fixes
  • check-types, no-undefined-types: safer optional chaining (63a96ee)

v38.1.2

Compare Source

Bug Fixes
  • check-types: proper use of optional chaining; fixes #​861 (7dbdd9f)

v38.1.1

Compare Source

Bug Fixes
  • check-types: for jsdoc mode, avoid objecting to upper-case; fixes #​860 (d11d271)
Stuk/jszip

v3.8.0

Compare Source

  • Santize filenames when files are loaded with loadAsync, to avoid "zip slip" attacks. The original filename is available on each zip entry as unsafeOriginalName. See the documentation. Many thanks to McCaulay Hudson for reporting.
prettier/prettier

v2.6.2

Compare Source

diff

Fix LESS/SCSS format error (#​12536 by @​fisker)
// Input
.background-gradient(@​cut) {
    background: linear-gradient(
        to right,
        @​white 0%,
        @​white (@​cut - 0.01%),
        @​portal-background @​cut,
        @​portal-background 100%
    );
}

// Prettier 2.6.1
TypeError: Cannot read properties of undefined (reading 'endOffset')

// Prettier 2.6.2
.background-gradient(@​cut) {
  background: linear-gradient(
    to right,
    @​white 0%,
    @​white (@​cut - 0.01%),
    @​portal-background @​cut,
    @​portal-background 100%
  );
}
Update meriyah to fix several bugs (#​12567 by @​fisker, fixes in meriyah by @​3cp)

Fixes bugs when parsing following valid code:

foo(await bar());
const regex = /.*/ms;
const element = <p>{/w/.test(s)}</p>;
class A extends B {
  #privateMethod() {
    super.method();
  }
}

Configuration

📅 Schedule: "before 3am on Monday" (UTC).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This MR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this MR, click this checkbox.

This MR has been generated by Renovate Bot.

Merge request reports