[renovate] Update NPM dependencies (major)
This PR contains the following updates:
Release Notes
postcss/autoprefixer (autoprefixer)
v10.4.21
- Fixed old
-moz-prefix for:placeholder-shown(by @Marukome0743).
v10.4.20
- Fixed
fit-contentprefix for Firefox.
v10.4.19
- Removed
end value has mixed support, consider using flex-endwarning sinceend/startnow have good support.
v10.4.18
- Fixed removing
-webkit-box-orienton-webkit-line-clamp(@Goodwine).
v10.4.17
- Fixed
user-select: containprefixes.
v10.4.16
- Improved performance (by Romain Menke).
- Fixed docs (by Christian Oliff).
v10.4.15
- Fixed
::backdropprefixes (by 一丝). - Fixed docs (by Christian Oliff).
v10.4.14
- Improved startup time and reduced JS bundle size (by Kārlis Gaņģis).
v10.4.13
- Fixed missed prefixes on vendor prefixes in name of CSS Custom Property.
v10.4.12
- Fixed support of unit-less zero angle in backgrounds (by 一丝).
v10.4.11
- Fixed
text-decorationprefixes by moving to MDN data (by Romain Menke).
v10.4.10
- Fixed
unicode-bidiprefixes by moving to MDN data.
v10.4.9
- Fixed
css-unicode-bidiissue from latest Can I Use.
v10.4.8
- Do not print
color-adjustwarning ifprint-color-adjustalso is in rule.
v10.4.7
- Fixed
print-color-adjustsupport in Firefox.
v10.4.6
- Fixed
print-color-adjustsupport.
v10.4.5
- Fixed
NaNin grid (by @SukkaW).
v10.4.4
- Fixed
package.fundingto have same value between all PostCSS packages.
v10.4.3
- Fixed
package.funding(by Álvaro Mondéjar).
v10.4.2
- Fixed old
-moz-prefix for:placeholder-shown(by @Marukome0743).
v10.4.1
- Removed
end value has mixed support, consider using flex-endwarning sinceend/startnow have good support.
v10.4.0: 10.4 “ǃke e꞉ ǀxarra ǁke”
In Autoprefixer 10.4 @lukewarlow added :autofill support:
input:-webkit-autofill {
background-color: red;
}
input:autofill {
background-color: red;
}
v10.3.7
- Replaced
nanocolorstopicocolors.
v10.3.6
- Updated
nanocolors. - Reduced package size.
v10.3.5
- Replaced
colorettetonanocolors.
v10.3.4
- Fixed
stretchvalue in latest Firefox.
v10.3.3
- Fixed wrong
-moz-prefix from::file-selector-button(by Usman Yunusov).
v10.3.2
- Fixed
::file-selector-buttonsupport (by Usman Yunusov).
v10.3.1
- Fixed adding wrong prefixes to
content(by Luke Warlow).
v10.3.0: 10.3 “Чести своей не отдам никому”
In Autoprefixer 10.3 @lukewarlow added ::file-selector-button support.
::-webkit-file-upload-button {
border: 2px solid #​6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
::file-selector-button {
border: 2px solid #​6c5ce7;
padding: .2em .4em;
border-radius: .2em;
background-color: #a29bfe;
}
v10.2.6
- Fixed “no prefixes needed” warning (by @Pwntheon).
v10.2.5
- Fixed
:support in@supports(by Dmitry Semigradsky). - Fixed docs (by Christian Oliff).
v10.2.4
- Fixed browser names in
npx autoprefixer --info.
v10.2.3
- Fixed PostCSS 8 support.
v10.2.2
- Fixed PostCSS 8 plugins compatibility.
v10.2.1
- Fixed
transition-propertywarnings (by @Sheraff).
v10.2.0: 10.2 “Sub rosa”
Autoprefixer 10.2 now has built-in TypeScript definitions. You do not need @types/autoprefixer anymore.
Thanks to @Semigradsky and DefinitelyTyped’s contributors.
@Sheraff also improved docs.
v10.1.0: 10.1 “Pula”
Autoprefixer 10.1 improved min-resolution support.
@infusion added dpcm unit support and num2fraction with Fraction.js, which uses Farey Sequences as a rational approximation (more precise) and simplifies the fraction using continued fractions to ɛ <0.001 afterward.
/* input */
@​media (min-resolution: 113.38dpcm) {
…
}
/* output */
@​media (-webkit-min-device-pixel-ratio: 3),
(min--moz-device-pixel-ratio: 3),
(-o-min-device-pixel-ratio: 3/1),
(min-resolution: 113.38dpcm) {
…
}
v10.0.4
- Fixed
Cannot read property 'proxyOf' of undefinederror (by Igor Kamyshev).
v10.0.3
- Fixed
substracttosubtractvalue formask-composite(by Michelle Enos).
v10.0.2
- Removed
-ms-user-select: allbecause IE and old Edge don’t support it. - Fixed Grid Layout warning.
v10.0.1
- Fix PostCSS 8.1 compatability.
- Add our OpenCollective to
package.json. - Clean up code (by Sukka).
v10.0.0: 10.0 “Alis volat propriis”
Autoprefixer 10 is based on top of PostCSS 8 (check Known Issues section before updating).
Node.js 6.x, 8.x, 11.x support was removed.
Now you need to install Autoprefixer by npm install --save-dev autoprefixer postcss. We moved postcss from dependencies to peerDependencies according to new PostCSS plugin guidelines.
v9.8.8
- Replaced
nanocolorswithpicocolors. - Reduced package size.
v9.8.7
- Replaced
colorettewithnanocolors. - Reduced package size.
v9.8.6
- Fixed
envoption.
v9.8.5
- Improved Grid Layout warnings (by Daniel Tonon).
- Fixed
align-selfandjustify-selfwithdisplay: flex(by Daniel Tonon).
babel/babel-loader (babel-loader)
v10.0.0
What's Changed
Breaking Changes
- bump node requirement to
^18.20.0 || ^20.10.0 || >=22.0.0and webpack requirement to>= 5.61.0by @JLHwung in https://github.com/babel/babel-loader/pull/1026 - breaking: use output.hashFunction as loader cache hasher by @JLHwung in https://github.com/babel/babel-loader/pull/1027
New Features
- Add babel-loader logger by @JLHwung in https://github.com/babel/babel-loader/pull/1034
- Support cache with external dependencies by @JLHwung in https://github.com/babel/babel-loader/pull/1033
Bug Fixes
- [Bugfix] Ensure stability of filename cache-keys by @stefanpenner in https://github.com/babel/babel-loader/pull/909
Docs
- docs: clarify that
cacheIdentifieris computed from the merged options by @JLHwung in https://github.com/babel/babel-loader/pull/1000 - Create SECURITY.md by @JLHwung in https://github.com/babel/babel-loader/pull/1032
- Add babel-loader v10 readme by @JLHwung in https://github.com/babel/babel-loader/pull/1046
- add readme section for loggingDebug support by @JLHwung in https://github.com/babel/babel-loader/pull/1038
- Update readme and repo templates by @JLHwung in https://github.com/babel/babel-loader/pull/1041
Dependencies
- migrate to c8 by @JLHwung in https://github.com/babel/babel-loader/pull/996
- Bump word-wrap from 1.2.3 to 1.2.4 by @dependabot in https://github.com/babel/babel-loader/pull/998
- Bump dev dependencies by @JLHwung in https://github.com/babel/babel-loader/pull/1001
- Bump braces from 3.0.2 to 3.0.3 by @dependabot in https://github.com/babel/babel-loader/pull/1020
- Update deps by @JLHwung in https://github.com/babel/babel-loader/pull/1025
- refactor: replace
find-cache-dirbyfind-upby @JLHwung in https://github.com/babel/babel-loader/pull/1031 - Bump webpack from 5.93.0 to 5.94.0 by @dependabot in https://github.com/babel/babel-loader/pull/1035
- chore: update dev deps by @JLHwung in https://github.com/babel/babel-loader/pull/1036
- Bump cross-spawn from 7.0.3 to 7.0.6 by @dependabot in https://github.com/babel/babel-loader/pull/1049
Internal
- Remove caller option check by @JLHwung in https://github.com/babel/babel-loader/pull/1007
- Update tests by @JLHwung in https://github.com/babel/babel-loader/pull/1003
- Update metadata test by @JLHwung in https://github.com/babel/babel-loader/pull/1024
- Migrate to node test runner by @JLHwung in https://github.com/babel/babel-loader/pull/1028
- chore: use default eslint rules by @JLHwung in https://github.com/babel/babel-loader/pull/1029
- refactor: use webpack builtin schema util by @JLHwung in https://github.com/babel/babel-loader/pull/1030
New Contributors
- @stefanpenner made their first contribution in https://github.com/babel/babel-loader/pull/909
Full Changelog: https://github.com/babel/babel-loader/compare/v9.1.3...v10.0.0
v9.2.1
What's Changed
- Avoid error on missing getLogger by @nicolo-ribaudo in https://github.com/babel/babel-loader/pull/1045
Full Changelog: https://github.com/babel/babel-loader/compare/v9.2.0...v9.2.1
v9.2.0
What's Changed
- Remove caller option check by @JLHwung in https://github.com/babel/babel-loader/pull/1007
- Update deps by @JLHwung in https://github.com/babel/babel-loader/pull/1025
- docs: clarify that
cacheIdentifieris computed from the merged options by @JLHwung in https://github.com/babel/babel-loader/pull/1000 - Add babel-loader logger by @JLHwung in https://github.com/babel/babel-loader/pull/1037
Full Changelog: https://github.com/babel/babel-loader/compare/v9.1.3...v9.2.0
v9.1.3
Security dependency updates
- Bump http-cache-semantics from 4.1.0 to 4.1.1 by @dependabot in https://github.com/babel/babel-loader/pull/982
- Bump semver from 7.3.2 to 7.5.2 by @dependabot in https://github.com/babel/babel-loader/pull/993
- bump find-cache-dir to v4 by @JLHwung in https://github.com/babel/babel-loader/pull/995
New Contributors
- @piwysocki made their first contribution in https://github.com/babel/babel-loader/pull/981
- @comoser made their first contribution in https://github.com/babel/babel-loader/pull/897
Full Changelog: https://github.com/babel/babel-loader/compare/v9.1.2...v9.1.3
v9.1.2
9.1.1 was a broken release, it didn't include all the commits.
Dependencies updates
- Bump qs from 6.5.2 to 6.5.3 by @dependabot in https://github.com/babel/babel-loader/pull/977
- Bump json5 from 2.2.1 to 2.2.3 by @dependabot in https://github.com/babel/babel-loader/pull/980
Misc
- GitHub Workflows security hardening by @sashashura in https://github.com/babel/babel-loader/pull/976
New Contributors
- @sashashura made their first contribution in https://github.com/babel/babel-loader/pull/976
Full Changelog: https://github.com/babel/babel-loader/compare/v9.1.0...v9.1.2
v9.1.1
v9.1.0
New features
- Pass external dependencies from Babel to Webpack by @nicolo-ribaudo in https://github.com/babel/babel-loader/pull/971
Full Changelog: https://github.com/babel/babel-loader/compare/v9.0.1...v9.1.0
v9.0.1
Bug Fixes
- remove "node:" builtin prefix by @JLHwung in https://github.com/babel/babel-loader/pull/970
Full Changelog: https://github.com/babel/babel-loader/compare/v9.0.0...v9.0.1
v9.0.0
What's Changed
- update hash method mechanism so it doesn't fail on a fips enabled machine by @darmbrust in https://github.com/babel/babel-loader/pull/939
- Require babel ^7.12.0 and Node.js >= 14.15.0 versions by @JLHwung in https://github.com/babel/babel-loader/pull/956
- Remove dependency on loader-utils and drop webpack 4 support by @nied in https://github.com/babel/babel-loader/pull/942
New Contributors
- @darmbrust made their first contribution in https://github.com/babel/babel-loader/pull/939
- @nied made their first contribution in https://github.com/babel/babel-loader/pull/942
Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.5...v9.0.0
v8.4.1
What's Changed
- Avoid error on missing getLogger by @nicolo-ribaudo in https://github.com/babel/babel-loader/pull/1044
Full Changelog: https://github.com/babel/babel-loader/compare/v8.4.0...v8.4.1
v8.4.0
What's Changed
- Fix loader-utils vulnerability by @LuckyLuky in https://github.com/babel/babel-loader/pull/979
- Add babel-loader logger by @JLHwung in https://github.com/babel/babel-loader/pull/1039
New Contributors
- @LuckyLuky made their first contribution in https://github.com/babel/babel-loader/pull/979
Full Changelog: https://github.com/babel/babel-loader/compare/v8.3.0...v8.4.0
v8.3.0
New features
- Pass external dependencies from Babel to Webpack by @nicolo-ribaudo in https://github.com/babel/babel-loader/pull/971
Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.5...v8.3.0
v8.2.5
What's Changed
- fix: respect
inputSourceMaploader option by @alan-agius4 in https://github.com/babel/babel-loader/pull/896
New Contributors
- @alan-agius4 made their first contribution in https://github.com/babel/babel-loader/pull/896
Full Changelog: https://github.com/babel/babel-loader/compare/v8.2.4...v8.2.5
v8.2.4
What's Changed
- doc(README.md): fix a broken markdown link by @loveDstyle in https://github.com/babel/babel-loader/pull/919
- Bump loader-utils to 2.x by @stianjensen in https://github.com/babel/babel-loader/pull/931
- Use md5 hashing for OpenSSL 3 by @pathmapper in https://github.com/babel/babel-loader/pull/924
Thanks @loveDstyle, @stianjensen and @pathmapper for your first PRs!
v8.2.3: 8.2.3
This release fixes compatibility with Node.js 17
- Use md5 hash for caching on node v17 (https://github.com/babel/babel-loader/pull/918)
Thanks @Reptarsrage!
v8.2.2
v8.2.1: 8.2.1
- Move
@ava/babeltodevDependencies#881 (@jvasseur)
v8.2.0: 8.2.0
- Replace
mkdirpwithmake-dir47958ca(@JLHwung) - Use async config loading when available
d8cff97(@the-spyke)
chaijs/chai (chai)
v5.2.0
What's Changed
- fix: ability to register more plugins inside a plugin by @tpluscode in https://github.com/chaijs/chai/pull/1639
- chore: bump playwright to fix CI by @43081j in https://github.com/chaijs/chai/pull/1663
- chore: introduce prettier and run it by @43081j in https://github.com/chaijs/chai/pull/1660
- chore: drop old CJS entrypoints by @43081j in https://github.com/chaijs/chai/pull/1662
- chore: enable eslint recommended config by @43081j in https://github.com/chaijs/chai/pull/1659
- Integrated
chai-subsetand added assert-based negation to containSubset by @BreadInvasion in https://github.com/chaijs/chai/pull/1664 - Add coverage check to tests by @koddsson in https://github.com/chaijs/chai/pull/1669
- fix floating point precision in closeTo assertion by @koddsson in https://github.com/chaijs/chai/pull/1667
New Contributors
- @tpluscode made their first contribution in https://github.com/chaijs/chai/pull/1639
- @BreadInvasion made their first contribution in https://github.com/chaijs/chai/pull/1664
Full Changelog: https://github.com/chaijs/chai/compare/v5.1.2...v5.2.0
v5.1.2
What's Changed
- Fix secret name in publish action by @koddsson in https://github.com/chaijs/chai/pull/1614
- Publish npm packages with provenance by @koddsson in https://github.com/chaijs/chai/pull/1615
- build(deps-dev): bump braces from 3.0.2 to 3.0.3 by @dependabot in https://github.com/chaijs/chai/pull/1625
- chore: bump loupe and deep-eql by @43081j in https://github.com/chaijs/chai/pull/1635
- build(deps-dev): bump @75lb/deep-merge from 1.1.1 to 1.1.2 by @dependabot in https://github.com/chaijs/chai/pull/1636
- build(deps): bump rollup from 4.9.1 to 4.22.4 by @dependabot in https://github.com/chaijs/chai/pull/1637
- chore: update deep dependencies by @43081j in https://github.com/chaijs/chai/pull/1641
- chore: upgrade loupe by @43081j in https://github.com/chaijs/chai/pull/1646
- Support big int in approximently by @koddsson in https://github.com/chaijs/chai/pull/1606
Full Changelog: https://github.com/chaijs/chai/compare/v5.1.1...v5.1.2
v5.1.1
What's Changed
- Set up ESLint for JSDoc comments by @koddsson in https://github.com/chaijs/chai/pull/1605
- build(deps-dev): bump ip from 1.1.8 to 1.1.9 by @dependabot in https://github.com/chaijs/chai/pull/1608
- Correct Mocha import instructions by @MattiSG in https://github.com/chaijs/chai/pull/1611
- fix: support some virtual contexts in
toThrowby @43081j in https://github.com/chaijs/chai/pull/1609
New Contributors
- @MattiSG made their first contribution in https://github.com/chaijs/chai/pull/1611
Full Changelog: https://github.com/chaijs/chai/compare/v5.1.0...v5.1.1
v5.1.0
What's Changed
- Remove useless guards and add parentheses to constuctors by @koddsson in https://github.com/chaijs/chai/pull/1593
- Cleanup jsdoc comments by @koddsson in https://github.com/chaijs/chai/pull/1596
- Convert comments in "legal comments" format to jsdoc or normal comments by @koddsson in https://github.com/chaijs/chai/pull/1598
- Implement
iterableassertion by @koddsson in https://github.com/chaijs/chai/pull/1592 - Assert interface fix by @developer-bandi in https://github.com/chaijs/chai/pull/1601
- Set support in same members by @koddsson in https://github.com/chaijs/chai/pull/1583
- Fix publish script by @koddsson in https://github.com/chaijs/chai/pull/1602
New Contributors
- @developer-bandi made their first contribution in https://github.com/chaijs/chai/pull/1601
Full Changelog: https://github.com/chaijs/chai/compare/v5.0.3...v5.1.0
v5.0.3
Fix bad v5.0.2 publish.
Full Changelog: https://github.com/chaijs/chai/compare/v5.0.2...v5.0.3
v5.0.2
What's Changed
- build(deps): bump nanoid and mocha by [@dependabot](https://redirect.gi
Configuration
📅 Schedule: Branch creation - "before 3am on the first day of the month" (UTC), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.