chore(deps): update dependency sass to v1.55.0
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| sass | 1.23.7 -> 1.55.0 |
Release Notes
sass/dart-sass
v1.55.0
-
Potentially breaking bug fix: Sass numbers are now universally stored as 64-bit floating-point numbers, rather than sometimes being stored as integers. This will generally make arithmetic with very large numbers more reliable and more consistent across platforms, but it does mean that numbers between nine quadrillion and nine quintillion will no longer be represented with full accuracy when compiling Sass on the Dart VM.
-
Potentially breaking bug fix: Sass equality is now properly transitive. Two numbers are now considered equal (after doing unit conversions) if they round to the same
1e-11th. Previously, numbers were considered equal if they were within1e-11of one another, which led to some circumstances where$a == $band$b == $cbut$a != $b.
-
Potentially breaking bug fix: Various functions in
sass:mathno longer treat floating-point numbers that are very close (but not identical) to integers as integers. Instead, these functions now follow the floating-point specification exactly. For example,math.pow(0.000000000001, -1)now returns1000000000000instead ofInfinity. -
Emit a deprecation warning for
$a -$band$a +$b, since these look like they could be unary operations but they're actually parsed as binary operations. Either explicitly write$a - $bor$a (-$b). See https://sass-lang.com/d/strict-unary for more details.
Dart API
-
Add an optional
argumentNameparameter toSassScriptException()to make it easier to throw exceptions associated with particular argument names. -
Most APIs that previously returned
numnow returndouble. All APIs continue to acceptnum, although in Dart 2.0.0 these APIs will be changed to accept onlydouble.
JS API
- Fix a bug in which certain warning spans would not have their properties accessible by the JS API.
v1.54.9
- Fix an incorrect span in certain
@mediaquery deprecation warnings.
v1.54.8
- No user-visible changes.
v1.54.7
- Add support for 32-bit ARM releases on Linux.
v1.54.6
- Fix a bug where a
@mediaquery could be incorrectly omitted from a stylesheet if it had multiple levels of nested@mediaqueries within it and the inner queries were mergeable but the outer query was not.
v1.54.5
-
Properly consider
a ~ cto be a superselector ofa ~ b ~ canda + b + c. -
Properly consider
b > cto be a superselector ofa > b > c, and similarly for other combinators. -
Properly calculate specificity for selector pseudoclasses.
-
Deprecate use of
random()when$limithas units to make it explicit thatrandom()currently ignores units. A future version will no longer ignore units. -
Don't throw an error when the same module is
@forwarded multiple times through a configured module.
Embedded Sass
- Rather than downloading the embedded compiler for the local platform on
install, the
sass-embeddednpm package now declares optional dependencies on platform-specific embedded compiler packages.
v1.54.4
- Improve error messages when passing incorrect units that are also out-of-bounds to various color functions.
v1.54.3
- Release a native ARM64 executable for Mac OS.
v1.54.2
- No user-visible changes.
v1.54.1
- When unifying selectors for
@extendandselector.unify(), ensure that:root,:scope,:host, and:host-contextonly appear at the beginning of complex selectors.
v1.54.0
-
Deprecate selectors with leading or trailing combinators, or with multiple combinators in a row. If they're included in style rules after nesting is resolved, Sass will now produce a deprecation warning and, in most cases, omit the selector. Leading and trailing combinators can still be freely used for nesting purposes.
See https://sass-lang.com/d/bogus-combinators for more details.
-
Add partial support for new media query syntax from Media Queries Level 4. The only exception are logical operations nested within parentheses, as these were previously interpreted differently as SassScript expressions.
A parenthesized media condition that begins with
notor an opening parenthesis now produces a deprecation warning. In a future release, these will be interpreted as plain CSS instead. -
Deprecate passing non-
degunits tocolor.hwb()'s$hueargument. -
Fix a number of bugs when determining whether selectors with pseudo-elements are superselectors.
-
Treat
*as a superselector of all selectors.
Dart API
- Add a top-level
fakeFromImport()function for testing custom importers that useAsyncImporter.fromImport.
JS API
-
Add a
charsetoption that controls whether or not Sass emits a@charset/BOM for non-ASCII stylesheets. -
Fix Sass npm package types for TS 4.7+ Node16 and NodeNext module resolution.
v1.53.0
- Add support for calling
var()with an empty second argument, such asvar(--side, ).
JS API
- Fix a bug where
meta.load-css()would sometimes resolve relative URLs incorrectly when called from a mixin using the legacy JS API.
Embedded Sass
- Respect npm's proxy settings when downloading the embedded Sass compiler.
v1.52.3
- Fix crash when trailing loud comments (
/* ... */) appear twice in a row across two different imports which themselves imported the same file each.
v1.52.2
- Preserve location of trailing loud comments (
/* ... */) instead of pushing the comment to the next line.
v1.52.1
Command Line Interface
- Fix a bug where
--watchmode would close immediately in TTY mode. This was caused by our change to close--watchwhen stdin was closed outside of TTY mode, which has been reverted for now while we work on a fix.
v1.52.0
-
Add support for arbitrary modifiers at the end of plain CSS imports, in addition to the existing
supports()and media queries. Sass now allows any sequence of identifiers of functions after the URL of an import for forwards compatibility with future additions to the CSS spec. -
Fix an issue where source locations tracked through variable references could potentially become incorrect.
-
Fix a bug where a loud comment in the source can break the source map when embedding the sources, when using the command-line interface or the legacy JS API.
JS API
SassNumber.assertUnit()andSassNumber.assertNoUnits()now correctly return the number called on when it passes the assertion.
v1.51.0
-
Potentially breaking change: Change the order of maps returned by
map.deep-merge()to match those returned bymap.merge(). All keys that appeared in the first map will now be listed first in the same order they appeared in that map, followed by any new keys added from the second map. -
Improve the string output of some AST nodes in error messages.
v1.50.1
Embedded Sass
-
The JS embedded host and the embedded compiler will now properly avoid resolving imports relative to the current working directory unless
'.'is passed as a load path. -
Fix a bug in the JS embedded host's implementation of the legacy JS API where imports that began with
/could crash on Windows.
v1.50.0
@extendnow treats [:where()][:where()] the same as:is().
Command Line Interface
- Closing the standard input stream will now cause the
--watchcommand to stop running.
Embedded Sass
-
Fix a bug where the JS embedded host crashed when invoking a legacy importer after resolving a relative filesystem import.
-
Improve error messages when returning non-
Objectvalues from legacy importers.
v1.49.11
- Add support for 64-bit ARM releases on Linux.
Embedded Sass
- The embedded compiler now correctly sets the
idfield for allOutboundMessages.
v1.49.10
-
Quiet deps mode now silences compiler warnings in mixins and functions that are defined in dependencies even if they're invoked from application stylesheets.
-
In expanded mode, Sass will now emit colors using
rgb(),rbga(),hsl(), andhsla()function notation if they were defined using the corresponding notation. As per our browser support policy, this change was only done once 95% of browsers were confirmed to support this output format, and so is not considered a breaking change.Note that this output format is intended for human readability and not for interoperability with other tools. As always, Sass targets the CSS specification, and any tool that consumes Sass's output should parse all colors that are supported by the CSS spec.
-
Fix a bug in which a color written using the four- or eight-digit hex format could be emitted as a hex color rather than a format with higher browser compatibility.
-
Calculations are no longer simplified within supports declarations
v1.49.9
Embedded Sass
- Fixed a bug where the legacy API could crash when passed an empty importer list.
v1.49.8
- Fixed a bug where some plain CSS imports would not be emitted.
JS API
- Fix a bug where inspecting the Sass module in the Node.js console crashed on Node 17.
Embedded Sass
- Fix a bug where source map URLs were incorrectly generated when passing importers to the legacy API.
v1.49.7
Embedded Sass
-
First stable release the
sass-embeddednpm package that contains the Node.js Embedded Host. -
First stable release of the
sass_embeddedpub package that contains the Embedded Dart Sass compiler.
v1.49.6
- No user-visible changes.
v1.49.5
- No user-visible changes.
v1.49.4
- No user-visible changes.
v1.49.3
- No user-visible changes.
v1.49.2
- No user-visible changes.
v1.49.1
- Add support for 64-bit ARM releases on Linux.
Embedded Sass
- The embedded compiler now correctly sets the
idfield for allOutboundMessages.
v1.49.0
- Fix a bug in
string.insertwith certain negative indices.
JS API
- Add support for the
sourceMapIncludeSourcesoption in the new JS API.
TypeScript Declarations
- Fix a bug where
LegacyPluginThis.options.linefeedwas typed to return abbreviations when it actually returned literal linefeed characters.
v1.48.0
JS API
- Potentially breaking bug fix: Match the specification of the new JS API by
setting
LegacyResult.maptoundefinedrather thannull.
TypeScript Declarations
- Add a declaration for the
NULLconstant.
v1.47.0
JS API
TypeScript Declarations
- Add declarations for the
TRUEandFALSEconstants.
v1.46.0
JS API
- Potentially breaking bug fix: Match the specification of the new JS API by
passing
undefinedrather thannulltoLogger.warn()for an unsetspan.
TypeScript Declarations
-
Add a declaration for the
LegacyPluginThis.options.contextfield. -
Update the definition of
LegacyAsyncFunctionto include explicit definitions with zero through six arguments before thedoneparameter. This makes it possible for TypeScript users to pass in callbacks that take a specific number of arguments, rather than having to declare a callback that takes an arbitrary number. -
Add a declaration for
types.Error, a legacy API class that can be returned by asynchronous functions to signal asynchronous errors. -
Add a
LegacyAsyncFunctionDonetype for thedonecallback that's passed toLegacyAsyncFunction.
v1.45.2
JS API
- Potentially breaking bug fix: Change the default value of the
separatorparameter fornew SassArgumentList()to','rather thannull. This matches the API specification.
v1.45.1
-
Potentially breaking bug fix: Properly parse custom properties in
@supportsconditions. Note that this means that SassScript expressions on the right-hand side of custom property@supportsqueries now need to be interpolated, as per https://sass-lang.com/d/css-vars. -
Potentially breaking bug fix: Fix a bug where
inspect()was not properly printing nested, empty, bracketed lists.
v1.45.0
JS API
This release includes an entirely new JavaScript API, designed to be more idiomatic, performant, and usable. The old API will continue to be supported until Dart Sass 2.0.0, but it is now considered deprecated and should be avoided for new code.
The new API includes:
-
compile()andcompileAsync()functions that take Sass file paths and return the result of compiling them to CSS. The async function returns aPromiserather than using a callback-based API. -
compileString()andcompileStringAsync()functions that take a string of Sass source and compiles it to CSS. As above, the async function returns aPromise. -
A new importer API that more closely matches the Sass specification's logic for resolving loads. This makes it much easier for Sass to cache information across
@importand@userules, which substantially improves performance for applications that rely heavily on repeated@imports. -
A new custom function API, including much more usable JS representations of Sass value types complete with type-assertion functions, easy map and list lookups, and compatibility with the [
immutable][immutable] package. Unlike in the legacy API, function callbacks now take one argument which contains an array of Sass values (rather than taking a separate JS argument for each Sass argument).
For full documentation of this API, please see the Sass website.
This release also adds TypeScript type definitions.
v1.44.0
- Suggest
calc()as an alternative in/-as-division deprecation messages.
Dart API
-
Add
SassNumber.convert()andSassNumber.convertValue(). These work likeSassNumber.coerce()andSassNumber.coerceValue(), except they don't treat unitless numbers as universally compatible. -
Fix a bug where
SassNumber.coerceToMatch()andSassNumber.coerceValueToMatch()wouldn't coerce single-unit numbers to match unitless numbers.
v1.43.5
-
Fix a bug where calculations with different operators were incorrectly considered equal.
-
Properly parse attribute selectors with empty namespaces.
JS API
- Print more detailed JS stack traces. This is mostly useful for the Sass team's own debugging purposes.
v1.43.4
JS API
- Fix a bug where the
loggeroption was ignored for therender()function.
v1.43.3
- Improve performance.
v1.43.2
- Improve the error message when the default namespace of a
@userule is not a valid identifier.
v1.42.1
- Fix a bug where Sass variables and function calls in calculations weren't being resolved correctly if there was a parenthesized interpolation elsewhere in the file.
v1.42.0
min()andmax()expressions are once again parsed as calculations as long as they contain only syntax that's allowed in calculation expressions. To avoid the backwards-compatibility issues that were present in 1.40.0, they now allow unitless numbers to be mixed with numbers with units just like the globalmin()andmax()functions. Similarly,+and-operations withinmin()andmax()functions allow unitless numbers to be mixed with numbers with units.
v1.41.1
- Preserve parentheses around
var()functions in calculations, because they could potentially be replaced with sub-expressions that might need to be parenthesized.
v1.41.0
-
Calculation values can now be combined with strings using the
+operator. This was an error in 1.40.0, but this broke stylesheets that were relying on$value + ""expressions to generically convert values to strings. (Note that the Sass team recommends the use of"#{$value}"orinspect($value)for that use-case.) -
The
selector.unify()function now correctly returnsnullwhen one selector is a:hostor:host-contextand the other is a selector that's guaranteed to be within the current shadow DOM. The@extendlogic has been updated accordingly as well. -
Fix a bug where extra whitespace in
min(),max(),clamp(), andcalc()expressions could cause bogus parse errors. -
Fix a bug where the right-hand operand of a
-in a calculation could incorrectly be stripped of parentheses.
Dart API
SassCalculation.plus()now allowsSassStringarguments.
v1.40.1
-
Potentially breaking bug fix:
min()andmax()expressions outside of calculations now behave the same way they did in 1.39.2, returning unquoted strings if they contain no Sass-specific features and calling the globalmin()andmax()functions otherwise. Within calculations, they continue to behave how they did in 1.40.0.This fixes an unintended breaking change added in 1.40.0, wherein passing a unitless number and a number without units to
min()ormax()now produces an error. Since this breakage affects a major Sass library, we're temporarily reverting support formin()andmax()calculations while we work on designing a longer-term fix.
v1.40.0
-
Add support for first-class
calc()expressions (as well asclamp()and plain-CSSmin()andmax()). This means:-
calc()expressions will be parsed more thoroughly, and errors will be highlighted where they weren't before. This may break your stylesheets, but only if they were already producing broken CSS. -
calc()expressions will be simplified where possible, and may even return numbers if they can be simplified away entirely. -
calc()expressions that can't be simplified to numbers return a new data type known as "calculations". -
Sass variables and functions can now be used in
calc()expressions. -
New functions
meta.calc-name()andmeta.calc-args()can now inspect calculations.
-
Dart API
-
Add a new value type,
SassCalculation, that represents calculations. -
Add new
CalculationOperation,CalculationOperator, andCalculationInterpolationtypes to represent types of arguments that may exist as part of a calculation. -
Add a new
Value.assertCalculation()method. -
Add a new
Number.hasCompatibleUnits()method.
v1.39.2
- Fix a bug where configuring with
@use ... withwould throw an error when that variable was defined in a module that also contained@forward ... with.
v1.39.1
- Partial fix for a bug where
@at-rootdoes not work properly in nested imports that contain@userules. If the only@userules in the nested import are for built-in modules,@at-rootshould now work properly.
v1.39.0
JS API
- Add a
charsetoption that controls whether or not Sass emits a@charset/BOM for non-ASCII stylesheets.
v1.38.2
- No user-visible changes
v1.38.1
- No user-visible changes
v1.38.0
-
In expanded mode, emit characters in Unicode private-use areas as escape sequences rather than literal characters.
-
Fix a bug where quotes would be omitted for an attribute selector whose value was a single backslash.
-
Properly consider numbers that begin with
.as "plain CSS" for the purposes of parsing plain-CSSmin()andmax()functions. -
Allow
ifto be used as an unquoted string. -
Properly parse backslash escapes within
url()expressions. -
Fix a couple bugs where
@extends could be marked as unsatisfied when multiple identical@extends extended selectors across@userules.
Command Line Interface
- Strip CRLF newlines from snippets of the original stylesheet that are included in the output when an error occurs.
JS API
-
Don't crash when a Windows path is returned by a custom Node importer at the same time as file contents.
-
Don't crash when an error occurs in a stylesheet loaded via a custom importer with a custom URL scheme.
Dart API
- Add a
SassArgumentList.keywordsWithoutMarkinggetter to access the keyword arguments of an argument list without marking them accessed.
v1.37.5
- No user-visible changes.
v1.37.4
- No user-visible changes.
v1.37.3
- No user-visible changes.
v1.37.2
- No user-visible changes.
v1.37.1
- No user-visible changes.
v1.37.0
Dart API
-
Potentially breaking bug fix:
SassNumber.asSlash,SassNumber.withSlash(), andSassNumber.withoutSlash()have been marked as@internal. They were never intended to be used outside thesasspackage. -
Potentially breaking bug fix:
SassExceptionhas been marked as@sealedto formally indicate that it's not intended to be extended outside of thesasspackage. -
Add a
Value.withListContents()method that returns a new Sass list with the same list separator and brackets as the current value, interpreted as a list.
v1.36.0
Dart API
-
Added
compileToResult(),compileStringToResult(),compileToResultAsync(), andcompileStringToResultAsync()methods. These are intended to replace the existingcompile*()methods, which are now deprecated. Rather than returning a simple string, these return aCompileResultobject, which will allow us to add additional information about the compilation without having to introduce further deprecations.-
Instead of passing a
sourceMapscallback tocompile*(), passsourceMaps: truetocompile*ToResult()and accessCompileResult.sourceMap. -
The
CompileResultobject exposes aloadedUrlsobject which lists the canonical URLs accessed during a compilation. This information was previously unavailable except through the JS API.
-
v1.35.2
-
Potentially breaking bug fix: Properly throw an error for Unicode ranges that have too many
?s after hexadecimal digits, such asU+12345??. -
Potentially breaking bug fix: Fixed a bug where certain local variable declarations nested within multiple
@ifstatements would incorrectly override a global variable. It's unlikely that any real stylesheets were relying on this bug, but if so they can simply add!globalto the variable declaration to preserve the old behavior. -
Potentially breaking bug fix: Fix a bug where imports of root-relative URLs (those that begin with
/) in@importrules would be passed to both Dart and JS importers asfile:URLs. -
Properly support selector lists for the
$extendeeargument toselector.extend()andselector.replace(). -
Fix an edge case where
@extendwouldn't affect a selector within a pseudo-selector such as:is()that itself extended other selectors. -
Fix a race condition where
meta.load-css()could trigger an internal error when running in asynchronous mode.
Dart API
- Use the
@internalannotation to indicate whichValueAPIs are available for public use.
v1.35.1
- Fix a bug where the quiet dependency flag didn't silence warnings in some
stylesheets loaded using
@import.
v1.35.0
-
Fix a couple bugs that could prevent some members from being found in certain files that use a mix of imports and the module system.
-
Fix incorrect recommendation for migrating division expressions that reference namespaced variables.
JS API
-
Add a
quietDepsoption which silences compiler warnings from stylesheets loaded through importers and load paths. -
Add a
verboseoption which causes the compiler to emit all deprecation warnings, not just 5 per feature.
v1.34.1
-
Fix a bug where
--updatewould always compile any file that depends on a built-in module. -
Fix the URL for the
@-moz-documentdeprecation message. -
Fix a bug with
@forloops nested inside property declarations.
v1.34.0
-
Don't emit the same warning in the same location multiple times.
-
Cap deprecation warnings at 5 per feature by default.
Command Line Interface
-
Add a
--quiet-depsflag which silences compiler warnings from stylesheets loaded through--load-paths. -
Add a
--verboseflag which causes the compiler to emit all deprecation warnings, not just 5 per feature.
Dart API
-
Add a
quietDepsargument tocompile(),compileString(),compileAsync(), andcompileStringAsync()which silences compiler warnings from stylesheets loaded through importers, load paths, andpackage:URLs. -
Add a
verboseargument tocompile(),compileString(),compileAsync(), andcompileStringAsync()which causes the compiler to emit all deprecation warnings, not just 5 per feature.
v1.33.0
- Deprecate the use of
/for division. The newmath.div()function should be used instead. See this page for details.
-
Add a
list.slash()function that returns a slash-separated list. -
Potentially breaking bug fix: The heuristics around when potentially slash-separated numbers are converted to slash-free numbers—for example, when
1/2will be printed as0.5rather than1/2—have been slightly expanded. Previously, a number would be made slash-free if it was passed as an argument to a user-defined function, but not to a built-in function. Now it will be made slash-free in both cases. This is a behavioral change, but it's unlikely to affect any real-world stylesheets. -
[
:is()][:is()] now behaves identically to:matches().
-
Fix a bug where non-integer numbers that were very close to integer values would be incorrectly formatted in CSS.
-
Fix a bug where very small number and very large negative numbers would be incorrectly formatted in CSS.
JS API
- The
thiscontext for importers now has afromImportfield, which istrueif the importer is being invoked from an@importandfalseotherwise. Importers should only use this to determine whether to load import-only files.
Dart API
- Add an
Importer.fromImportgetter, which istrueif the currentImporter.canonicalize()call comes from an@importrule andfalseotherwise. Importers should only use this to determine whether to load import-only files.
v1.32.13
-
Potentially breaking bug fix: Null values in
@useand@forwardconfigurations no longer override the!defaultvariable, matching the behavior of the equivalent code using@import. -
Use the proper parameter names in error messages about
string.slice
v1.32.12
- Fix a bug that disallowed more than one module from extending the same selector from a module if that selector itself extended a selector from another upstream module.
v1.32.11
- Fix a bug where bogus indented syntax errors were reported for lines that contained only whitespace.
v1.32.10
- No user-visible changes.
v1.32.9
- Fix a typo in a deprecation warning.
JavaScript API
- Drop support for Chokidar 2.x. This version was incompatible with Node 14, but due to shortcomings in npm's version resolver sometimes still ended up installed anyway. Only declaring support for 3.0.0 should ensure compatibility going forward.
Dart API
- Allow the null safety release of args and watcher.
Command Line Interface
- Add a
-wshorthand for the--watchflag.
v1.32.8
- Update chokidar version for Node API tests.
JavaScript API
- Allow a custom function to access the
render()options object within its local context, asthis.options.
v1.32.7
-
Allow the null safety release of stream_transform.
-
Allow
@forward...withto take arguments that have a!defaultflag without a trailing comma. -
Improve the performance of unitless and single-unit numbers.
v1.32.6
Node JS API
- Fix Electron support when
nodeIntegrationis disabled.
Dart API
- All range checks for
SassColorconstructors now throwRangeErrors withstartandendset.
v1.32.5
- Potentially breaking bug fix: When using
@forwith numbers that have units, the iteration variable now matches the unit of the initial number. This matches the behavior of Ruby Sass and LibSass.
Node JS API
-
Fix a few infrequent errors when calling
render()withfibermultiple times simultaneously. -
Avoid possible mangled error messages when custom functions or importers throw unexpected exceptions.
-
Fix Electron support when
nodeIntegrationis disabled.
v1.32.4
- No user-visible changes.
v1.32.3
- Optimize
==for numbers that have different units.
v1.32.2
- Print the actual number that was received in unit deprecation warnings for color functions.
v1.32.1
-
Potentially breaking bug fix: Null values in
@useand@forwardconfigurations no longer override the!defaultvariable, matching the behavior of the equivalent code using@import. -
Use the proper parameter names in error messages about
string.slice
v1.32.0
-
Deprecate passing non-
%numbers as lightness and saturation tohsl(),hsla(),color.adjust(), andcolor.change(). This matches the CSS specification, which also requires%for all lightness and saturation parameters. See [the Sass website][color-units] for more details. -
Deprecate passing numbers with units other than
degas the hue tohsl(),hsla(),adjust-hue(),color.adjust(), andcolor.change(). Unitless numbers are still allowed here, since they're allowed by CSS. See [the Sass website][color-units] for more details. -
Improve error messages about incompatible units.
-
Properly mark some warnings emitted by
sass:colorfunctions as deprecation warnings.
Dart API
-
Rename
SassNumber.valueInUnits()toSassNumber.coerceValue(). The old name remains, but is now deprecated. -
Rename
SassNumber.coerceValueToUnit(), a shorthand forSassNumber.coerceValue()that takes a single numerator unit. -
Add
SassNumber.coerceToMatch()andSassNumber.coerceValueToMatch(), which work likeSassNumber.coerce()andSassNumber.coerceValue()but take aSassNumberwhose units should be matched rather than taking the units explicitly. These generate better error messages thanSassNumber.coerce()andSassNumber.coerceValue(). -
Add
SassNumber.convertToMatch()andSassNumber.convertValueToMatch(), which work likeSassNumber.coerceToMatch()andSassNumber.coerceValueToMatch()except they throw exceptions when converting unitless values to or from units. -
Add
SassNumber.compatibleWithUnit(), which returns whether the number can be coerced to a single numerator unit.
v1.30.0
- Fix a bug where
@at-root (without: all)wouldn't properly remove a@keyframescontext when parsing selectors.
Node JS API
- The generated
main()function insass.jsnow returns aPromisethat completes when the executable is finished running.
Dart API
- Fix a bug that prevented importers from returning null when loading from a URL that they had already canonicalized.
v1.29.0
- Support a broader syntax for
@supportsconditions, based on the latest Editor's Draft of CSS Conditional Rules 3. Almost all syntax will be allowed (with interpolation) in the conditions' parentheses, as well as function syntax such as@supports selector(...).
v1.28.0
- Add a [
color.hwb()][color.hwb()] function tosass:colorthat can express colors in HWB format.
- Add [
color.whiteness()][color.whiteness()] and [color.blackness()][color.blackness()] functions tosass:colorto get a color's HWB whiteness and blackness components.
- Add
$whitenessand$blacknessparameters to [color.adjust()][color.adjust()], [color.change()][color.change()], and [color.scale()][color.scale()] to modify a color's HWB whiteness and blackness components.
Dart API
- Add HWB support to the
SassColorclass, including aSassColor.hwb()constructor,whitenessandblacknessgetters, and achangeHwb()method.
v1.27.2
- No user-visible changes.
v1.27.1
-
Potentially breaking bug fix:
meta.load-css()now correctly uses the name$urlfor its first argument, rather than$module. -
Don't crash when using
InfinityorNaNas a key in a map. -
Emit a proper parse error for a
=with no right-hand side in a function. -
Avoid going exponential on certain recursive
@extendedge cases.
v1.27.0
-
Adds an overload to
map.merge()that supports merging a nested map.map.merge($map1, $keys..., $map2): The$keysform a path to the nested map in$map1, into which$map2gets merged.See the Sass documentation for more details.
-
Adds an overloaded
map.set()function.map.set($map, $key, $value): Adds to or updates$mapwith the specified$keyand$value.map.set($map, $keys..., $value): Adds to or updates a map that is nested within$map. The$keysform a path to the nested map in$map, into which$valueis inserted.See the Sass documentation for more details.
-
Add support for nested maps to
map.get(). For example,map.get((a: (b: (c: d))), a, b, c)would returnd. See the documentation for more details. -
Add support for nested maps in
map.has-key. For example,map.has-key((a: (b: (c: d))), a, b, c)would return true. See the documentation for more details. -
Add a
map.deep-merge()function. This works likemap.merge(), except that nested map values are also recursively merged. For example:map.deep-merge( (color: (primary: red, secondary: blue), (color: (secondary: teal) ) // => (color: (primary: red, secondary: teal))See the Sass documentation for more details.
-
Add a
map.deep-remove()function. This allows you to remove keys from nested maps by passing multiple keys. For example:map.deep-remove( (color: (primary: red, secondary: blue)), color, primary ) // => (color: (secondary: blue))See the Sass documentation for more details.
-
Fix a bug where custom property values in plain CSS were being parsed as normal property values.
Dart API
- Add a
Value.tryMap()function which returns theValueas aSassMapif it's a valid map, ornullotherwise. This allows function authors to safely retrieve maps even if they're internally stored as empty lists, without having to catch exceptions fromValue.assertMap().
v1.26.12
- Fix a bug where nesting properties beneath a Sass-syntax custom property
(written as
#{--foo}: ...) would crash.
v1.26.11
-
Potentially breaking bug fix:
selector.nest()now throws an error if the first arguments contains the parent selector&. -
Fixes a parsing bug with inline comments in selectors.
-
Improve some error messages for edge-case parse failures.
-
Throw a proper error when the same built-in module is
@used twice. -
Don't crash when writing
Infinityin JS mode. -
Produce a better error message for positional arguments following named arguments.
v1.26.10
- Fixes a bug where two adjacent combinators could cause an error.
v1.26.9
- Use an updated version of
node_preamblewhen compiling to JS.
v1.26.8
- Fixes an error when emitting source maps to stdout.
v1.26.7
- No user-visible changes.
v1.26.6
- Fix a bug where escape sequences were improperly recognized in
@elserules.
JavaScript API
-
Add
sass.NULL,sass.TRUE, andsass.FALSEconstants to match Node Sass's API. -
If a custom Node importer returns both
fileandcontents, don't attempt to read thefile. Instead, use thecontentsprovided by the importer, withfileas the canonical url.
v1.26.5
- No user-visible changes.
v1.26.3
- Fix a bug where
--watchmode could go into an infinite loop compiling CSS files to themselves.
v1.26.2
- More aggressively eliminate redundant selectors in the
selector.extend()andselector.replace()functions.
v1.26.1
- Fix a bug where nesting properties beneath a Sass-syntax custom property
(written as
#{--foo}: ...) would crash.
v1.26.0
-
Potentially breaking bug fix:
@userules whose URLs' basenames begin with_now correctly exclude that_from the rules' namespaces. -
Fix a bug where imported forwarded members weren't visible in mixins and functions that were defined before the
@import. -
Don't throw errors if the exact same member is loaded or forwarded from multiple modules at the same time.
v1.25.0
-
Add functions to the built-in "sass:math" module.
-
clamp($min, $number, $max). Clamps$numberin between$minand$max. -
hypot($numbers...). Given n numbers, outputs the length of the n-dimensional vector that has components equal to each of the inputs. -
Exponential. All inputs must be unitless.
log($number)orlog($number, $base). If no base is provided, performs a natural log.pow($base, $exponent)sqrt($number)
-
Trigonometric. The input must be an angle. If no unit is given, the input is assumed to be in
rad.cos($number)sin($number)tan($number)
-
Inverse trigonometric. The output is in
deg.acos($number). Input must be unitless.asin($number). Input must be unitless.atan($number). Input must be unitless.atan2($y, $x).$yand$xmust have compatible units or be unitless.
-
-
Add the variables
$piand$eto the built-in "sass:math" module.
JavaScript API
constructor.valuefields on value objects now match their Node Sass equivalents.
v1.24.5
- Highlight contextually-relevant sections of the stylesheet in error messages, rather than only highlighting the section where the error was detected.
v1.24.4
JavaScript API
- Fix a bug where source map generation would crash with an absolute source map path and a custom importer that returns string file contents.
v1.24.3
Command Line Interface
- Fix a bug where
sass --versionwould crash for certain executable distributions.
v1.24.2
JavaScript API
- Fix a bug introduced in the previous release that prevented custom importers in Node.js from loading import-only files.
v1.24.1
- Fix a bug where the wrong file could be loaded when the same URL is used by
both a
@userule and an@importrule.
v1.24.0
-
Add an optional
withclause to the@forwardrule. This works like the@userule'swithclause, except that@forward ... withcan declare variables as!defaultto allow downstream modules to reconfigure their values. -
Support configuring modules through
@importrules.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
- [ ] If you want to rebase/retry this PR, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.