Update dependency sass to v1.102.0#92
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
September 23, 2025 00:33
1094cdf to
32bdf60
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
September 24, 2025 03:34
32bdf60 to
115fded
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
September 25, 2025 18:28
115fded to
d364c13
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
October 21, 2025 17:49
d364c13 to
67e3f28
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
October 31, 2025 14:54
67e3f28 to
0c61873
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
November 11, 2025 03:26
0c61873 to
59f5721
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
November 18, 2025 08:40
59f5721 to
880af2f
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
November 20, 2025 00:53
880af2f to
d7604bc
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
December 8, 2025 19:13
d7604bc to
09401a8
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
December 8, 2025 21:50
09401a8 to
5291e68
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
December 10, 2025 03:43
5291e68 to
53ff373
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
December 20, 2025 15:17
a6294c5 to
033f047
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
December 31, 2025 17:41
033f047 to
09d0846
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
January 6, 2026 01:40
09d0846 to
328a486
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
January 22, 2026 00:30
328a486 to
90130ee
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
February 17, 2026 15:16
90130ee to
76bcd9f
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
March 11, 2026 00:07
76bcd9f to
2e153eb
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
April 3, 2026 01:36
2e153eb to
c5f0f5b
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
May 22, 2026 04:31
c5f0f5b to
646ab4d
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
June 1, 2026 21:38
646ab4d to
30080e3
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
June 12, 2026 01:46
30080e3 to
e8fe39a
Compare
renovate
Bot
force-pushed
the
renovate/sass-1.x
branch
from
July 12, 2026 11:34
e8fe39a to
ad6d286
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.94.2→1.102.0Release Notes
sass/dart-sass (sass)
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.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.