Update dependency autoprefixer to ^9.5.1
Created by: renovate[bot]
This PR contains the following updates:
Package | Type | Update | New value | References | Sourcegraph |
---|---|---|---|---|---|
autoprefixer | devDependencies | minor | ^9.5.1 | source |
Release Notes
postcss/autoprefixer
v9.5.1
- Fix
backdrop-filter
for Edge (by Oleh Aloshkin). - Fix
min-resolution
media query support in Firefox < 16.
v9.5.0
Autoprefixer 9.5 brings mask-composite
support.
a {
mask-composite: add;
}
b {
mask: url(intersect.png) intersect, url(exclude.png);
}
a {
-webkit-mask-composite: source-over;
mask-composite: add;
}
b {
-webkit-mask: url(intersect.png), url(exclude.png);
-webkit-mask-composite: source-in, xor;
mask: url(intersect.png) intersect, url(exclude.png);
}
Thanks to @semeleven for implementation and @iamvdo for suggestion.
v9.4.10
- Add warning for named Grid rows.
v9.4.9
- Fix
grid-template
and@media
case (by Bogdan Dolin).
v9.4.8
- Fix
calc()
support in Grid gap.
v9.4.7
- Fix infinite loop on mismatched parens.
v9.4.6
- Fix warning text (by Albert Juhé Lluveras).
v9.4.5
- Fix
text-decoration-skip-ink
support.
v9.4.4
- Use
direction
value for-ms-writing-mode
(by Denys Kniazevych). - Fix warning text (by @zzzzBov).
Renovate configuration
rebase!
".
-
If you want to rebase/retry this PR, check this box
This PR has been generated by Renovate Bot. View repository job log here.