Update NodeJS dependencies
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| @babel/preset-env (source) | devDependencies | patch | ^7.22.10 -> ^7.22.14 |
| @gitlab/svgs | dependencies | minor | ^3.60.0 -> ^3.61.0 |
| @gitlab/ui | dependencies | minor | ^66.0.1 -> ^66.3.1 |
| glob | dependencies | patch | ^10.3.3 -> ^10.3.4 |
| jquery (source) | dependencies | patch | ^3.7.0 -> ^3.7.1 |
| markdownlint-cli | devDependencies | minor | ^0.35.0 -> ^0.36.0 |
| postcss (source) | devDependencies | patch | ^8.4.28 -> ^8.4.29 |
| prettier (source) | devDependencies | patch | ^3.0.2 -> ^3.0.3 |
| rollup-plugin-copy | devDependencies | minor | ^3.4.0 -> ^3.5.0 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
babel/babel
v7.22.14
🐛 Bug Fix
-
babel-preset-env- #15907 Avoid dynamic require call in preset-env (@nicolo-ribaudo)
🏠 Internal
-
babel-parser- #15884 Simplify parser errors creation (@nicolo-ribaudo)
-
babel-core,babel-helper-compilation-targets,babel-helper-simple-access,babel-parser,babel-plugin-syntax-decorators,babel-preset-env,babel-preset-flow,babel-preset-react,babel-preset-typescript,babel-traverse,babel-types
gitlab-org/gitlab-svgs
v3.61.0
[3.61.0]
Changes
- Removed illustration 'airbus'
- Removed illustration 'goldman_sachs'
- Removed illustration 'lockheed_martin'
- Removed illustration 'nvidia'
- Removed illustration 't_mobile'
- Removed illustration 'ubs'
- Removed illustration 'zillow'
gitlab-org/gitlab-ui
v66.3.1
Bug Fixes
- GlCollapsibleListbox: show/hide select all and reset buttons for groups (867e9c5)
v66.3.0
Features
- accept generic translations at configuration time (c3e04c7)
v66.2.0
Features
- css: Add -gl-mb-n8 util class (b484bfb)
v66.1.0
Features
- css: Add gl-mb-n* util classes (12fd76f)
66.0.1 (2023-08-24)
Reverts
- feat(GlToggle): Add a block level toggle (c092403)
jquery/jquery
v3.7.1: jQuery 3.7.1 Released: Reliable Table Row Dimensions
https://blog.jquery.com/2023/08/28/jquery-3-7-1-released-reliable-table-row-dimensions/
igorshubovych/markdownlint-cli
v0.36.0: 0.36.0
- Update
markdownlintdependency to0.30.0- Use
micromarkin MD022/MD026/MD032/MD037/MD045/MD051 - Incorporate
micromark-extension-mathfor math syntax - Allow custom rules to override information URL
- Use
- Update all dependencies via
Dependabot
postcss/postcss
v8.4.29
- Fixed
Node#source.offset(by Ido Rosenthal). - Fixed docs (by Christian Oliff).
prettier/prettier
v3.0.3
Add preferUnplugged: true to package.json (#15169 by @fisker and @so1ve)
Prettier v3 uses dynamic imports, user will need to unplug Prettier when Yarn's PnP mode is enabled, add preferUnplugged: true to package.json, so Yarn will install Prettier as unplug by default.
Support shared config that forbids require() (#15233 by @fisker)
If an external shared config package is used, and the package exports don't have require or default export.
In Prettier 3.0.2 Prettier fails when attempt to require() the package, and throws an error.
Error [ERR_PACKAGE_PATH_NOT_EXPORTED]: No "exports" main defined in <packageName>/package.json
Allow argument of require() to break (#15256 by @fisker)
// Input
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);
// Prettier 3.0.2
const plugin = require(global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, ".."));
// Prettier 3.0.3
const plugin = require(
global.STANDALONE
? path.join(__dirname, "../standalone.js")
: path.join(__dirname, "..")
);
Do not print trailing commas in arrow function type parameter lists in ts code blocks (#15286 by @sosukesuzuki)
<!-- Input -->
```ts
const foo = <T>() => {}
```
<!-- Prettier 3.0.2 -->
```ts
const foo = <T,>() => {}
```
<!-- Prettier 3.0.3 -->
```ts
const foo = <T>() => {}
```
Support TypeScript 5.2 using / await using declaration (#15321 by @sosukesuzuki)
Support for the upcoming Explicit Resource Management feature in ECMAScript. using / await using declaration
{
using foo = new Foo();
await using bar = new Bar();
}
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.