Releases: sass/dart-sass
Release list
Dart Sass 1.103.1
To install Sass 1.103.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- No user-visible changes.
See the full changelog for changes in earlier releases.
Dart Sass 1.103.0
To install Sass 1.103.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- Potentially breaking compatibility fix: Colors now preserve "analogous sets" of missing channels during conversions, per the CSS spec. For example,
color.to-space(lch(50% none none), lab)now returnslab(50% none none)instead oflab(50% 0 0).
See the full changelog for changes in earlier releases.
Dart Sass 1.102.0
To install Sass 1.102.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- Use the 2.4 gamma transfer function for rec2020, as specified by the latest draft of CSS Color 4.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.7
To install Sass 1.101.7, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- No user-visible changes.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.6
To install Sass 1.101.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- No user-visible changes.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.5
To install Sass 1.101.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- No user-visible changes.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.4
To install Sass 1.101.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
-
Avoid emitting
rgb()orrgba()functions with non-percent decimal channels. Older browsers only support integer values or (potentially decimal) percentages for these functions, so in order to preserve backwards-compatibility while retaining full precision for modern browsers, legacy colors that contain at least one non-integer channel will now use percentages for their channels (for example,rgb(0%, 100%, 50%)rather thanrgb(0, 255, 127.5)). -
Fix a bug where the values of plain-CSS
if()expressions were emitted using theirmeta.inspect()format rather than their CSS serialization format.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.3
To install Sass 1.101.3, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- No user-visible changes.
See the full changelog for changes in earlier releases.
Dart Sass 1.101.0
To install Sass 1.101.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- Potentially breaking bug fix: The Node package importer now properly supports resolving import-only variants of Sass files declared in the
exports,sass, andstylefields ofpackage.json. Previously, these files were ignored even when loaded via@import, so any code relying on loading module-system-only files this way may break.
See the full changelog for changes in earlier releases.
Dart Sass 1.100.0
To install Sass 1.100.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
-
Writing two compound selectors adjacent to one another without any whitespace between them, such as
[class]a, is now deprecated. This was always an error in CSS and Sass only supported it by mistake.See the Sass website for details.
See the full changelog for changes in earlier releases.