chore(deps): update dependency sass to v1.89.2 #17

Open
renovate wants to merge 1 commits from renovate/sass-1.x-lockfile into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
sass 1.62.1 -> 1.89.2 age confidence

⚠️ Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

sass/dart-sass (sass)

v1.89.2

Compare Source

Embedded Host
  • Fixed a compilation error caused by an outdated buf dependency.

v1.89.1

Compare Source

  • No user-visible changes.

v1.89.0

Compare Source

  • Allow the Node package importer to load files even when there are multiple
    potential resolutions, as long as those resolutions all point to the same
    file.

v1.88.0

Compare Source

  • Allow custom properties with empty values (such as --var:;).

  • Fix a bug when calculating source spans for interpolations.

Dart and JS APIs
  • Potentially breaking bug fix: Throw an error when passing a function or
    mixin object from one compilation to another.
Dart API
  • Deprecate passing a relative URL to compileString() and related functions.

v1.87.0

Compare Source

  • Potentially breaking bug fix: When a plain CSS file with a top-level
    nesting selector & is loaded into a nested Sass context via
    meta.load-css() or @import, Sass now emits plain CSS nesting rather than
    incorrectly combining it with the parent selector using a descendant
    combinator.

v1.86.3

Compare Source

  • Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with
    a .. segment.

v1.86.2

Compare Source

  • No user-visible changes.

v1.86.1

Compare Source

  • Improve the performance of file: URL case canonicalization on Windows and
    Mac OS.

v1.86.0

Compare Source

  • Add support for % as an expression in its own right. It will still be parsed
    as the modulo operator when between two other expressions, but in any other
    context it will be an expression whose value is the unquoted string %.

  • Consider attr() to be a special number function that can be used as a
    channel in color functions.

  • Deprecate user-defined functions named type() so that we can eventually
    support the new CSS type() function.

Dart API
  • Increase the minimum Dart SDK to 3.6.0.

v1.85.1

Compare Source

  • Fix a bug where global Sass functions whose names overlap with CSS math
    functions could incorrectly be treated as CSS math functions even though they
    used Sass-only features, causing compilation failures. For example,
    round(-$var / 2) previously threw an error but now works as intended.

v1.85.0

Compare Source

  • No longer fully trim redundant selectors generated by @extend. This caused
    unacceptable performance issues for certain heavy users of @extend. We'll
    try to find a more performant way to accomplish it in the future.

v1.84.0

