Update NodeJS dependencies
This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
@babel/core (source) | devDependencies | patch | ^7.22.17 -> ^7.22.20 |
@babel/preset-env (source) | devDependencies | patch | ^7.22.15 -> ^7.22.20 |
@evilmartians/lefthook | devDependencies | patch | ^1.4.10 -> ^1.4.11 |
@gitlab/svgs | dependencies | minor | ^3.61.0 -> ^3.62.0 |
@gitlab/ui | dependencies | minor | ^66.6.0 -> ^66.9.0 |
babel-jest | devDependencies | minor | ^29.6.4 -> ^29.7.0 |
jest (source) | devDependencies | minor | ^29.6.4 -> ^29.7.0 |
jest-environment-jsdom | devDependencies | minor | ^29.6.4 -> ^29.7.0 |
markdownlint-cli2 | devDependencies | minor | ^0.9.2 -> ^0.10.0 |
rollup (source) | devDependencies | patch | ^3.29.1 -> ^3.29.2 |
rollup-plugin-import-css | devDependencies | patch | ^3.3.1 -> ^3.3.3 |
sass | devDependencies | minor | ^1.66.1 -> ^1.67.0 |
MR created with the help of gitlab-org/frontend/renovate-gitlab-bot
Release Notes
babel/babel
v7.22.20
🏠 Internal
-
babel-helper-validator-identifier
- #15973 Remove special-casing of U+200C and U+200D (@nicolo-ribaudo)
-
babel-plugin-transform-dotall-regex
↩ Revert
-
babel-helper-remap-async-to-generator
,babel-helper-wrap-function
,babel-plugin-proposal-explicit-resource-management
,babel-plugin-proposal-function-sent
,babel-plugin-transform-async-generator-functions
,babel-plugin-transform-async-to-generator
,babel-plugin-transform-block-scoping
,babel-plugin-transform-class-properties
,babel-plugin-transform-classes
,babel-plugin-transform-parameters
,babel-plugin-transform-runtime
,babel-preset-env
- #15979 Revert "Improve output when wrapping functions" (@jjonescz)
v7.22.19
v7.22.19 (2023-09-14)
Re-published 7.22.18, due to a releasing error.
v7.22.18
🐛 Bug Fix
-
babel-helper-validator-identifier
-
babel-helper-module-transforms
,babel-plugin-transform-modules-amd
,babel-plugin-transform-modules-commonjs
,babel-plugin-transform-modules-umd
↩ Revert
- #15965 Revert Node.js 20.6.0 bug workaround (@nicolo-ribaudo)
evilmartians/lefthook
v1.4.11
gitlab-org/gitlab-svgs
v3.62.0
[3.62.0]
Changes
- Removed illustration 'empty-deploy-keys-lg'
- Removed illustration 'empty-on-call'
- Removed illustration 'empty-requirements-lg'
- Removed illustration 'empty-test-cases-lg'
- Removed illustration 'feature_flag'
- Removed illustration 'job-trigger-md'
- Removed illustration 'milestone_burndown_chart'
- Removed illustration 'no-packages'
- Removed illustration 'operations-dashboard_empty'
- Removed illustration 'operations_metrics_empty'
- Removed illustration 'security-dashboard_empty'
- Removed illustration 'wiki_login_empty'
- Removed illustration 'wiki_logout_empty'
gitlab-org/gitlab-ui
v66.9.0
Features
- adds css-based skeleton loader (445fc09)
v66.8.0
Features
- css: add gl-lg-max-w-50p utility (0139a72)
66.7.1 (2023-09-13)
Bug Fixes
- NewListboxItem: Update interactive styles to design spec (17f773f)
v66.7.1
Bug Fixes
- NewListboxItem: Update interactive styles to design spec (17f773f)
v66.7.0
Bug Fixes
- GlEmptyState: update styling to be Pajamas compliant (35862a2)
Features
-
CSS: add
gl-md-grid-template-columns-4
CSS utility class (2e7fe9b)
jestjs/jest
v29.7.0
Features
-
[create-jest]
Addnpm init
/yarn create
initialiser for Jest projects (#14465) -
[jest-validate]
Allow deprecation warnings for unknown options (#14499)
Fixes
-
[jest-resolver]
Replace unmatched capture groups inmoduleNameMapper
with empty string instead ofundefined
(#14507) -
[jest-snapshot]
Allow for strings as well as template literals in inline snapshots (#14465) -
[@jest/test-sequencer]
Calculate test runtime ifperStats.duration
is missing (#14473)
Performance
-
[@jest/create-cache-key-function]
Cache access ofNODE_ENV
andBABEL_ENV
(#14455)
Chore & Maintenance
-
[jest-cli]
Move internal config initialisation logic to thecreate-jest
package (#14465)
DavidAnson/markdownlint-cli2
v0.10.0
- Add
showFound
configuration option - Add
.markdownlint-cli2.jsonc
config schema - Update dependencies (including
markdownlint
)
rollup/rollup
v3.29.2
2023-09-15
Bug Fixes
- Export
TreeshakingPreset
type (#5131)
Merge Requests
-
#5131: fix: exports
TreeshakingPreset
(@moltar) - #5134: docs: steps to enable symlinks on windows (@thebanjomatic)
- #5137: chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
sass/dart-sass
v1.67.0
-
All functions defined in CSS Values and Units 4 are now once again parsed as calculation objects:
round()
,mod()
,rem()
,sin()
,cos()
,tan()
,asin()
,acos()
,atan()
,atan2()
,pow()
,sqrt()
,hypot()
,log()
,exp()
,abs()
, andsign()
.Unlike in 1.65.0, function calls are not locked into being parsed as calculations or plain Sass functions at parse-time. This means that user-defined functions will take precedence over CSS calculations of the same name. Although the function names
calc()
andclamp()
are still forbidden, users may continue to freely define functions whose names overlap with other CSS calculations (includingabs()
,min()
,max()
, andround()
whose names overlap with global Sass functions). -
Breaking change: As a consequence of the change in calculation parsing described above, calculation functions containing interpolation are now parsed more strictly than before. However, almost all interpolations that would have produced valid CSS will continue to work. The only exception is
#{$variable}%
which is not valid in Sass and is no longer valid in calculations. Instead of this, either use$variable
directly and ensure it already has the%
unit, or write($variable * 1%)
. -
Potentially breaking bug fix: The importer used to load a given file is no longer used to load absolute URLs that appear in that file. This was unintented behavior that contradicted the Sass specification. Absolute URLs will now correctly be loaded only from the global importer list. This applies to the modern JS API, the Dart API, and the embedded protocol.
Embedded Sass
- Substantially improve the embedded compiler's performance when compiling many files or files that require many importer or function call round-trips with the embedded host.
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.