Gitlab 18.0 has been released. Since there are breaking changes the update will be postponed to July 2025. For a list of breaking changes see https://about.gitlab.com/blog/2025/04/18/a-guide-to-the-breaking-changes-in-gitlab-18-0/. Please prepare yourself and your projects for this update.
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@sentry/browser | dependencies | patch | 6.19.2 -> 6.19.3 |
eslint-plugin-jsdoc | devDependencies | patch | 38.1.0 -> 38.1.6 |
prettier (source) | devDependencies | patch | 2.6.1 -> 2.6.2 |
v6.19.3
v38.1.6
no-restricted-syntax
, no-missing-syntax
: pass on parser's visitorKeys
to esquery (f873e32)v38.1.5
no-restricted-syntax
: include comment
in templates and in default error message if present (cc031b8)v38.1.4
v38.1.3
check-types
, no-undefined-types
: safer optional chaining (63a96ee)v38.1.2
v38.1.1
v2.6.2
// 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)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();
}
}
This MR has been generated by Renovate Bot.