chore(deps): update dependency sass to v1.104.0 - #28
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
2 times, most recently
from
September 22, 2025 22:33
cbed7ab to
6200633
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
September 24, 2025 02:48
6200633 to
1f9ee65
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
October 31, 2025 20:56
1f9ee65 to
da1ec2e
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
November 11, 2025 01:03
da1ec2e to
95e0d1c
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
November 18, 2025 06:45
95e0d1c to
922973f
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
November 20, 2025 00:30
922973f to
1190145
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
2 times, most recently
from
December 10, 2025 05:00
45fc145 to
55dc74c
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
December 11, 2025 04:43
55dc74c to
4de9859
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
2 times, most recently
from
December 19, 2025 22:03
5fd17cf to
f23d445
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
January 6, 2026 02:02
f23d445 to
2015190
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
January 22, 2026 01:31
2015190 to
2029a83
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
March 11, 2026 02:15
2029a83 to
1f0623b
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
April 3, 2026 02:00
1f0623b to
3ea1f74
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
May 22, 2026 01:37
3ea1f74 to
cc599c6
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
July 26, 2026 02:29
cc599c6 to
55eb8ff
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
August 12, 2026 01:36
55eb8ff to
03d4d01
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
2 times, most recently
from
August 21, 2026 01:30
7e1835b to
963d98f
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x-lockfile
branch
from
September 4, 2026 03:10
963d98f to
8120b1b
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.91.0→1.104.0Release Notes
sass/dart-sass (sass)
v1.104.0Compare Source
Potentially breaking compatibility fix: Colors now convert the special
values NaN and negative zero, as well as infinity and negative infinity for
polar-hue channels, to 0 as per the CSS spec.
The special value negative zero is now serialized as
-0instead of0forgreater compatibility when using it in CSS calculations.
v1.103.1Compare Source
v1.103.0Compare Source
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 of
lab(50% 0 0).v1.102.0Compare Source
draft of CSS Color 4.
v1.101.7Compare Source
v1.101.6Compare Source
v1.101.5Compare Source
v1.101.4Compare Source
Avoid emitting
rgb()orrgba()functions with non-percent decimalchannels. 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 usingtheir
meta.inspect()format rather than their CSS serialization format.v1.101.3Compare Source
v1.101.0Compare Source
supports resolving import-only variants of Sass files declared in the
exports,sass, andstylefields ofpackage.json. Previously, thesefiles were ignored even when loaded via
@import, so any code relying onloading module-system-only files this way may break.
v1.100.0Compare Source
Writing two compound selectors adjacent to one another without any whitespace
between them, such as
[class]a, is now deprecated. This was always an errorin CSS and Sass only supported it by mistake.
See the Sass website for
details.
v1.99.0Compare Source
Add support for parent selectors (
&) at the root of the document. These areemitted as-is in the CSS output, where they're interpreted as the scoping
root.
User-defined functions named
calcorclampare no longer forbidden. Ifsuch a function exists without a namespace in the current module, it will be
used instead of the built-in
calc()orclamp()function.User-defined functions whose names begin with
-and end with-expression,-url,-and,-or, or-notare no longer forbidden. These wereoriginally intended to match vendor prefixes, but in practice no vendor
prefixes for these functions ever existed in real browsers.
User-defined functions named
EXPRESSION,URL, andELEMENT, those thatbegin with
-and end with-ELEMENT, as well as the same names with somelowercase letters are now deprecated, These are names conflict with plain CSS
functions that have special syntax.
See the Sass website for details.
In a future release, calls to functions whose names begin with
-and endwith
-expressionand-urlwill no longer have special parsing. For now,these calls are deprecated if their behavior will change in the future.
See the Sass website for details.
Calls to functions whose names begin with
-and end with-progid:...aredeprecated.
See the Sass website for details.
v1.98.0Compare Source
Command-Line Interface
--watchmode.Dart API
const Logger.defaultLoggerfield. This provides a logger that emits tostandard error or the browser console, but automatically chooses whether to
use terminal colors.
JavaScript API
Fix a crash when manually constructing a
SassCalculationfor'calc'withan argument that can't be simplified.
Properly emit deprecation warnings as text rather than
StringBufferobjectswhen running in a browser.
Emit colored warnings and other messages on the console when running in a
browser.
v1.97.3Compare Source
could cause outer style rules to be omitted.
v1.97.2Compare Source
v1.97.1Compare Source
if()syntax where values would be evaluatedeven if their conditions didn't match.
v1.97.0Compare Source
display-p3-linearcolor space.v1.96.0Compare Source
zero denominator units) to be emitted to CSS. These are now emitted as
calc()expressions, which now support complex units in plain CSS.v1.95.1Compare Source
v1.95.0Compare Source
Add support for the CSS-style
if()function. In addition to supporting theplain CSS syntax, this also supports a
sass()query that takes a Sassexpression that evaluates to
trueorfalseat preprocessing time dependingon whether the Sass value is truthy. If there are no plain-CSS queries, the
function will return the first value whose query returns true during
preprocessing. For example,
if(sass(false): 1; sass(true): 2; else: 3)returns
2.The old Sass
if()syntax is now deprecated. Users are encouraged to migrateto the new CSS syntax.
if($condition, $if-true, $if-false)can be changed toif(sass($condition): $if-true; else: $if-false).See the Sass website for details.
Plain-CSS
if()functions are now considered "special numbers", meaning thatthey can be used in place of arguments to CSS color functions.
Plain-CSS
if()functions andattr()functions are now considered "specialvariable strings" (like
var()), meaning they can now be used in place ofmultiple arguments or syntax fragments in various CSS functions.
v1.94.3Compare Source
%expressions followed by whitespace.v1.94.2Compare Source
Command-Line Interface
--fatal-deprecation <version>no longer emits warnings aboutdeprecations that are obsolete.
Dart API
Deprecation.forVersionnow excludes obsolete deprecations from the set itreturns.
JS API
fatalDeprecationswhen aVersionispassed.
Node.js Embedded Host
async compilation.
v1.94.1Compare Source
v1.94.0Compare Source
Potentially breaking compatibility fix:
@functionrules whose namesbegin with
--are now parsed as unknown at-rules to support the plain CSS@functionrule. Within this rule, theresultproperty is parsed as rawCSS just like custom properties.
Potentially breaking compatibility fix:
@mixinrules whose names beginwith
--are now errors. These are not yet parsed as unknown at-rules becauseno browser currently supports CSS mixins.
v1.93.3Compare Source
v1.93.2Compare Source
JavaScript API
@sass/types.v1.93.1Compare Source
JavaScript API
@sass/types.v1.93.0Compare Source
@import, and the loaded file@uses a user-defined module as well as@includes a top-level mixin whichemits top-level declarations.
JavaScript API
@sass/typespackage which contains the type annotations used byboth the
sassandsass-embeddedpackage without any additional code ordependencies.
v1.92.1Compare Source
would not be passed as implicit configuration to a later imported, forwarded
module.
v1.92.0Compare Source
Breaking change: Emit declarations, childless at-rules, and comments in
the order they appear in the source even when they're interleaved with nested
rules. This obsoletes the
mixed-declsdeprecation.Breaking change: The function name
type()is now fully reserved for theplain CSS function. This means that
@functiondefinitions with the nametypewill produce errors, while function calls will be parsed as specialfunction strings.
Configuring private variables using
@use ... with,@forward ... with, andmeta.load-css(..., $with: ...)is now deprecated. Private variables werealways intended to be fully encapsulated within the module that defines them,
and this helps enforce that encapsulation.
Fix a bug where
@extendrules loaded through a mixture of@importand@userules could fail to apply correctly.Command-Line Interface
--watchmode, delete the source map when the associated source file isdeleted.
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.