chore(deps): update all non-major dependencies
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
Bug Fixes
-
no-restricted-syntax
,no-missing-syntax
: pass on parser'svisitorKeys
to esquery (f873e32)
v38.1.5
Bug Fixes
-
no-restricted-syntax
: includecomment
in templates and in default error message if present (cc031b8)
v38.1.4
Bug Fixes
v38.1.3
Bug Fixes
-
check-types
,no-undefined-types
: safer optional chaining (63a96ee)
v38.1.2
Bug Fixes
v38.1.1
Bug Fixes
Stuk/jszip
v3.8.0
- Santize filenames when files are loaded with
loadAsync
, to avoid "zip slip" attacks. The original filename is available on each zip entry asunsafeOriginalName
. See the documentation. Many thanks to McCaulay Hudson for reporting.
prettier/prettier
v2.6.2
#12536 by @fisker)
Fix LESS/SCSS format error (// 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%
);
}
meriyah
to fix several bugs (#12567 by @fisker, fixes in meriyah
by @3cp)
Update 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
-
If you want to rebase/retry this MR, click this checkbox.
This MR has been generated by Renovate Bot.