Changelog
1.80.3
--quiet
,
--verbose
, and --silence-deprecation
.Changelog
1.80.2
invert()
function.Changelog
1.80.0
@import
is now officially deprecated, as are global built-in functions that
are available within built-in modules. See [the Sass blog post] for more
details on the deprecation process.Changelog
1.79.6
Fix a bug where Sass would add an extra */
after loud comments with
whitespace after an explicit */
in the indented syntax.
Potentially breaking bug fix: Adding text after an explicit */
in the
indented syntax is now an error, rather than silently generating invalid CSS.
SassBoolean
type.Changelog
1.79.5
Changes to how selector.unify()
and @extend
combine selectors:
The relative order of pseudo-classes (like :hover
) and pseudo-elements
(like ::before
) within each original selector is now preserved when
they're combined.
Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector.
Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec.
Fix a slight inaccuracy case when converting to srgb-linear
and
display-p3
.
Potentially breaking bug fix: math.unit()
now wraps multiple denominator
units in parentheses. For example, px/(em*em)
instead of px/em*em
.
@parcel/watcher
to watch the filesystem when running from JavaScript and
not using --poll
. This should mitigate more frequent failures users have
been seeing since version 4.0.0 of Chokidar, our previous watching tool, was
released.SassColor.interpolate()
to allow an undefined options
parameter, as
the types indicate.Changelog
1.79.4
green
or blue
to color.change()
for legacy
colors would fail.Changelog
1.79.3
$channel
parameter in the suggested replacement for
color.red()
, color.green()
, color.blue()
, color.hue()
,
color.saturation()
, color.lightness()
, color.whiteness()
, and
color.blackness()
to use a quoted string.Changelog
1.79.2
Add a $space
parameter to the suggested replacement for color.red()
,
color.green()
, color.blue()
, color.hue()
, color.saturation()
,
color.lightness()
, color.whiteness()
, and color.blackness()
.
Update deprecation warnings for the legacy JS API to include a link to [relevant documentation].