Releases: sass/dart-sass
Dart Sass 1.66.1
To install Sass 1.66.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
JS API
- Fix a bug where Sass compilation could crash in strict mode if passed a callback that threw a string, boolean, number, symbol, or bignum.
See the full changelog for changes in earlier releases.
Dart Sass 1.66.0
To install Sass 1.66.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
-
Breaking change: Drop support for the additional CSS calculations defined in CSS Values and Units 4. Custom Sass functions whose names overlapped with these new CSS functions were being parsed as CSS calculations instead, causing an unintentional breaking change outside our normal [compatibility policy] for CSS compatibility changes.
Support will be added again in a future version, but only after Sass has emitted a deprecation warning for all functions that will break for at least three months prior to the breakage.
See the full changelog for changes in earlier releases.
Dart Sass 1.65.1
To install Sass 1.65.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
- Update abs-percent deprecatedIn version to
1.65.0
.
See the full changelog for changes in earlier releases.
Dart Sass 1.65.0
To install Sass 1.65.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
-
All functions defined in CSS Values and Units 4 are now parsed as calculation objects:
round()
,mod()
,rem()
,sin()
,cos()
,tan()
,asin()
,acos()
,atan()
,atan2()
,pow()
,sqrt()
,hypot()
,log()
,exp()
,abs()
, andsign()
. -
Deprecate explicitly passing the
%
unit to the globalabs()
function. In future releases, this will emit a CSS abs() function to be resolved by the browser. This deprecation is namedabs-percent
.
See the full changelog for changes in earlier releases.
Dart Sass 1.64.2
To install Sass 1.64.2, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Dart API
- Include protocol buffer definitions when uploading the
sass
package to pub.
See the full changelog for changes in earlier releases.
Dart Sass 1.64.1
To install Sass 1.64.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
Embedded Sass
- Fix a bug where a valid
SassCalculation.clamp()
with less than 3 arguments would throw an error.
See the full changelog for changes in earlier releases.
Dart Sass 1.64.0
To install Sass 1.64.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
-
Comments that appear before or between
@use
and@forward
rules are now emitted in source order as much as possible, instead of always being emitted after the CSS of all module dependencies. -
Fix a bug where an interpolation in a custom property name crashed if the file was loaded by a
@use
nested in an@import
.
JavaScript API
-
Add a new
SassCalculation
type that represents the calculation objects added in Dart Sass 1.40.0. -
Add
Value.assertCalculation()
, which returns the value if it's aSassCalculation
and throws an error otherwise. -
Produce a better error message when an environment that supports some Node.js APIs loads the browser entrypoint but attempts to access the filesystem.
Embedded Sass
- Fix a bug where nested relative
@imports
failed to load when using the deprecated functionsrender
orrenderSync
and those relative imports were loaded multiple times across different files.
See the full changelog for changes in earlier releases.
Dart Sass 1.63.6
To install Sass 1.63.6, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
JavaScript API
- Fix
import sass from 'sass'
again after it was broken in the last release.
Embedded Sass
- Fix the
exports
declaration inpackage.json
.
See the full changelog for changes in earlier releases.
Dart Sass 1.63.5
To install Sass 1.63.5, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
JavaScript API
- Fix a bug where loading the package through both CJS
require()
and ESMimport
could crash on Node.js.
Embedded Sass
-
Fix a deadlock when running at high concurrency on 32-bit systems.
-
Fix a race condition where the embedded compiler could deadlock or crash if a compilation ID was reused immediately after the compilation completed.
See the full changelog for changes in earlier releases.
Dart Sass 1.63.4
To install Sass 1.63.4, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.
Changes
JavaScript API
-
Re-enable support for
import sass from 'sass'
when loading the package from an ESM module in Node.js. However, this syntax is now deprecated; ESM users should useimport * as sass from 'sass'
instead.On the browser and other ESM-only platforms, only
import * as sass from 'sass'
is supported. -
Properly export the legacy API values
TRUE
,FALSE
,NULL
, andtypes
from the ECMAScript module API.
Embedded Sass
-
Fix a race condition where closing standard input while requests are in-flight could sometimes cause the process to hang rather than shutting down gracefully.
-
Properly include the root stylesheet's URL in the set of loaded URLs when it fails to parse.
See the full changelog for changes in earlier releases.