Compare Source

  • Allow newlines in whitespace in the indented syntax.

  • Potentially breaking bug fix: Selectors with unmatched brackets now always
    produce a parser error. Previously, some edge cases like [foo#{"]:is(bar"}) {a: b} would compile without error, but this was an unintentional bug.

  • Fix a bug in which various Color Level 4 functions weren't allowed in plain
    CSS.

  • Fix the error message for @extend without a selector and possibly other
    parsing edge-cases in contexts that allow interpolation.

Embedded Host
  • Fixed the implementation of the SassBoolean type to adhere to the spec,
    now using a class instead of an interface.

v1.83.4

Compare Source

  • No user-visible changes.

v1.83.3

Compare Source

  • No user-visible changes.

v1.83.2

Compare Source

  • Properly display deprecation IDs for the JS Sass API.

  • Don't display deprecation IDs for user-defined deprecations.

v1.83.1

Compare Source

  • Fix a bug where --quiet-deps would get deactivated for @content blocks,
    even when those blocks were entirely contained within dependencies.

  • Include deprecation IDs in deprecation warnings to make it easier to determine
    what to pass to --silence-deprecation or --fatal-deprecation.

v1.83.0

Compare Source

  • Allow trailing commas in all argument and parameter lists.

v1.82.0

Compare Source

Command-Line Interface
  • Improve --watch mode reliability when making multiple changes at once, such
    as checking out a different Git branch.

  • Parse the calc-size() function as a calculation now that it's supported in
    some browsers.

Dart API
  • Add a SassCalculation.calcSize() function.

v1.81.1

Compare Source

  • No user-visible changes.

v1.81.0

Compare Source

  • Fix a few cases where deprecation warnings weren't being emitted for global
    built-in functions whose names overlap with CSS calculations.

  • Add support for the CSS round() calculation with a single argument, as long
    as that argument might be a unitless number.

v1.80.7

Compare Source

Embedded Host
  • Don't treat 0 as undefined for the green and blue channels in the
    LegacyColor constructor.

v1.80.6

Compare Source

Command-Line Interface
  • Make @parcel/watcher an optional dependency so this can still be installed
    on operating systems where it's unavailable.

v1.80.5

Compare Source

Embedded Host
  • Don't produce phantom @import deprecations when using an importer with the
    legacy API.

v1.80.4

Compare Source

  • No user-visible changes.

v1.80.3

Compare Source

  • Fix a bug where @import url("...") would crash in plain CSS files.

  • Improve consistency of how warnings are emitted by different parts of the
    compiler. This should result in minimal user-visible changes, but different
    types of warnings should now respond more reliably to flags like --quiet,
    --verbose, and --silence-deprecation.

v1.80.2

Compare Source

  • Fix a bug where deprecation warnings were incorrectly emitted for the
    plain-CSS invert() function.

v1.80.1

Compare Source

  • Fix a bug where repeated deprecation warnings were not automatically limited.

v1.80.0

Compare Source

  • @import is now officially deprecated, as are global built-in functions that
    are available within built-in modules. See the Sass blog post for more
    details on the deprecation process.
Embedded Host
  • Fix an error that would sometimes occur when deprecation warnings were
    emitted when using a custom importer with the legacy API.

v1.79.6

Compare Source

  • Fix a bug where Sass would add an extra */ after loud comments with
    whitespace after an explicit */ in the indented syntax.

  • Potentially breaking bug fix: Adding text after an explicit */ in the
    indented syntax is now an error, rather than silently generating invalid CSS.

Embedded Host
  • Properly export the SassBoolean type.

v1.79.5

Compare Source

  • Changes to how selector.unify() and @extend combine selectors:

    • The relative order of pseudo-classes (like :hover) and pseudo-elements
      (like ::before) within each original selector is now preserved when
      they're combined.

    • Pseudo selectors are now consistently placed at the end of the combined
      selector, regardless of which selector they came from. Previously, this
      reordering only applied to pseudo-selectors in the second selector.

  • Tweak the color transformation matrices for OKLab and OKLCH to match the
    newer, more accurate values in the CSS spec.

  • Fix a slight inaccuracy case when converting to srgb-linear and
    display-p3.

  • Potentially breaking bug fix: math.unit() now wraps multiple denominator
    units in parentheses. For example, px/(em*em) instead of px/em*em.

Command-Line Interface
  • Use @parcel/watcher to watch the filesystem when running from JavaScript and
    not using --poll. This should mitigate more frequent failures users have
    been seeing since version 4.0.0 of Chokidar, our previous watching tool, was
    released.
JS API
  • Fix SassColor.interpolate() to allow an undefined options parameter, as
    the types indicate.
Embedded Sass
  • Properly pass missing color channel values to and from custom functions.

v1.79.4

Compare Source

JS API
  • Fix a bug where passing green or blue to color.change() for legacy
    colors would fail.

v1.79.3

Compare Source

  • Update the $channel parameter in the suggested replacement for
    color.red(), color.green(), color.blue(), color.hue(),
    color.saturation(), color.lightness(), color.whiteness(), and
    color.blackness() to use a quoted string.

v1.79.2

Compare Source

  • Add a $space parameter to the suggested replacement for color.red(),
    color.green(), color.blue(), color.hue(), color.saturation(),
    color.lightness(), color.whiteness(), and color.blackness().

  • Update deprecation warnings for the legacy JS API to include a link to
    relevant documentation.

v1.79.1

Compare Source

  • No user-visible changes.

v1.79.0

Compare Source

  • Breaking change: Passing a number with unit % to the $alpha parameter
    of color.change(), color.adjust(), change-color(), and adjust-color()
    is now interpreted as a percentage, instead of ignoring the unit. For example,
    color.change(red, $alpha: 50%) now returns rgb(255 0 0 / 0.5).

  • Potentially breaking compatibility fix: Sass no longer rounds RGB channels
    to the nearest integer. This means that, for example, rgb(0 0 1) != rgb(0 0 0.6). This matches the latest version of the CSS spec and browser behavior.

  • Potentially breaking compatibility fix: Passing large positive or negative
    values to color.adjust() can now cause a color's channels to go outside that
    color's gamut. In most cases this will currently be clipped by the browser and
    end up showing the same color as before, but once browsers implement gamut
    mapping it may produce a different result.

  • Add support for CSS Color Level 4 color spaces. Each color value now tracks
    its color space along with the values of each channel in that color space.
    There are two general principles to keep in mind when dealing with new color
    spaces:

    1. With the exception of legacy color spaces (rgb, hsl, and hwb), colors
      will always be emitted in the color space they were defined in unless
      they're explicitly converted.

    2. The color.to-space() function is the only way to convert a color to
      another color space. Some built-in functions may do operations in a
      different color space, but they'll always convert back to the original space
      afterwards.

  • rgb colors can now have non-integer channels and channels outside the normal
    gamut of 0-255. These colors are always emitted using the rgb() syntax so
    that modern browsers that are being displayed on wide-gamut devices can
    display the most accurate color possible.

  • Add support for all the new color syntax defined in Color Level 4, including:

    • oklab(), oklch(), lab(), and lch() functions;
    • a top-level hwb() function that matches the space-separated CSS syntax;
    • and a color() function that supports the srgb, srgb-linear,
      display-p3, a98-rgb, prophoto-rgb, rec2020, xyz, xyz-d50, and
      xyz-d65 color spaces.
  • Add new functions for working with color spaces:

    • color.to-space($color, $space) converts $color to the given $space. In
      most cases this conversion is lossless—the color may end up out-of-gamut for
      the destination color space, but browsers will generally display it as best
      they can regardless. However, the hsl and hwb spaces can't represent
      out-of-gamut colors and so will be clamped.

    • color.channel($color, $channel, $space: null) returns the value of the
      given $channel in $color, after converting it to $space if necessary.
      It should be used instead of the old channel-specific functions such as
      color.red() and color.hue().

    • color.same($color1, $color2) returns whether two colors represent the same
      color even across color spaces. It differs from $color1 == $color2 because
      == never consider colors in different (non-legacy) spaces as equal.

    • color.is-in-gamut($color, $space: null) returns whether $color is
      in-gamut for its color space (or $space if it's passed).

    • color.to-gamut($color, $space: null) returns $color constrained to its
      space's gamut (or to $space's gamut, if passed). This is generally not
      recommended since even older browsers will display out-of-gamut colors as
      best they can, but it may be necessary in some cases.

    • color.space($color): Returns the name of $color's color space.

    • color.is-legacy($color): Returns whether $color is in a legacy color
      space (rgb, hsl, or hwb).

    • color.is-powerless($color, $channel, $space: null): Returns whether the
      given $channel of $color is powerless in $space (or its own color
      space). A channel is "powerless" if its value doesn't affect the way the
      color is displayed, such as hue for a color with 0 chroma.

    • color.is-missing($color, $channel): Returns whether $channel's value is
      missing in $color. Missing channels can be explicitly specified using the
      special value none and can appear automatically when color.to-space()
      returns a color with a powerless channel. Missing channels are usually
      treated as 0, except when interpolating between two colors and in
      color.mix() where they're treated as the same value as the other color.

  • Update existing functions to support color spaces:

    • hsl() and color.hwb() no longer forbid out-of-bounds values. Instead,
      they follow the CSS spec by clamping them to within the allowed range.

    • color.change(), color.adjust(), and color.scale() now support all
      channels of all color spaces. However, if you want to modify a channel
      that's not in $color's own color space, you have to explicitly specify the
      space with the $space parameter. (For backwards-compatibility, this
      doesn't apply to legacy channels of legacy colors—for example, you can still
      adjust an rgb color's saturation without passing $space: hsl).

    • color.mix() and color.invert() now support the standard CSS algorithm
      for interpolating between two colors (the same one that's used for gradients
      and animations). To use this, pass the color space to use for interpolation
      to the $method parameter. For polar color spaces like hsl and oklch,
      this parameter also allows you to specify how hue interpolation is handled.

    • color.complement() now supports a $space parameter that indicates which
      color space should be used to take the complement.

    • color.grayscale() now operates in the oklch space for non-legacy colors.

    • color.ie-hex-str() now automatically converts its color to the rgb space
      and gamut-maps it so that it can continue to take colors from any color
      space.

  • The following functions are now deprecated, and uses should be replaced with
    the new color-space-aware functions defined above:

    • The color.red(), color.green(), color.blue(), color.hue(),
      color.saturation(), color.lightness(), color.whiteness(), and
      color.blackness() functions, as well as their global counterparts, should
      be replaced with calls to color.channel().

    • The global adjust-hue(), saturate(), desaturate(), lighten(),
      darken(), transaprentize(), fade-out(), opacify(), and fade-in()
      functions should be replaced by color.adjust() or color.scale().

  • Add a global-builtin future deprecation, which can be opted-into with the
    --future-deprecation flag or the futureDeprecations option in the JS or
    Dart API. This emits warnings when any global built-in functions that are
    now available in sass: modules are called. It will become active by default
    in an upcoming release alongside the @import deprecation.

Dart API
  • Added a ColorSpace class which represents the various color spaces defined
    in the CSS spec.

  • Added SassColor.space which returns a color's color space.

  • Added SassColor.channels and .channelsOrNull which returns a list
    of channel values, with missing channels converted to 0 or exposed as null,
    respectively.

  • Added SassColor.isLegacy, .isInGamut, .channel(), .isChannelMissing(),
    .isChannelPowerless(), .toSpace(), .toGamut(), .changeChannels(), and
    .interpolate() which do the same thing as the Sass functions of the
    corresponding names.

  • SassColor.rgb() now allows out-of-bounds and non-integer arguments.

  • SassColor.hsl() and .hwb() now allow out-of-bounds arguments.

  • Added SassColor.hwb(), .srgb(), .srgbLinear(), .displayP3(),
    .a98Rgb(), .prophotoRgb(), .rec2020(), .xyzD50(), .xyzD65(),
    .lab(), .lch(), .oklab(), .oklch(), and .forSpace() constructors.

  • Deprecated SassColor.red, .green, .blue, .hue, .saturation,
    .lightness, .whiteness, and .blackness in favor of
    SassColor.channel().

  • Deprecated SassColor.changeRgb(), .changeHsl(), and .changeHwb() in
    favor of SassColor.changeChannels().

  • Added SassNumber.convertValueToUnit() as a shorthand for
    SassNumber.convertValue() with a single numerator.

  • Added InterpolationMethod and HueInterpolationMethod which collectively
    represent the method to use to interpolate two colors.

JS API
  • While the legacy API has been deprecated since we released the modern API, we
    now emit warnings when the legacy API is used to make sure users are aware
    that it will be removed in Dart Sass 2.0.0. In the meantime, you can silence
    these warnings by passing legacy-js-api in silenceDeprecations when using
    the legacy API.

  • Modify SassColor to accept a new space option, with support for all the
    new color spaces defined in Color Level 4.

  • Add SassColor.space which returns a color's color space.

  • Add SassColor.channels and .channelsOrNull which returns a list of channel
    values, with missing channels converted to 0 or exposed as null, respectively.

  • Add SassColor.isLegacy, .isInGamut(), .channel(), .isChannelMissing(),
    .isChannelPowerless(), .toSpace(), .toGamut(), .change(), and
    .interpolate() which do the same thing as the Sass functions of the
    corresponding names.

  • Deprecate SassColor.red, .green, .blue, .hue, .saturation,
    .lightness, .whiteness, and .blackness in favor of
    SassColor.channel().

Embedded Sass
  • Add Color SassScript value, with support for all the new color spaces
    defined in Color Level 4.

  • Remove RgbColor, HslColor and HwbColor SassScript values.

v1.78.0

Compare Source

  • The meta.feature-exists function is now deprecated. This deprecation is
    named feature-exists.

  • Fix a crash when using @at-root without any queries or children in the
    indented syntax.

JS API
  • Backport the deprecation options (fatalDeprecations, futureDeprecations,
    and silenceDeprecations) to the legacy JS API. The legacy JS API is itself
    deprecated, and you should move off of it if possible, but this will allow
    users of bundlers and other tools that are still using the legacy API to
    still control deprecation warnings.

  • Fix a bug where accessing SourceSpan.url would crash when a relative URL was
    passed to the Sass API.

Embedded Sass
  • Explicitly expose a sass executable from the sass-embedded npm package.
    This was intended to be included in 1.63.0, but due to the way
    platform-specific dependency executables are installed it did not work as
    intended. Now users can run npx sass for local installs or just sass when
    sass-embedded is installed globally.

  • Add linux-riscv64, linux-musl-riscv64, and android-riscv64 support for the
    sass-embedded npm package.

  • Fix an edge case where the Dart VM could hang when shutting down when requests
    were in flight.

  • Fix a race condition where the embedded host could fail to shut down if it was
    closed around the same time a new compilation was started.

  • Fix a bug where parse-time deprecation warnings could not be controlled by
    the deprecation options in some circumstances.

v1.77.8

Compare Source

  • No user-visible changes.

v1.77.7

Compare Source

  • Declarations that appear after nested rules are deprecated, because the
    semantics Sass has historically used are different from the semantics
    specified by CSS. In the future, Sass will adopt the standard CSS semantics.

    See the Sass website for details.

  • Potentially breaking bug fix: // in certain places such as unknown
    at-rule values was being preserved in the CSS output, leading to potentially
    invalid CSS. It's now properly parsed as a silent comment and omitted from the
    CSS output.

v1.77.6

Compare Source

  • Fix a few cases where comments and occasionally even whitespace wasn't allowed
    between the end of Sass statements and the following semicolon.

v1.77.5

Compare Source

  • Fully trim redundant selectors generated by @extend.

v1.77.4

Compare Source

Embedded Sass
  • Support passing Version input for fatalDeprecations as string over
    embedded protocol.

  • Fix a bug in the JS Embedded Host where Version could be incorrectly accepted
    as input for silenceDeprecations and futureDeprecations in pure JS.

v1.77.3

Compare Source

Dart API
  • Deprecation.duplicateVariableFlags has been deprecated and replaced with
    Deprecation.duplicateVarFlags to make it consistent with the
    duplicate-var-flags name used on the command line and in the JS API.

v1.77.2

Compare Source

  • Don't emit deprecation warnings for functions and mixins beginning with __.

  • Allow user-defined functions whose names begin with _ and otherwise look
    like vendor-prefixed functions with special CSS syntax.

Command-Line Interface
  • Properly handle the --silence-deprecation flag.

  • Handle the --fatal-deprecation and --future-deprecation flags for
    --interactive mode.

v1.77.1

Compare Source

  • Fix a crash that could come up with importers in certain contexts.

v1.77.0

Compare Source

  • Don't throw errors for at-rules in keyframe blocks.

v1.76.0

Compare Source

  • Throw errors for misplaced statements in keyframe blocks.

  • Mixins and functions whose names begin with -- are now deprecated for
    forwards-compatibility with the in-progress CSS functions and mixins spec.
    This deprecation is named css-function-mixin.

v1.75.0

Compare Source

  • Fix a bug in which stylesheet canonicalization could be cached incorrectly
    when custom importers or the Node.js package importer made decisions based on
    the URL of the containing stylesheet.
JS API
  • Allow importer to be passed without url in StringOptionsWithImporter.

v1.74.1

Compare Source

  • No user-visible changes.

v1.72.0

Compare Source

  • Support adjacent /s without whitespace in between when parsing plain CSS
    expressions.

  • Allow the Node.js pkg: importer to load Sass stylesheets for package.json
    exports field entries without extensions.

  • When printing suggestions for variables, use underscores in variable names
    when the original usage used underscores.

JavaScript API
  • Properly resolve pkg: imports with the Node.js package importer when
    arguments are passed to the JavaScript process.

v1.71.1

Compare Source

Command-Line Interface
  • Ship the musl Linux release with the proper Dart executable.
JavaScript API
  • Export the NodePackageImporter class in ESM mode.

  • Allow NodePackageImporter to locate a default directory even when the
    entrypoint is an ESM module.

Dart API
  • Make passing a null argument to NodePackageImporter() a static error rather
    than just a runtime error.
Embedded Sass
  • In the JS Embedded Host, properly install the musl Linux embedded compiler
    when running on musl Linux.

v1.71.0

Compare Source

For more information about pkg: importers, see the
announcement
on the Sass blog.

Command-Line Interface
  • Add a --pkg-importer flag to enable built-in pkg: importers. Currently
    this only supports the Node.js package resolution algorithm, via
    --pkg-importer=node. For example, @use "pkg:bootstrap" will load
    node_modules/bootstrap/scss/bootstrap.scss.
JavaScript API
  • Add a NodePackageImporter importer that can be passed to the importers
    option. This loads files using the pkg: URL scheme according to the Node.js
    package resolution algorithm. For example, @use "pkg:bootstrap" will load
    node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single
    optional argument, which indicates the base directory to use when locating
    node_modules directories. It defaults to
    path.dirname(require.main.filename).
Dart API
  • Add a NodePackageImporter importer that can be passed to the importers
    option. This loads files using the pkg: URL scheme according to the Node.js
    package resolution algorithm. For example, @use "pkg:bootstrap" will load
    node_modules/bootstrap/scss/bootstrap.scss. The constructor takes a single
    argument, which indicates the base directory to use when locating
    node_modules directories.

v1.70.0

Compare Source

JavaScript API
  • Add a sass.initCompiler() function that returns a sass.Compiler object
    which supports compile() and compileString() methods with the same API as
    the global Sass object. On the Node.js embedded host, each sass.Compiler
    object uses a single long-lived subprocess, making compiling multiple
    stylesheets much more efficient.

  • Add a sass.initAsyncCompiler() function that returns a sass.AsyncCompiler
    object which supports compileAsync() and compileStringAsync() methods with
    the same API as the global Sass object. On the Node.js embedded host, each
    sass.AsynCompiler object uses a single long-lived subprocess, making
    compiling multiple stylesheets much more efficient.

Embedded Sass
  • Support the CompileRequest.silent field. This allows compilations with no
    logging to avoid unnecessary request/response cycles.

  • The Dart Sass embedded compiler now reports its name as "dart-sass" rather
    than "Dart Sass", to match the JS API's info field.

v1.69.7

Compare Source

Embedded Sass
  • In the JS Embedded Host, properly install the x64 Dart Sass executable on
    ARM64 Windows.

v1.69.6

Compare Source

  • Produce better output for numbers with complex units in meta.inspect() and
    debugging messages.

  • Escape U+007F DELETE when serializing strings.

  • When generating CSS error messages to display in-browser, escape all code
    points that aren't in the US-ASCII region. Previously only code points U+0100
    LATIN CAPITAL LETTER A WITH MACRON were escaped.

  • Provide official releases for musl LibC and for Android.

  • Don't crash when running meta.apply() in asynchronous mode.

JS API
  • Fix a bug where certain exceptions could produce SourceSpans that didn't
    follow the documented SourceSpan API.

v1.69.5

Compare Source

JS API
  • Compatibility with Node.js 21.0.0.

v1.69.4

Compare Source

  • No user-visible changes.

v1.69.3

Compare Source

Embedded Sass
  • Fix TypeScript type locations in package.json.

v1.69.2

Compare Source

JS API
  • Fix a bug where Sass crashed when running in the browser if there was a global
    variable named process.

v1.69.1

Compare Source

  • No user-visible changes.

v1.69.0

Compare Source

  • Add a meta.get-mixin() function that returns a mixin as a first-class Sass
    value.

  • Add a meta.apply() mixin that includes a mixin value.

  • Add a meta.module-mixins() function which returns a map from mixin names in
    a module to the first-class mixins that belong to those names.

  • Add a meta.accepts-content() function which returns whether or not a mixin
    value can take a content block.

  • Add support for the relative color syntax from CSS Color 5. This syntax
    cannot be used to create Sass color values. It is always emitted as-is in the
    CSS output.

Dart API
  • Deprecate Deprecation.calcInterp since it was never actually emitted as a
    deprecation.
Embedded Sass
  • Fix a rare race condition where the embedded compiler could freeze when a
    protocol error was immediately followed by another request.

v1.68.0

Compare Source

  • Fix the source spans associated with the abs-percent deprecation.
JS API
  • Non-filesystem importers can now set the nonCanonicalScheme field, which
    declares that one or more URL schemes (without :) will never be used for
    URLs returned by the canonicalize() method.

  • Add a containingUrl field to the canonicalize() and findFileUrl()
    methods of importers, which is set to the canonical URL of the stylesheet that
    contains the current load. For filesystem importers, this is always set; for
    other importers, it's set only if the current load has no URL scheme, or if
    its URL scheme is declared as non-canonical by the importer.

Dart API
  • Add AsyncImporter.isNonCanonicalScheme, which importers (async or sync) can
    use to indicate that a certain URL scheme will never be used for URLs returned
    by the canonicalize() method.

  • Add AsyncImporter.containingUrl, which is set during calls to the
    canonicalize() method to the canonical URL of the stylesheet that contains
    the current load. This is set only if the current load has no URL scheme, or
    if its URL scheme is declared as non-canonical by the importer.

Embedded Sass
  • The CalculationValue.interpolation field is deprecated and will be removed
    in a future version. It will no longer be set by the compiler, and if the host
    sets it it will be treated as equivalent to CalculationValue.string except
    that "(" and ")" will be added to the beginning and end of the string
    values.

  • Properly include TypeScript types in the sass-embedded package.

v1.67.0

Compare Source

  • All functions defined in CSS Values and Units 4 are now once again parsed as
    calculation objects: round(), mod(), rem(), sin(), cos(), tan(),
    asin(), acos(), atan(), atan2(), pow(), sqrt(), hypot(),
    log(), exp(), abs(), and sign().

    Unlike in 1.65.0, function calls are not locked into being parsed as
    calculations or plain Sass functions at parse-time. This means that
    user-defined functions will take precedence over CSS calculations of the same
    name. Although the function names calc() and clamp() are still forbidden,
    users may continue to freely define functions whose names overlap with other
    CSS calculations (including abs(), min(), max(), and round() whose
    names overlap with global Sass functions).

  • Breaking change: As a consequence of the change in calculation parsing
    described above, calculation functions containing interpolation are now parsed
    more strictly than before. However, almost all interpolations that would
    have produced valid CSS will continue to work. The only exception is
    #{$variable}% which is not valid in Sass and is no longer valid in
    calculations. Instead of this, either use $variable directly and ensure it
    already has the % unit, or write ($variable * 1%).

  • Potentially breaking bug fix: The importer used to load a given file is no
    longer used to load absolute URLs that appear in that file. This was
    unintented behavior that contradicted the Sass specification. Absolute URLs
    will now correctly be loaded only from the global importer list. This applies
    to the modern JS API, the Dart API, and the embedded protocol.

Embedded Sass
  • Substantially improve the embedded compiler's performance when compiling many
    files or files that require many importer or function call round-trips with
    the embedded host.

v1.66.1

Compare Source

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.

v1.66.0

Compare Source

  • 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.

v1.65.1

Compare Source

  • Update abs-percent deprecatedIn version to 1.65.0.

v1.65.0

Compare Source

  • 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(), and sign().

  • Deprecate explicitly passing the % unit to the global abs() function. In
    future releases, this will emit a CSS abs() function to be resolved by the
    browser. This deprecation is named abs-percent.

v1.64.2

Compare Source

  • No user-visible changes.

v1.64.1

Compare Source

Embedded Sass
  • Fix a bug where a valid SassCalculation.clamp() with less than 3 arguments
    would throw an error.

v1.64.0

Compare Source

  • 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 a
    SassCalculation 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 functions render or renderSync and those relative imports were
    loaded multiple times across different files.

v1.63.6

Compare Source

JavaScript API
  • Fix import sass from 'sass' again after it was broken in the last release.
Embedded Sass
  • Fix the exports declaration in package.json.

v1.63.5

Compare Source

JavaScript API
  • Fix a bug where loading the package through both CJS require() and ESM
    import 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.

v1.63.4

Compare Source

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 use import * 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, and types 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.

v1.63.3

Compare Source

JavaScript API
  • Fix loading Sass as an ECMAScript module on Node.js.

v1.63.2

Compare Source

  • No user-visible changes.

v1.63.1

Compare Source

  • No user-visible changes.

v1.63.0

Compare Source

JavaScript API
  • Dart Sass's JS API now supports running in the browser. Further details and
    instructions for use are in the README.
Embedded Sass
  • The Dart Sass embedded compiler is now included as part of the primary Dart
    Sass distribution, rather than a separate executable. To use the embedded
    compiler, just run sass --embedded from any Sass executable (other than the
    pure JS executable).

    The Node.js embedded host will still be distributed as the sass-embedded
    package on npm. The only change is that it will now provide direct access to a
    sass executable with the same CLI as the sass package.

  • The Dart Sass embedded compiler now uses version 2.0.0 of the Sass embedded
    protocol. See the spec for a full description of the
    protocol, and the changelog for a summary of
    changes since version 1.2.0.

  • The Dart Sass embedded compiler now runs multiple simultaneous compilations in
    parallel, rather than serially.


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, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Confidence | |---|---|---|---| | [sass](https://github.com/sass/dart-sass) | [`1.62.1` -> `1.89.2`](https://renovatebot.com/diffs/npm/sass/1.62.1/1.89.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.89.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.62.1/1.89.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.89.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1892) [Compare Source](https://github.com/sass/dart-sass/compare/394fbe53652718acc8f9e946c4bf94cd28cd8ce4...1250380bc56d1feecc5fead0752731a313b97e2e) ##### Embedded Host - Fixed a compilation error caused by an outdated `buf` dependency. ### [`v1.89.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1891) [Compare Source](https://github.com/sass/dart-sass/compare/4e9e2062f691359a8da582eb4e600ad5dc931c93...394fbe53652718acc8f9e946c4bf94cd28cd8ce4) - No user-visible changes. ### [`v1.89.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1890) [Compare Source](https://github.com/sass/dart-sass/compare/c6b21630e5b28eb038001f8739a3db2046b393a0...4e9e2062f691359a8da582eb4e600ad5dc931c93) - Allow the Node package importer to load files even when there are multiple potential resolutions, as long as those resolutions all point to the same file. ### [`v1.88.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1880) [Compare Source](https://github.com/sass/dart-sass/compare/3b8afa2b3e97174499af031d2cfceb47fb84b42a...c6b21630e5b28eb038001f8739a3db2046b393a0) - Allow custom properties with empty values (such as `--var:;`). - Fix a bug when calculating source spans for interpolations. ##### Dart and JS APIs - **Potentially breaking bug fix:** Throw an error when passing a function or mixin object from one compilation to another. ##### Dart API - Deprecate passing a relative URL to `compileString()` and related functions. ### [`v1.87.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1870) [Compare Source](https://github.com/sass/dart-sass/compare/52221c0e1587c745d073eac961bc665dcbb6075f...3b8afa2b3e97174499af031d2cfceb47fb84b42a) - **Potentially breaking bug fix:** When a plain CSS file with a top-level nesting selector `&` is loaded into a nested Sass context via `meta.load-css()` or `@import`, Sass now emits plain CSS nesting rather than incorrectly combining it with the parent selector using a descendant combinator. ### [`v1.86.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1863) [Compare Source](https://github.com/sass/dart-sass/compare/f6fea3a25cf69fbc676140db4c4cd31e6eaf6018...52221c0e1587c745d073eac961bc665dcbb6075f) - Fix a bug introduced in 1.86.1 where Sass fails to resolve paths starting with a `..` segment. ### [`v1.86.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1862) [Compare Source](https://github.com/sass/dart-sass/compare/cee843b89ecf1b8bebf37bc40c8da84ab14eca6b...f6fea3a25cf69fbc676140db4c4cd31e6eaf6018) - No user-visible changes. ### [`v1.86.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1861) [Compare Source](https://github.com/sass/dart-sass/compare/c6706e719cdaa5c5497b54bdb0a7fbf8ebb0b7ed...cee843b89ecf1b8bebf37bc40c8da84ab14eca6b) - Improve the performance of `file:` URL case canonicalization on Windows and Mac OS. ### [`v1.86.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1860) [Compare Source](https://github.com/sass/dart-sass/compare/87ef19a7e495c6618ffc87ea650688bfeed617a4...c6706e719cdaa5c5497b54bdb0a7fbf8ebb0b7ed) - Add support for `%` as an expression in its own right. It will still be parsed as the modulo operator when between two other expressions, but in any other context it will be an expression whose value is the unquoted string `%`. - Consider `attr()` to be a special number function that can be used as a channel in color functions. - Deprecate user-defined functions named `type()` so that we can eventually support the new CSS `type()` function. ##### Dart API - Increase the minimum Dart SDK to 3.6.0. ### [`v1.85.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1851) [Compare Source](https://github.com/sass/dart-sass/compare/f32ec4ff75baf650fe9c2c038687d5eddcc216f8...87ef19a7e495c6618ffc87ea650688bfeed617a4) - Fix a bug where global Sass functions whose names overlap with CSS math functions could incorrectly be treated as CSS math functions even though they used Sass-only features, causing compilation failures. For example, `round(-$var / 2)` previously threw an error but now works as intended. ### [`v1.85.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1850) [Compare Source](https://github.com/sass/dart-sass/compare/ae4b757e5889166e7a716d8015e8b0baf6540fb9...f32ec4ff75baf650fe9c2c038687d5eddcc216f8) - No longer fully trim redundant selectors generated by `@extend`. This caused unacceptable performance issues for certain heavy users of `@extend`. We'll try to find a more performant way to accomplish it in the future. ### [`v1.84.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1840) [Compare Source](https://github.com/sass/dart-sass/compare/89a5394639688ad5ad5677fb6258f39fd74f95b9...ae4b757e5889166e7a716d8015e8b0baf6540fb9) - Allow newlines in whitespace in the indented syntax. - **Potentially breaking bug fix**: Selectors with unmatched brackets now always produce a parser error. Previously, some edge cases like `[foo#{"]:is(bar"}) {a: b}` would compile without error, but this was an unintentional bug. - Fix a bug in which various Color Level 4 functions weren't allowed in plain CSS. - Fix the error message for `@extend` without a selector and possibly other parsing edge-cases in contexts that allow interpolation. ##### Embedded Host - Fixed the implementation of the `SassBoolean` type to adhere to the spec, now using a class instead of an interface. ### [`v1.83.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1834) [Compare Source](https://github.com/sass/dart-sass/compare/46686eddcaee5a85f43bc300ee8650f8ac198f6c...89a5394639688ad5ad5677fb6258f39fd74f95b9) - No user-visible changes. ### [`v1.83.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1833) [Compare Source](https://github.com/sass/dart-sass/compare/ddb14b2c39e297167f418abfd63fd216463ad72d...46686eddcaee5a85f43bc300ee8650f8ac198f6c) - No user-visible changes. ### [`v1.83.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1832) [Compare Source](https://github.com/sass/dart-sass/compare/3d3e925c9f44b25ead011538edd89e1665ae6392...ddb14b2c39e297167f418abfd63fd216463ad72d) - Properly display deprecation IDs for the JS Sass API. - Don't display deprecation IDs for user-defined deprecations. ### [`v1.83.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1831) [Compare Source](https://github.com/sass/dart-sass/compare/f38dbb00db942592c64a259bdfd9f961316597f6...3d3e925c9f44b25ead011538edd89e1665ae6392) - Fix a bug where `--quiet-deps` would get deactivated for `@content` blocks, even when those blocks were entirely contained within dependencies. - Include deprecation IDs in deprecation warnings to make it easier to determine what to pass to `--silence-deprecation` or `--fatal-deprecation`. ### [`v1.83.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1830) [Compare Source](https://github.com/sass/dart-sass/compare/5740eb541faaf97c70a451924809b9f212f2920e...f38dbb00db942592c64a259bdfd9f961316597f6) - Allow trailing commas in *all* argument and parameter lists. ### [`v1.82.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1820) [Compare Source](https://github.com/sass/dart-sass/compare/516364466686f5e199bc84144b82da55bf5ed911...5740eb541faaf97c70a451924809b9f212f2920e) ##### Command-Line Interface - Improve `--watch` mode reliability when making multiple changes at once, such as checking out a different Git branch. - Parse the `calc-size()` function as a calculation now that it's supported in some browsers. ##### Dart API - Add a `SassCalculation.calcSize()` function. ### [`v1.81.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1811) [Compare Source](https://github.com/sass/dart-sass/compare/57a6853e4301148754dc61b201aec166667055b8...516364466686f5e199bc84144b82da55bf5ed911) - No user-visible changes. ### [`v1.81.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1810) [Compare Source](https://github.com/sass/dart-sass/compare/d1fefb6239b18cb27c8ec5bd88f043c5062f1b94...57a6853e4301148754dc61b201aec166667055b8) - Fix a few cases where deprecation warnings weren't being emitted for global built-in functions whose names overlap with CSS calculations. - Add support for the CSS `round()` calculation with a single argument, as long as that argument might be a unitless number. ### [`v1.80.7`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1807) [Compare Source](https://github.com/sass/dart-sass/compare/39d372615442ded14e6c17ef5440372bc647d70f...d1fefb6239b18cb27c8ec5bd88f043c5062f1b94) ##### Embedded Host - Don't treat `0` as `undefined` for the `green` and `blue` channels in the `LegacyColor` constructor. ### [`v1.80.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1806) [Compare Source](https://github.com/sass/dart-sass/compare/d14ea754e96861c9d7cb7f2b4bc75a40364eaf31...39d372615442ded14e6c17ef5440372bc647d70f) ##### Command-Line Interface - Make `@parcel/watcher` an optional dependency so this can still be installed on operating systems where it's unavailable. ### [`v1.80.5`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1805) [Compare Source](https://github.com/sass/dart-sass/compare/c907bcb57281b51efbd7b0957ac8a4d0bead8818...d14ea754e96861c9d7cb7f2b4bc75a40364eaf31) ##### Embedded Host - Don't produce phantom `@import` deprecations when using an importer with the legacy API. ### [`v1.80.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1804) [Compare Source](https://github.com/sass/dart-sass/compare/76cfd6b331be205497935a94e922b2eac26b5394...c907bcb57281b51efbd7b0957ac8a4d0bead8818) - No user-visible changes. ### [`v1.80.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1803) [Compare Source](https://github.com/sass/dart-sass/compare/2ad213305b949ae5aea33574d4b90905708094c3...76cfd6b331be205497935a94e922b2eac26b5394) - Fix a bug where `@import url("...")` would crash in plain CSS files. - Improve consistency of how warnings are emitted by different parts of the compiler. This should result in minimal user-visible changes, but different types of warnings should now respond more reliably to flags like `--quiet`, `--verbose`, and `--silence-deprecation`. ### [`v1.80.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1802) [Compare Source](https://github.com/sass/dart-sass/compare/e6391d368458235ad19f8b674cb15a405f26a2ae...2ad213305b949ae5aea33574d4b90905708094c3) - Fix a bug where deprecation warnings were incorrectly emitted for the plain-CSS `invert()` function. ### [`v1.80.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1801) [Compare Source](https://github.com/sass/dart-sass/compare/ab19f94b144ca51c62416e1a6aca6c9a90dcbd23...e6391d368458235ad19f8b674cb15a405f26a2ae) - Fix a bug where repeated deprecation warnings were not automatically limited. ### [`v1.80.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1800) [Compare Source](https://github.com/sass/dart-sass/compare/f7b2e63768ec70ee0903a1a6e7fdac4fbe90fa03...ab19f94b144ca51c62416e1a6aca6c9a90dcbd23) - `@import` is now officially deprecated, as are global built-in functions that are available within built-in modules. See [the Sass blog post] for more details on the deprecation process. [the Sass blog post]: https://sass-lang.com/blog/import-is-deprecated/ ##### Embedded Host - Fix an error that would sometimes occur when deprecation warnings were emitted when using a custom importer with the legacy API. ### [`v1.79.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1796) [Compare Source](https://github.com/sass/dart-sass/compare/7290399fb175c491be7bfb568253cbe0fc6061fc...f7b2e63768ec70ee0903a1a6e7fdac4fbe90fa03) - Fix a bug where Sass would add an extra `*/` after loud comments with whitespace after an explicit `*/` in the indented syntax. - **Potentially breaking bug fix:** Adding text after an explicit `*/` in the indented syntax is now an error, rather than silently generating invalid CSS. ##### Embedded Host - Properly export the `SassBoolean` type. ### [`v1.79.5`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1795) [Compare Source](https://github.com/sass/dart-sass/compare/f84e8678f05c72b44f1c6849359cca9d60cde69c...7290399fb175c491be7bfb568253cbe0fc6061fc) - Changes to how `selector.unify()` and `@extend` combine selectors: - The relative order of pseudo-classes (like `:hover`) and pseudo-elements (like `::before`) within each original selector is now preserved when they're combined. - Pseudo selectors are now consistently placed at the end of the combined selector, regardless of which selector they came from. Previously, this reordering only applied to pseudo-selectors in the second selector. - Tweak the color transformation matrices for OKLab and OKLCH to match the newer, more accurate values in the CSS spec. - Fix a slight inaccuracy case when converting to `srgb-linear` and `display-p3`. - **Potentially breaking bug fix:** `math.unit()` now wraps multiple denominator units in parentheses. For example, `px/(em*em)` instead of `px/em*em`. ##### Command-Line Interface - Use `@parcel/watcher` to watch the filesystem when running from JavaScript and not using `--poll`. This should mitigate more frequent failures users have been seeing since version 4.0.0 of Chokidar, our previous watching tool, was released. ##### JS API - Fix `SassColor.interpolate()` to allow an undefined `options` parameter, as the types indicate. ##### Embedded Sass - Properly pass missing color channel values to and from custom functions. ### [`v1.79.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1794) [Compare Source](https://github.com/sass/dart-sass/compare/b85ef9c89f23305617dc9f63dad64c874262d63c...f84e8678f05c72b44f1c6849359cca9d60cde69c) ##### JS API - Fix a bug where passing `green` or `blue` to `color.change()` for legacy colors would fail. ### [`v1.79.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1793) [Compare Source](https://github.com/sass/dart-sass/compare/fa4827f4a42a632821211be07e45b6ac7304189b...b85ef9c89f23305617dc9f63dad64c874262d63c) - Update the `$channel` parameter in the suggested replacement for `color.red()`, `color.green()`, `color.blue()`, `color.hue()`, `color.saturation()`, `color.lightness()`, `color.whiteness()`, and `color.blackness()` to use a quoted string. ### [`v1.79.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1792) [Compare Source](https://github.com/sass/dart-sass/compare/5fa04d3dbcdbf0911506d11e1847ac64f2fc9f7d...fa4827f4a42a632821211be07e45b6ac7304189b) - Add a `$space` parameter to the suggested replacement for `color.red()`, `color.green()`, `color.blue()`, `color.hue()`, `color.saturation()`, `color.lightness()`, `color.whiteness()`, and `color.blackness()`. - Update deprecation warnings for the legacy JS API to include a link to [relevant documentation]. [relevant documentation]: https://sass-lang.com/d/legacy-js-api ### [`v1.79.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1791) [Compare Source](https://github.com/sass/dart-sass/compare/d740d02e10f402f225b77781e4d946dce4c95a10...5fa04d3dbcdbf0911506d11e1847ac64f2fc9f7d) - No user-visible changes. ### [`v1.79.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1790) [Compare Source](https://github.com/sass/dart-sass/compare/90a70ef168fa79a807d31386fb9aea037be1a284...d740d02e10f402f225b77781e4d946dce4c95a10) - **Breaking change**: Passing a number with unit `%` to the `$alpha` parameter of `color.change()`, `color.adjust()`, `change-color()`, and `adjust-color()` is now interpreted as a percentage, instead of ignoring the unit. For example, `color.change(red, $alpha: 50%)` now returns `rgb(255 0 0 / 0.5)`. - **Potentially breaking compatibility fix**: Sass no longer rounds RGB channels to the nearest integer. This means that, for example, `rgb(0 0 1) != rgb(0 0 0.6)`. This matches the latest version of the CSS spec and browser behavior. - **Potentially breaking compatibility fix**: Passing large positive or negative values to `color.adjust()` can now cause a color's channels to go outside that color's gamut. In most cases this will currently be clipped by the browser and end up showing the same color as before, but once browsers implement gamut mapping it may produce a different result. - Add support for CSS Color Level 4 [color spaces]. Each color value now tracks its color space along with the values of each channel in that color space. There are two general principles to keep in mind when dealing with new color spaces: 1. With the exception of legacy color spaces (`rgb`, `hsl`, and `hwb`), colors will always be emitted in the color space they were defined in unless they're explicitly converted. 2. The `color.to-space()` function is the only way to convert a color to another color space. Some built-in functions may do operations in a different color space, but they'll always convert back to the original space afterwards. - `rgb` colors can now have non-integer channels and channels outside the normal gamut of 0-255. These colors are always emitted using the `rgb()` syntax so that modern browsers that are being displayed on wide-gamut devices can display the most accurate color possible. - Add support for all the new color syntax defined in Color Level 4, including: - `oklab()`, `oklch()`, `lab()`, and `lch()` functions; - a top-level `hwb()` function that matches the space-separated CSS syntax; - and a `color()` function that supports the `srgb`, `srgb-linear`, `display-p3`, `a98-rgb`, `prophoto-rgb`, `rec2020`, `xyz`, `xyz-d50`, and `xyz-d65` color spaces. - Add new functions for working with color spaces: - `color.to-space($color, $space)` converts `$color` to the given `$space`. In most cases this conversion is lossless—the color may end up out-of-gamut for the destination color space, but browsers will generally display it as best they can regardless. However, the `hsl` and `hwb` spaces can't represent out-of-gamut colors and so will be clamped. - `color.channel($color, $channel, $space: null)` returns the value of the given `$channel` in `$color`, after converting it to `$space` if necessary. It should be used instead of the old channel-specific functions such as `color.red()` and `color.hue()`. - `color.same($color1, $color2)` returns whether two colors represent the same color even across color spaces. It differs from `$color1 == $color2` because `==` never consider colors in different (non-legacy) spaces as equal. - `color.is-in-gamut($color, $space: null)` returns whether `$color` is in-gamut for its color space (or `$space` if it's passed). - `color.to-gamut($color, $space: null)` returns `$color` constrained to its space's gamut (or to `$space`'s gamut, if passed). This is generally not recommended since even older browsers will display out-of-gamut colors as best they can, but it may be necessary in some cases. - `color.space($color)`: Returns the name of `$color`'s color space. - `color.is-legacy($color)`: Returns whether `$color` is in a legacy color space (`rgb`, `hsl`, or `hwb`). - `color.is-powerless($color, $channel, $space: null)`: Returns whether the given `$channel` of `$color` is powerless in `$space` (or its own color space). A channel is "powerless" if its value doesn't affect the way the color is displayed, such as hue for a color with 0 chroma. - `color.is-missing($color, $channel)`: Returns whether `$channel`'s value is missing in `$color`. Missing channels can be explicitly specified using the special value `none` and can appear automatically when `color.to-space()` returns a color with a powerless channel. Missing channels are usually treated as 0, except when interpolating between two colors and in `color.mix()` where they're treated as the same value as the other color. - Update existing functions to support color spaces: - `hsl()` and `color.hwb()` no longer forbid out-of-bounds values. Instead, they follow the CSS spec by clamping them to within the allowed range. - `color.change()`, `color.adjust()`, and `color.scale()` now support all channels of all color spaces. However, if you want to modify a channel that's not in `$color`'s own color space, you have to explicitly specify the space with the `$space` parameter. (For backwards-compatibility, this doesn't apply to legacy channels of legacy colors—for example, you can still adjust an `rgb` color's saturation without passing `$space: hsl`). - `color.mix()` and `color.invert()` now support the standard CSS algorithm for interpolating between two colors (the same one that's used for gradients and animations). To use this, pass the color space to use for interpolation to the `$method` parameter. For polar color spaces like `hsl` and `oklch`, this parameter also allows you to specify how hue interpolation is handled. - `color.complement()` now supports a `$space` parameter that indicates which color space should be used to take the complement. - `color.grayscale()` now operates in the `oklch` space for non-legacy colors. - `color.ie-hex-str()` now automatically converts its color to the `rgb` space and gamut-maps it so that it can continue to take colors from any color space. [color spaces]: https://developer.mozilla.org/en-US/docs/Web/CSS/color_value - The following functions are now deprecated, and uses should be replaced with the new color-space-aware functions defined above: - The `color.red()`, `color.green()`, `color.blue()`, `color.hue()`, `color.saturation()`, `color.lightness()`, `color.whiteness()`, and `color.blackness()` functions, as well as their global counterparts, should be replaced with calls to `color.channel()`. - The global `adjust-hue()`, `saturate()`, `desaturate()`, `lighten()`, `darken()`, `transaprentize()`, `fade-out()`, `opacify()`, and `fade-in()` functions should be replaced by `color.adjust()` or `color.scale()`. - Add a `global-builtin` future deprecation, which can be opted-into with the `--future-deprecation` flag or the `futureDeprecations` option in the JS or Dart API. This emits warnings when any global built-in functions that are now available in `sass:` modules are called. It will become active by default in an upcoming release alongside the `@import` deprecation. ##### Dart API - Added a `ColorSpace` class which represents the various color spaces defined in the CSS spec. - Added `SassColor.space` which returns a color's color space. - Added `SassColor.channels` and `.channelsOrNull` which returns a list of channel values, with missing channels converted to 0 or exposed as null, respectively. - Added `SassColor.isLegacy`, `.isInGamut`, `.channel()`, `.isChannelMissing()`, `.isChannelPowerless()`, `.toSpace()`, `.toGamut()`, `.changeChannels()`, and `.interpolate()` which do the same thing as the Sass functions of the corresponding names. - `SassColor.rgb()` now allows out-of-bounds and non-integer arguments. - `SassColor.hsl()` and `.hwb()` now allow out-of-bounds arguments. - Added `SassColor.hwb()`, `.srgb()`, `.srgbLinear()`, `.displayP3()`, `.a98Rgb()`, `.prophotoRgb()`, `.rec2020()`, `.xyzD50()`, `.xyzD65()`, `.lab()`, `.lch()`, `.oklab()`, `.oklch()`, and `.forSpace()` constructors. - Deprecated `SassColor.red`, `.green`, `.blue`, `.hue`, `.saturation`, `.lightness`, `.whiteness`, and `.blackness` in favor of `SassColor.channel()`. - Deprecated `SassColor.changeRgb()`, `.changeHsl()`, and `.changeHwb()` in favor of `SassColor.changeChannels()`. - Added `SassNumber.convertValueToUnit()` as a shorthand for `SassNumber.convertValue()` with a single numerator. - Added `InterpolationMethod` and `HueInterpolationMethod` which collectively represent the method to use to interpolate two colors. ##### JS API - While the legacy API has been deprecated since we released the modern API, we now emit warnings when the legacy API is used to make sure users are aware that it will be removed in Dart Sass 2.0.0. In the meantime, you can silence these warnings by passing `legacy-js-api` in `silenceDeprecations` when using the legacy API. - Modify `SassColor` to accept a new `space` option, with support for all the new color spaces defined in Color Level 4. - Add `SassColor.space` which returns a color's color space. - Add `SassColor.channels` and `.channelsOrNull` which returns a list of channel values, with missing channels converted to 0 or exposed as null, respectively. - Add `SassColor.isLegacy`, `.isInGamut()`, `.channel()`, `.isChannelMissing()`, `.isChannelPowerless()`, `.toSpace()`, `.toGamut()`, `.change()`, and `.interpolate()` which do the same thing as the Sass functions of the corresponding names. - Deprecate `SassColor.red`, `.green`, `.blue`, `.hue`, `.saturation`, `.lightness`, `.whiteness`, and `.blackness` in favor of `SassColor.channel()`. ##### Embedded Sass - Add `Color` SassScript value, with support for all the new color spaces defined in Color Level 4. - Remove `RgbColor`, `HslColor` and `HwbColor` SassScript values. ### [`v1.78.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1780) [Compare Source](https://github.com/sass/dart-sass/compare/be9c3ac6fa547c3f2711f445b8b15932ddb5e7e4...90a70ef168fa79a807d31386fb9aea037be1a284) - The `meta.feature-exists` function is now deprecated. This deprecation is named `feature-exists`. - Fix a crash when using `@at-root` without any queries or children in the indented syntax. ##### JS API - Backport the deprecation options (`fatalDeprecations`, `futureDeprecations`, and `silenceDeprecations`) to the legacy JS API. The legacy JS API is itself deprecated, and you should move off of it if possible, but this will allow users of bundlers and other tools that are still using the legacy API to still control deprecation warnings. - Fix a bug where accessing `SourceSpan.url` would crash when a relative URL was passed to the Sass API. ##### Embedded Sass - Explicitly expose a `sass` executable from the `sass-embedded` npm package. This was intended to be included in 1.63.0, but due to the way platform-specific dependency executables are installed it did not work as intended. Now users can run `npx sass` for local installs or just `sass` when `sass-embedded` is installed globally. - Add linux-riscv64, linux-musl-riscv64, and android-riscv64 support for the `sass-embedded` npm package. - Fix an edge case where the Dart VM could hang when shutting down when requests were in flight. - Fix a race condition where the embedded host could fail to shut down if it was closed around the same time a new compilation was started. - Fix a bug where parse-time deprecation warnings could not be controlled by the deprecation options in some circumstances. ### [`v1.77.8`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1778) [Compare Source](https://github.com/sass/dart-sass/compare/7203d6538981df6422c686198da2497909fa11b5...be9c3ac6fa547c3f2711f445b8b15932ddb5e7e4) - No user-visible changes. ### [`v1.77.7`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1777) [Compare Source](https://github.com/sass/dart-sass/compare/7aae1e67ed3322c1caab1c8ebb2f5c28ff0b2e0b...7203d6538981df6422c686198da2497909fa11b5) - Declarations that appear after nested rules are deprecated, because the semantics Sass has historically used are different from the semantics specified by CSS. In the future, Sass will adopt the standard CSS semantics. See [the Sass website](https://sass-lang.com/d/mixed-decls) for details. - **Potentially breaking bug fix:** `//` in certain places such as unknown at-rule values was being preserved in the CSS output, leading to potentially invalid CSS. It's now properly parsed as a silent comment and omitted from the CSS output. ### [`v1.77.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1776) [Compare Source](https://github.com/sass/dart-sass/compare/a1b372eaf1188e34e1bda2628db45ca17fd621c6...7aae1e67ed3322c1caab1c8ebb2f5c28ff0b2e0b) - Fix a few cases where comments and occasionally even whitespace wasn't allowed between the end of Sass statements and the following semicolon. ### [`v1.77.5`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1775) [Compare Source](https://github.com/sass/dart-sass/compare/21eeb4d9428d1808487223a379c036a019f98487...a1b372eaf1188e34e1bda2628db45ca17fd621c6) - Fully trim redundant selectors generated by `@extend`. ### [`v1.77.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1774) [Compare Source](https://github.com/sass/dart-sass/compare/1073c7b4121dc292887a3be60fbbdde3af0413f5...21eeb4d9428d1808487223a379c036a019f98487) ##### Embedded Sass - Support passing `Version` input for `fatalDeprecations` as string over embedded protocol. - Fix a bug in the JS Embedded Host where `Version` could be incorrectly accepted as input for `silenceDeprecations` and `futureDeprecations` in pure JS. ### [`v1.77.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1773) [Compare Source](https://github.com/sass/dart-sass/compare/5121eb195dea513a0c59c5d9874bebeccf90069c...1073c7b4121dc292887a3be60fbbdde3af0413f5) ##### Dart API - `Deprecation.duplicateVariableFlags` has been deprecated and replaced with `Deprecation.duplicateVarFlags` to make it consistent with the `duplicate-var-flags` name used on the command line and in the JS API. ### [`v1.77.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1772) [Compare Source](https://github.com/sass/dart-sass/compare/372f15cc24973314c08c77b9e29b31f9f801faf3...5121eb195dea513a0c59c5d9874bebeccf90069c) - Don't emit deprecation warnings for functions and mixins beginning with `__`. - Allow user-defined functions whose names begin with `_` and otherwise look like vendor-prefixed functions with special CSS syntax. ##### Command-Line Interface - Properly handle the `--silence-deprecation` flag. - Handle the `--fatal-deprecation` and `--future-deprecation` flags for `--interactive` mode. ### [`v1.77.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1771) [Compare Source](https://github.com/sass/dart-sass/compare/85f39d5ad7056e0afeab4ad649fc34eaed8c89a5...372f15cc24973314c08c77b9e29b31f9f801faf3) - Fix a crash that could come up with importers in certain contexts. ### [`v1.77.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1770) [Compare Source](https://github.com/sass/dart-sass/compare/264b2d58b056b0fa65dcbcec1b18cf8f3567bbe0...85f39d5ad7056e0afeab4ad649fc34eaed8c89a5) - *Don't* throw errors for at-rules in keyframe blocks. ### [`v1.76.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1760) [Compare Source](https://github.com/sass/dart-sass/compare/821b98e26cc153a2806aff79033ce6b52249ee87...264b2d58b056b0fa65dcbcec1b18cf8f3567bbe0) - Throw errors for misplaced statements in keyframe blocks. - Mixins and functions whose names begin with `--` are now deprecated for forwards-compatibility with the in-progress CSS functions and mixins spec. This deprecation is named `css-function-mixin`. ### [`v1.75.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1750) [Compare Source](https://github.com/sass/dart-sass/compare/1137797f1731c23e2c7f317a27b40319d57d09b5...821b98e26cc153a2806aff79033ce6b52249ee87) - Fix a bug in which stylesheet canonicalization could be cached incorrectly when custom importers or the Node.js package importer made decisions based on the URL of the containing stylesheet. ##### JS API - Allow `importer` to be passed without `url` in `StringOptionsWithImporter`. ### [`v1.74.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1741) [Compare Source](https://github.com/sass/dart-sass/compare/ce16b35ca1f4d6cbc3528c54b58647de939f2a4b...1137797f1731c23e2c7f317a27b40319d57d09b5) - No user-visible changes. ### [`v1.72.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1720) [Compare Source](https://github.com/sass/dart-sass/compare/1b4d703ad369a2176f0bc0bd4a37502e7acd9c1d...ce16b35ca1f4d6cbc3528c54b58647de939f2a4b) - Support adjacent `/`s without whitespace in between when parsing plain CSS expressions. - Allow the Node.js `pkg:` importer to load Sass stylesheets for `package.json` `exports` field entries without extensions. - When printing suggestions for variables, use underscores in variable names when the original usage used underscores. ##### JavaScript API - Properly resolve `pkg:` imports with the Node.js package importer when arguments are passed to the JavaScript process. ### [`v1.71.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1711) [Compare Source](https://github.com/sass/dart-sass/compare/3e6721e79f049dd01880542667380640c2d1eeae...1b4d703ad369a2176f0bc0bd4a37502e7acd9c1d) ##### Command-Line Interface - Ship the musl Linux release with the proper Dart executable. ##### JavaScript API - Export the `NodePackageImporter` class in ESM mode. - Allow `NodePackageImporter` to locate a default directory even when the entrypoint is an ESM module. ##### Dart API - Make passing a null argument to `NodePackageImporter()` a static error rather than just a runtime error. ##### Embedded Sass - In the JS Embedded Host, properly install the musl Linux embedded compiler when running on musl Linux. ### [`v1.71.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1710) [Compare Source](https://github.com/sass/dart-sass/compare/076414d3e793ab907591b34fc8a3f694529277d4...3e6721e79f049dd01880542667380640c2d1eeae) For more information about `pkg:` importers, see [the announcement][pkg-importers] on the Sass blog. [pkg-importers]: https://sass-lang.com/blog/announcing-pkg-importers ##### Command-Line Interface - Add a `--pkg-importer` flag to enable built-in `pkg:` importers. Currently this only supports the Node.js package resolution algorithm, via `--pkg-importer=node`. For example, `@use "pkg:bootstrap"` will load `node_modules/bootstrap/scss/bootstrap.scss`. ##### JavaScript API - Add a `NodePackageImporter` importer that can be passed to the `importers` option. This loads files using the `pkg:` URL scheme according to the Node.js package resolution algorithm. For example, `@use "pkg:bootstrap"` will load `node_modules/bootstrap/scss/bootstrap.scss`. The constructor takes a single optional argument, which indicates the base directory to use when locating `node_modules` directories. It defaults to `path.dirname(require.main.filename)`. ##### Dart API - Add a `NodePackageImporter` importer that can be passed to the `importers` option. This loads files using the `pkg:` URL scheme according to the Node.js package resolution algorithm. For example, `@use "pkg:bootstrap"` will load `node_modules/bootstrap/scss/bootstrap.scss`. The constructor takes a single argument, which indicates the base directory to use when locating `node_modules` directories. ### [`v1.70.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1700) [Compare Source](https://github.com/sass/dart-sass/compare/006baa5642e6c0ff8bb41da8f914359e06fc04d4...076414d3e793ab907591b34fc8a3f694529277d4) ##### JavaScript API - Add a `sass.initCompiler()` function that returns a `sass.Compiler` object which supports `compile()` and `compileString()` methods with the same API as the global Sass object. On the Node.js embedded host, each `sass.Compiler` object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient. - Add a `sass.initAsyncCompiler()` function that returns a `sass.AsyncCompiler` object which supports `compileAsync()` and `compileStringAsync()` methods with the same API as the global Sass object. On the Node.js embedded host, each `sass.AsynCompiler` object uses a single long-lived subprocess, making compiling multiple stylesheets much more efficient. ##### Embedded Sass - Support the `CompileRequest.silent` field. This allows compilations with no logging to avoid unnecessary request/response cycles. - The Dart Sass embedded compiler now reports its name as "dart-sass" rather than "Dart Sass", to match the JS API's `info` field. ### [`v1.69.7`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1697) [Compare Source](https://github.com/sass/dart-sass/compare/f3c7be5affba170655fd5190a2bf9f0c53c99f08...006baa5642e6c0ff8bb41da8f914359e06fc04d4) ##### Embedded Sass - In the JS Embedded Host, properly install the x64 Dart Sass executable on ARM64 Windows. ### [`v1.69.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1696) [Compare Source](https://github.com/sass/dart-sass/compare/89dac15c030caf728f4760bfdea3f86c814338ed...f3c7be5affba170655fd5190a2bf9f0c53c99f08) - Produce better output for numbers with complex units in `meta.inspect()` and debugging messages. - Escape U+007F DELETE when serializing strings. - When generating CSS error messages to display in-browser, escape all code points that aren't in the US-ASCII region. Previously only code points U+0100 LATIN CAPITAL LETTER A WITH MACRON were escaped. - Provide official releases for musl LibC and for Android. - Don't crash when running `meta.apply()` in asynchronous mode. ##### JS API - Fix a bug where certain exceptions could produce `SourceSpan`s that didn't follow the documented `SourceSpan` API. ### [`v1.69.5`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1695) [Compare Source](https://github.com/sass/dart-sass/compare/f40c1fc63bcd0b778f31b99363952c7c9d2e4037...89dac15c030caf728f4760bfdea3f86c814338ed) ##### JS API - Compatibility with Node.js 21.0.0. ### [`v1.69.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1694) [Compare Source](https://github.com/sass/dart-sass/compare/44dceea0bd57e8f78ac74dcb80f67208a88eecc7...f40c1fc63bcd0b778f31b99363952c7c9d2e4037) - No user-visible changes. ### [`v1.69.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1693) [Compare Source](https://github.com/sass/dart-sass/compare/c62fe6a520b277a7faafa327f2ec5c78edf06827...44dceea0bd57e8f78ac74dcb80f67208a88eecc7) ##### Embedded Sass - Fix TypeScript type locations in `package.json`. ### [`v1.69.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1692) [Compare Source](https://github.com/sass/dart-sass/compare/887c5113dda5a9c1dabdc8f444eb710bae56b9d3...c62fe6a520b277a7faafa327f2ec5c78edf06827) ##### JS API - Fix a bug where Sass crashed when running in the browser if there was a global variable named `process`. ### [`v1.69.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1691) [Compare Source](https://github.com/sass/dart-sass/compare/8e6a26cc62a61bb0b757d34e8c0c2f2bb706ab16...887c5113dda5a9c1dabdc8f444eb710bae56b9d3) - No user-visible changes. ### [`v1.69.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1690) [Compare Source](https://github.com/sass/dart-sass/compare/de618fa7bd74cc648f3ee62358eed3e237d4644f...8e6a26cc62a61bb0b757d34e8c0c2f2bb706ab16) - Add a `meta.get-mixin()` function that returns a mixin as a first-class Sass value. - Add a `meta.apply()` mixin that includes a mixin value. - Add a `meta.module-mixins()` function which returns a map from mixin names in a module to the first-class mixins that belong to those names. - Add a `meta.accepts-content()` function which returns whether or not a mixin value can take a content block. - Add support for the relative color syntax from CSS Color 5. This syntax cannot be used to create Sass color values. It is always emitted as-is in the CSS output. ##### Dart API - Deprecate `Deprecation.calcInterp` since it was never actually emitted as a deprecation. ##### Embedded Sass - Fix a rare race condition where the embedded compiler could freeze when a protocol error was immediately followed by another request. ### [`v1.68.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1680) [Compare Source](https://github.com/sass/dart-sass/compare/5c31d1f245c274ff90eded7d7ae4437c664798b9...de618fa7bd74cc648f3ee62358eed3e237d4644f) - Fix the source spans associated with the `abs-percent` deprecation. ##### JS API - Non-filesystem importers can now set the `nonCanonicalScheme` field, which declares that one or more URL schemes (without `:`) will never be used for URLs returned by the `canonicalize()` method. - Add a `containingUrl` field to the `canonicalize()` and `findFileUrl()` methods of importers, which is set to the canonical URL of the stylesheet that contains the current load. For filesystem importers, this is always set; for other importers, it's set only if the current load has no URL scheme, or if its URL scheme is declared as non-canonical by the importer. ##### Dart API - Add `AsyncImporter.isNonCanonicalScheme`, which importers (async or sync) can use to indicate that a certain URL scheme will never be used for URLs returned by the `canonicalize()` method. - Add `AsyncImporter.containingUrl`, which is set during calls to the `canonicalize()` method to the canonical URL of the stylesheet that contains the current load. This is set only if the current load has no URL scheme, or if its URL scheme is declared as non-canonical by the importer. ##### Embedded Sass - The `CalculationValue.interpolation` field is deprecated and will be removed in a future version. It will no longer be set by the compiler, and if the host sets it it will be treated as equivalent to `CalculationValue.string` except that `"("` and `")"` will be added to the beginning and end of the string values. - Properly include TypeScript types in the `sass-embedded` package. ### [`v1.67.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1670) [Compare Source](https://github.com/sass/dart-sass/compare/aa53bd0ef38f0f5a5d061d512f65c391d2f0c0a1...5c31d1f245c274ff90eded7d7ae4437c664798b9) - All functions defined in CSS Values and Units 4 are now once again parsed as calculation objects: `round()`, `mod()`, `rem()`, `sin()`, `cos()`, `tan()`, `asin()`, `acos()`, `atan()`, `atan2()`, `pow()`, `sqrt()`, `hypot()`, `log()`, `exp()`, `abs()`, and `sign()`. Unlike in 1.65.0, function calls are *not* locked into being parsed as calculations or plain Sass functions at parse-time. This means that user-defined functions will take precedence over CSS calculations of the same name. Although the function names `calc()` and `clamp()` are still forbidden, users may continue to freely define functions whose names overlap with other CSS calculations (including `abs()`, `min()`, `max()`, and `round()` whose names overlap with global Sass functions). - **Breaking change**: As a consequence of the change in calculation parsing described above, calculation functions containing interpolation are now parsed more strictly than before. However, *almost* all interpolations that would have produced valid CSS will continue to work. The only exception is `#{$variable}%` which is not valid in Sass and is no longer valid in calculations. Instead of this, either use `$variable` directly and ensure it already has the `%` unit, or write `($variable * 1%)`. - **Potentially breaking bug fix**: The importer used to load a given file is no longer used to load absolute URLs that appear in that file. This was unintented behavior that contradicted the Sass specification. Absolute URLs will now correctly be loaded only from the global importer list. This applies to the modern JS API, the Dart API, and the embedded protocol. ##### Embedded Sass - Substantially improve the embedded compiler's performance when compiling many files or files that require many importer or function call round-trips with the embedded host. ### [`v1.66.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1661) [Compare Source](https://github.com/sass/dart-sass/compare/e70cd5a0a0c14cc4169f5ac21d44637b90b61bed...aa53bd0ef38f0f5a5d061d512f65c391d2f0c0a1) ##### 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. ### [`v1.66.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1660) [Compare Source](https://github.com/sass/dart-sass/compare/bb244761d301d3ac08adc2177d9982d6e0c0d643...e70cd5a0a0c14cc4169f5ac21d44637b90b61bed) - **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. ### [`v1.65.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1651) [Compare Source](https://github.com/sass/dart-sass/compare/e4c8cd67e85d6710ce6bc27107882d6ea1856de0...bb244761d301d3ac08adc2177d9982d6e0c0d643) - Update abs-percent deprecatedIn version to `1.65.0`. ### [`v1.65.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1650) [Compare Source](https://github.com/sass/dart-sass/compare/890fc17dc1ff3c41f4ccb200719154fbb0dee2b9...e4c8cd67e85d6710ce6bc27107882d6ea1856de0) - 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()`, and `sign()`. - Deprecate explicitly passing the `%` unit to the global `abs()` function. In future releases, this will emit a CSS abs() function to be resolved by the browser. This deprecation is named `abs-percent`. ### [`v1.64.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1642) [Compare Source](https://github.com/sass/dart-sass/compare/3367abe1612c450d3bdceb6be55cf3bf22bae35c...890fc17dc1ff3c41f4ccb200719154fbb0dee2b9) - No user-visible changes. ### [`v1.64.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1641) [Compare Source](https://github.com/sass/dart-sass/compare/ca2be2ace9ac065f64059f818537aed28826ebea...3367abe1612c450d3bdceb6be55cf3bf22bae35c) ##### Embedded Sass - Fix a bug where a valid `SassCalculation.clamp()` with less than 3 arguments would throw an error. ### [`v1.64.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1640) [Compare Source](https://github.com/sass/dart-sass/compare/658eb70b55e12fefcc920651d3a6ebbd74121436...ca2be2ace9ac065f64059f818537aed28826ebea) - 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 a `SassCalculation` 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 functions `render` or `renderSync` and those relative imports were loaded multiple times across different files. ### [`v1.63.6`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1636) [Compare Source](https://github.com/sass/dart-sass/compare/a48ced8ec9c60a61af6a2fc280f909e6f05627cf...658eb70b55e12fefcc920651d3a6ebbd74121436) ##### JavaScript API - Fix `import sass from 'sass'` again after it was broken in the last release. ##### Embedded Sass - Fix the `exports` declaration in `package.json`. ### [`v1.63.5`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1635) [Compare Source](https://github.com/sass/dart-sass/compare/e34a0c7fa9d917167b32ab2be223b2a370bb589b...a48ced8ec9c60a61af6a2fc280f909e6f05627cf) ##### JavaScript API - Fix a bug where loading the package through both CJS `require()` and ESM `import` 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. ### [`v1.63.4`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1634) [Compare Source](https://github.com/sass/dart-sass/compare/645e48fd5d1c18843bc3d72b728485facf0d069b...e34a0c7fa9d917167b32ab2be223b2a370bb589b) ##### 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 use `import * 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`, and `types` 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. ### [`v1.63.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1633) [Compare Source](https://github.com/sass/dart-sass/compare/eb09d75ea3f3403141148df14d42dc394a9bd706...645e48fd5d1c18843bc3d72b728485facf0d069b) ##### JavaScript API - Fix loading Sass as an ECMAScript module on Node.js. ### [`v1.63.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1632) [Compare Source](https://github.com/sass/dart-sass/compare/d82654bc3aba2fa3bc0edf13d96255613f76d35f...eb09d75ea3f3403141148df14d42dc394a9bd706) - No user-visible changes. ### [`v1.63.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1631) [Compare Source](https://github.com/sass/dart-sass/compare/c3ed5479321aaf7dfaa3b6285085a2aed2fa3de5...d82654bc3aba2fa3bc0edf13d96255613f76d35f) - No user-visible changes. ### [`v1.63.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1630) [Compare Source](https://github.com/sass/dart-sass/compare/8dddcb7b7db13984fea69fa85438acf30b56b4bb...c3ed5479321aaf7dfaa3b6285085a2aed2fa3de5) ##### JavaScript API - Dart Sass's JS API now supports running in the browser. Further details and instructions for use are in [the README](README.md#dart-sass-in-the-browser). ##### Embedded Sass - The Dart Sass embedded compiler is now included as part of the primary Dart Sass distribution, rather than a separate executable. To use the embedded compiler, just run `sass --embedded` from any Sass executable (other than the pure JS executable). The Node.js embedded host will still be distributed as the `sass-embedded` package on npm. The only change is that it will now provide direct access to a `sass` executable with the same CLI as the `sass` package. - The Dart Sass embedded compiler now uses version 2.0.0 of the Sass embedded protocol. See [the spec][embedded-protocol-spec] for a full description of the protocol, and [the changelog][embedded-protocol-changelog] for a summary of changes since version 1.2.0. [embedded-protocol-spec]: https://github.com/sass/sass/blob/main/spec/embedded-protocol.md [embedded-protocol-changelog]: https://github.com/sass/sass/blob/main/EMBEDDED_PROTOCOL_CHANGELOG.md - The Dart Sass embedded compiler now runs multiple simultaneous compilations in parallel, rather than serially. </details> --- ### 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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xMS44IiwidXBkYXRlZEluVmVyIjoiNDEuMzEuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->
renovate added 1 commit 2025-05-13 05:02:21 +03:00
renovate force-pushed renovate/sass-1.x-lockfile from 3e49d3306f to df15d609c8 2025-05-13 05:02:21 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from df15d609c8 to d48fca7b14 2025-05-13 10:02:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d48fca7b14 to af96306c8d 2025-05-13 15:05:34 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from af96306c8d to 84047731d2 2025-05-14 05:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 84047731d2 to 678d23ad0c 2025-05-14 10:04:20 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 678d23ad0c to 10884d8ef0 2025-05-14 20:03:30 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 10884d8ef0 to 05dfc503a7 2025-05-15 00:02:01 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 05dfc503a7 to a3de46d986 2025-05-15 05:02:09 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a3de46d986 to 59b4e102e4 2025-05-15 15:03:28 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 59b4e102e4 to 1f4b883756 2025-05-16 00:05:39 +03:00 Compare
renovate changed title from chore(deps): update dependency sass to v1.88.0 to chore(deps): update dependency sass to v1.89.0 2025-05-16 05:05:32 +03:00
renovate force-pushed renovate/sass-1.x-lockfile from 1f4b883756 to 238a5c5ea5 2025-05-16 05:05:34 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 238a5c5ea5 to 7de468af53 2025-05-16 10:02:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 7de468af53 to ebe59ba0c2 2025-05-16 15:02:02 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ebe59ba0c2 to 1a70978126 2025-05-16 20:02:14 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 1a70978126 to 6d49e2a0c8 2025-05-17 00:02:24 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6d49e2a0c8 to fce0e13d17 2025-05-17 05:01:57 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from fce0e13d17 to 498f808a95 2025-05-17 10:06:52 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 498f808a95 to 44e82ac3f8 2025-05-17 15:02:52 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 44e82ac3f8 to cacabecd47 2025-05-17 20:04:57 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from cacabecd47 to b41ae9ecb9 2025-05-18 05:01:53 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b41ae9ecb9 to 2b1a0085d5 2025-05-18 10:01:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 2b1a0085d5 to 6feb5f88f5 2025-05-18 15:06:10 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6feb5f88f5 to 425ea10138 2025-05-18 20:04:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 425ea10138 to 300785899d 2025-05-19 05:02:16 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 300785899d to fff901d3b3 2025-05-19 10:02:23 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from fff901d3b3 to 731f489d6b 2025-05-20 00:18:49 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 731f489d6b to 54cda835ba 2025-05-20 05:04:55 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 54cda835ba to 403e5f8385 2025-05-20 10:04:14 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 403e5f8385 to 72d6a1242b 2025-05-20 15:05:44 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 72d6a1242b to e7c54fbb01 2025-05-21 00:06:51 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e7c54fbb01 to 0e97f7b30c 2025-05-21 10:02:13 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0e97f7b30c to 1f38f6f9f9 2025-05-21 20:04:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 1f38f6f9f9 to 0ee17859ea 2025-05-22 00:06:46 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0ee17859ea to 53097742bd 2025-05-22 05:05:37 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 53097742bd to 27cac434e6 2025-05-22 15:02:25 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 27cac434e6 to efd8eed5c0 2025-05-23 00:02:00 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from efd8eed5c0 to fdcf6cffec 2025-05-23 05:03:32 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from fdcf6cffec to b051374c8c 2025-05-23 10:04:19 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b051374c8c to af2ac38aca 2025-05-23 15:02:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from af2ac38aca to 1727462417 2025-05-23 20:02:20 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 1727462417 to 0e95ae1f28 2025-05-24 05:02:20 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0e95ae1f28 to 01f843e42e 2025-05-24 15:02:24 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 01f843e42e to 696663a95b 2025-05-26 00:02:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 696663a95b to 6cce74454c 2025-05-26 05:02:00 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6cce74454c to c49f13c9d0 2025-05-27 05:02:19 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c49f13c9d0 to ad2d4ae2ec 2025-05-27 10:02:16 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ad2d4ae2ec to d2e1ce029a 2025-05-28 00:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d2e1ce029a to 3c6e4c6d7b 2025-05-28 05:02:15 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3c6e4c6d7b to e32be36383 2025-05-28 15:02:28 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e32be36383 to 816420602a 2025-05-28 20:02:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 816420602a to 7b59c3e5c7 2025-05-29 00:01:59 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 7b59c3e5c7 to d914179589 2025-05-29 05:04:05 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d914179589 to 810177cd91 2025-05-29 20:01:55 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 810177cd91 to 2d9aaf5fa9 2025-05-30 05:02:31 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 2d9aaf5fa9 to 59e9b4b6e0 2025-05-30 15:04:41 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 59e9b4b6e0 to a235352155 2025-05-30 20:02:03 +03:00 Compare
renovate changed title from chore(deps): update dependency sass to v1.89.0 to chore(deps): update dependency sass to v1.89.1 2025-05-31 05:03:42 +03:00
renovate force-pushed renovate/sass-1.x-lockfile from a235352155 to 56eeb6e733 2025-05-31 05:03:44 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 56eeb6e733 to 212a5f4481 2025-05-31 10:01:48 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 212a5f4481 to 2a41d13f98 2025-06-01 00:06:56 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 2a41d13f98 to a5ea07549f 2025-06-01 05:01:55 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a5ea07549f to fbd580470b 2025-06-01 10:01:52 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from fbd580470b to c17a88daf2 2025-06-02 00:01:57 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c17a88daf2 to e9c0fcde57 2025-06-02 05:01:46 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e9c0fcde57 to 7ce4b07f92 2025-06-02 10:01:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 7ce4b07f92 to c423e5c89f 2025-06-03 00:06:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c423e5c89f to 857b63b788 2025-06-03 10:02:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 857b63b788 to 8d603aec68 2025-06-03 15:02:01 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 8d603aec68 to aad19649ec 2025-06-03 20:01:50 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from aad19649ec to 239752a80c 2025-06-04 00:01:54 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 239752a80c to c7ee4c6334 2025-06-04 05:02:01 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c7ee4c6334 to e0907df602 2025-06-04 10:02:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e0907df602 to 3287d54528 2025-06-04 15:01:49 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3287d54528 to ebb0d2947e 2025-06-05 00:06:46 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ebb0d2947e to d9d104e4cc 2025-06-05 10:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d9d104e4cc to 909ec6e3d8 2025-06-05 15:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 909ec6e3d8 to 30c017e61d 2025-06-05 20:01:58 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 30c017e61d to d17001d15a 2025-06-06 00:02:19 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d17001d15a to 19713b059c 2025-06-06 05:01:37 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 19713b059c to 5961ce3de7 2025-06-06 15:02:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 5961ce3de7 to d3ea3380db 2025-06-06 20:02:02 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d3ea3380db to 350486ae47 2025-06-07 00:01:52 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 350486ae47 to ff164f4057 2025-06-07 05:01:37 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ff164f4057 to 9f5fec1c03 2025-06-07 10:03:33 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 9f5fec1c03 to 0080a6302f 2025-06-07 15:03:02 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0080a6302f to 78aef2d4da 2025-06-07 20:01:56 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 78aef2d4da to da60678318 2025-06-08 00:06:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from da60678318 to 163d3f2f71 2025-06-09 00:01:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 163d3f2f71 to eca1a98269 2025-06-09 10:01:59 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from eca1a98269 to d50c784bdc 2025-06-09 20:02:14 +03:00 Compare
renovate changed title from chore(deps): update dependency sass to v1.89.1 to chore(deps): update dependency sass to v1.89.2 2025-06-10 00:18:31 +03:00
renovate force-pushed renovate/sass-1.x-lockfile from d50c784bdc to ea2e2d240f 2025-06-10 00:18:31 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ea2e2d240f to e1ec4a547c 2025-06-10 10:01:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e1ec4a547c to d3404786b2 2025-06-10 15:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d3404786b2 to 6027038b24 2025-06-19 15:04:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6027038b24 to c3c21d27ba 2025-06-19 20:02:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c3c21d27ba to 80e8bb68e6 2025-06-20 15:02:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 80e8bb68e6 to 16451f608a 2025-06-20 20:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 16451f608a to 4ca07866b0 2025-06-21 00:06:36 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 4ca07866b0 to 8c24ae5fd2 2025-06-21 10:01:36 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 8c24ae5fd2 to a900c25f20 2025-06-21 15:01:56 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a900c25f20 to ed2ec32dde 2025-06-21 20:01:45 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ed2ec32dde to 6f5602a160 2025-06-22 00:01:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6f5602a160 to 6d79040e32 2025-06-22 05:01:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6d79040e32 to 0263fdd9a6 2025-06-22 10:03:18 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0263fdd9a6 to 4ff08f0c0b 2025-06-22 15:01:44 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 4ff08f0c0b to 69fc882877 2025-06-22 20:01:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 69fc882877 to 604923466c 2025-06-23 00:19:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 604923466c to 1187c76a20 2025-06-23 05:01:48 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 1187c76a20 to 7d844b2a9b 2025-06-23 10:01:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 7d844b2a9b to 53eee40e32 2025-06-23 15:03:37 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 53eee40e32 to 739020613d 2025-06-23 20:02:17 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 739020613d to 099caa5be6 2025-06-24 00:02:02 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 099caa5be6 to 41dce4ae4e 2025-06-24 05:03:24 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 41dce4ae4e to be4824a8f1 2025-06-24 10:01:46 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from be4824a8f1 to 42b92e7326 2025-06-24 15:02:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 42b92e7326 to c56f833cba 2025-06-25 00:02:49 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c56f833cba to 163b8ea580 2025-06-25 10:04:12 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 163b8ea580 to 73fea64311 2025-06-25 15:02:23 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 73fea64311 to a041d5a9bc 2025-06-25 20:03:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a041d5a9bc to b5122ad095 2025-06-26 00:01:54 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b5122ad095 to abc6834454 2025-06-26 05:02:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from abc6834454 to c9a322f690 2025-06-26 10:01:46 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c9a322f690 to 4cf5112d10 2025-06-26 15:02:13 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 4cf5112d10 to 53142ca088 2025-06-26 20:01:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 53142ca088 to e1dea31671 2025-06-27 00:01:51 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e1dea31671 to 5bd15a608f 2025-06-27 05:03:12 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 5bd15a608f to 4c0aa22202 2025-06-27 10:02:10 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 4c0aa22202 to 56a55ebff7 2025-06-27 15:02:09 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 56a55ebff7 to aa94c9601b 2025-06-28 00:01:49 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from aa94c9601b to 6420564d3a 2025-06-28 15:03:16 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6420564d3a to 6679ad9cab 2025-06-28 20:01:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6679ad9cab to 31a9c07b02 2025-06-29 05:01:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 31a9c07b02 to 0bce9d6ec2 2025-06-29 10:01:59 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0bce9d6ec2 to 91deacf48b 2025-06-29 15:02:13 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 91deacf48b to d75479df30 2025-06-30 00:01:53 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d75479df30 to 32d6407751 2025-06-30 05:03:50 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 32d6407751 to b1491a0d4a 2025-06-30 10:01:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b1491a0d4a to 3de23f5c41 2025-06-30 20:01:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3de23f5c41 to 23131342fb 2025-07-01 00:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 23131342fb to 9496a51b8e 2025-07-01 05:01:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 9496a51b8e to 9ce1ede983 2025-07-01 20:01:44 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 9ce1ede983 to 356b98dcdf 2025-07-02 00:02:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 356b98dcdf to 0cddd0ec8a 2025-07-02 05:01:44 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0cddd0ec8a to 8107b385ba 2025-07-02 10:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 8107b385ba to 78e7ca9327 2025-07-02 15:01:52 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 78e7ca9327 to 72358a89f6 2025-07-03 00:01:50 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 72358a89f6 to f02fa69f43 2025-07-03 10:01:48 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from f02fa69f43 to a73e3ab067 2025-07-04 10:03:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a73e3ab067 to ba406f35f9 2025-07-04 15:03:27 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ba406f35f9 to e54c83705c 2025-07-04 20:03:55 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e54c83705c to ad60d75645 2025-07-05 00:17:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ad60d75645 to 150fd533e9 2025-07-05 05:02:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 150fd533e9 to c2c2d49444 2025-07-05 20:01:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c2c2d49444 to 3b05c587aa 2025-07-06 10:03:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3b05c587aa to a5ddf50e8f 2025-07-06 15:03:47 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a5ddf50e8f to 52423db032 2025-07-06 20:02:03 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 52423db032 to d0865bdc46 2025-07-07 00:06:42 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d0865bdc46 to 87f9407006 2025-07-07 15:03:41 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 87f9407006 to 6af7a0bf0b 2025-07-07 20:04:07 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6af7a0bf0b to bef91951ed 2025-07-08 00:01:48 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from bef91951ed to 6db3b15a07 2025-07-08 10:01:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6db3b15a07 to 31065ea8e7 2025-07-08 15:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 31065ea8e7 to f72bb2fd67 2025-07-08 20:02:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from f72bb2fd67 to 364bf3e62c 2025-07-09 00:02:15 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 364bf3e62c to a11a1726e0 2025-07-09 15:02:05 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a11a1726e0 to e53b5a3e3f 2025-07-09 20:02:01 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from e53b5a3e3f to d59dedb158 2025-07-10 00:02:06 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d59dedb158 to 090df14d32 2025-07-10 05:02:02 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 090df14d32 to b608b69934 2025-07-10 10:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b608b69934 to 1c76494bd6 2025-07-10 20:02:07 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 1c76494bd6 to 33f2819865 2025-07-11 05:01:54 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 33f2819865 to 4949f5fc4f 2025-07-11 10:02:22 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 4949f5fc4f to 45aaaa99db 2025-07-11 15:02:26 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 45aaaa99db to a90f21a25b 2025-07-11 20:02:19 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a90f21a25b to 10ca99b5dc 2025-07-11 23:08:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 10ca99b5dc to dcd8f8c9bb 2025-07-12 01:25:49 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from dcd8f8c9bb to 0f87ad7cf4 2025-07-12 02:51:05 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0f87ad7cf4 to 67eda9423c 2025-07-12 04:28:53 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 67eda9423c to 0382e0d584 2025-07-13 20:01:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0382e0d584 to 3af7ea0f40 2025-07-14 00:00:41 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3af7ea0f40 to 366a667ab1 2025-07-14 05:01:08 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 366a667ab1 to bbd16c1ab8 2025-07-14 10:00:40 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from bbd16c1ab8 to 3edc64900d 2025-07-14 15:01:17 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3edc64900d to 0a6a7d7815 2025-07-14 20:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0a6a7d7815 to 8e46647065 2025-07-15 00:01:50 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 8e46647065 to 9386d45ce6 2025-07-15 10:03:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 9386d45ce6 to fcec6391c0 2025-07-15 15:01:14 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from fcec6391c0 to 52b5e9d3fd 2025-07-15 20:00:41 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 52b5e9d3fd to 804b945df4 2025-07-16 00:01:43 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 804b945df4 to b1fa3000cd 2025-07-16 05:04:48 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from b1fa3000cd to 3797fdc913 2025-07-16 15:05:05 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3797fdc913 to ffc554b807 2025-07-17 10:04:04 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from ffc554b807 to 39e1836fd2 2025-07-17 15:01:55 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 39e1836fd2 to 5c91033ae8 2025-07-17 20:02:10 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 5c91033ae8 to c2a67abc13 2025-07-18 00:00:54 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c2a67abc13 to 92a53782bf 2025-07-18 05:04:39 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 92a53782bf to a017f4cee2 2025-07-18 10:01:57 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from a017f4cee2 to 0af790155d 2025-07-18 20:01:34 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 0af790155d to 6b14266c48 2025-07-19 00:00:51 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6b14266c48 to 6afb33108c 2025-07-19 05:04:11 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6afb33108c to d4c969ca4e 2025-07-19 10:00:36 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from d4c969ca4e to 3d48b91f2b 2025-07-19 15:00:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 3d48b91f2b to c97cd6dd35 2025-07-19 20:01:53 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from c97cd6dd35 to 6cb312dcf8 2025-07-20 00:01:08 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 6cb312dcf8 to 7af4a13bff 2025-07-20 05:00:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 7af4a13bff to cf708fd547 2025-07-20 10:01:21 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from cf708fd547 to 233c384254 2025-07-20 15:00:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 233c384254 to f5c5c96e9a 2025-07-20 20:00:38 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from f5c5c96e9a to bf5874519b 2025-07-21 00:02:07 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from bf5874519b to 08e6d22923 2025-07-22 10:03:30 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 08e6d22923 to 8564cffb43 2025-07-22 15:00:36 +03:00 Compare
renovate force-pushed renovate/sass-1.x-lockfile from 8564cffb43 to 13a1e5d7b4 2025-07-23 00:01:13 +03:00 Compare
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/sass-1.x-lockfile:renovate/sass-1.x-lockfile
git checkout renovate/sass-1.x-lockfile
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: ngn/libremdb#17
No description provided.