Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Releases: sass/dart-sass-embedded

Dart Sass Embedded 1.62.1

25 Apr 23:40
Compare
Choose a tag to compare
  • Fix a bug where :has(+ &) and related constructs would drop the leading combinator.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.62.0

11 Apr 23:06
Compare
Choose a tag to compare
  • Deprecate the use of multiple !global or !default flags on the same variable. This deprecation is named duplicate-var-flags.

  • Allow special numbers like var() or calc() in the global functions: grayscale(), invert(), saturate(), and opacity(). These are also native CSS filter functions. This is in addition to number values which were already allowed.

  • Fix a cosmetic bug where an outer rule could be duplicated after nesting was resolved, instead of re-using a shared rule.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.61.0

06 Apr 22:07
Compare
Choose a tag to compare
  • Potentially breaking change: Drop support for End-of-Life Node.js 12.

  • Fix remaining cases for the performance regression introduced in 1.59.0.

Embedded Sass

  • The JS embedded host now loads files from the working directory when using the legacy API.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.60.0

23 Mar 23:25
Compare
Choose a tag to compare
  • Add support for the pi, e, infinity, -infinity, and NaN constants in calculations. These will be interpreted as the corresponding numbers.

  • Add support for unknown constants in calculations. These will be interpreted as unquoted strings.

  • Serialize numbers with value infinity, -infinity, and NaN to calc() expressions rather than CSS-invalid identifiers. Numbers with complex units still can't be serialized.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.59.3

14 Mar 21:31
Compare
Choose a tag to compare
  • Fix a performance regression introduced in 1.59.0.

  • The NPM release of 1.59.0 dropped support for Node 12 without actually indicating so in its pubspec. This release temporarily adds back support so that the latest Sass version that declares it supports Node 12 actually does so. However, Node 12 is now end-of-life, so we will drop support for it properly in an upcoming release.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.59.2

11 Mar 01:30
Compare
Choose a tag to compare
  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.59.1

10 Mar 23:59
Compare
Choose a tag to compare
  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.59.0

10 Mar 22:47
Compare
Choose a tag to compare

Command Line Interface

  • Added a new --fatal-deprecation flag that lets you treat a deprecation warning as an error. You can pass an individual deprecation ID (e.g. slash-div) or you can pass a Dart Sass version to treat all deprecations initially emitted in that version or earlier as errors.

  • New --future-deprecation flag that lets you opt into warning for use of certain features that will be deprecated in the future. At the moment, the only option is --future-deprecation=import, which will emit warnings for Sass @import rules, which are not yet deprecated, but will be in the future.

Dart API

  • New Deprecation enum, which contains the different current and future deprecations used by the new CLI flags.

  • The compile methods now take in fatalDeprecations and futureDeprecations parameters, which work similarly to the CLI flags.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.58.3

18 Feb 00:50
Compare
Choose a tag to compare
  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass Embedded 1.58.2

17 Feb 01:50
Compare
Choose a tag to compare

Command Line Interface

  • Add a timestamp to messages printed in --watch mode.

  • Print better calc()-based suggestions for /-as-division expression that contain calculation-incompatible constructs like unary minus.

See the full changelog for changes in earlier releases.