Update dependency sass to ^1.92.1 #270

Open
renovate-bot wants to merge 1 commit from renovate/sass-1.x into develop
Collaborator

This PR contains the following updates:

Package Type Update Change
sass devDependencies minor ^1.85.1 -> ^1.92.1

Release Notes

sass/dart-sass (sass)

v1.92.1

Compare Source

  • Fix a bug where variable definitions from one imported, forwarded module
    would not be passed as implicit configuration to a later imported, forwarded
    module.

v1.92.0

Compare Source

  • Breaking change: Emit declarations, childless at-rules, and comments in
    the order they appear in the source even when they're interleaved with nested
    rules. This obsoletes the mixed-decls deprecation.

  • Breaking change: The function name type() is now fully reserved for the
    plain CSS function. This means that @function definitions with the name
    type will produce errors, while function calls will be parsed as special
    function strings.

  • Configuring private variables using @use ... with, @forward ... with, and
    meta.load-css(..., $with: ...) is now deprecated. Private variables were
    always intended to be fully encapsulated within the module that defines them,
    and this helps enforce that encapsulation.

  • Fix a bug where @extend rules loaded through a mixture of @import and
    @use rules could fail to apply correctly.

Command-Line Interface
  • In --watch mode, delete the source map when the associated source file is
    deleted.

v1.91.0

Compare Source

  • Potentially breaking change: meta.inspect() (as well as other systems
    that use it such as @debug and certain error messages) now emits numbers
    with as high precision as is available instead of rounding to the nearest
    1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of
    meta.inspect(), which is to provide full information about the structure of
    a Sass value.

  • Passing a rest argument ($arg...) before a positional or named argument when
    calling a function or mixin is now deprecated. This was always outside the
    specified syntax, but it was historically treated the same as passing the rest
    argument at the end of the argument list whether or not that matched the
    visual order of the arguments.

v1.90.0

Compare Source

  • Allow a @forwarded module to be loaded with a configuration when that module
    has already been loaded with a different configuration and the module
    doesn't define any variables that would have been configured anyway.

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.

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 is behind base branch, 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 | Type | Update | Change | |---|---|---|---| | [sass](https://github.com/sass/dart-sass) | devDependencies | minor | [`^1.85.1` -> `^1.92.1`](https://renovatebot.com/diffs/npm/sass/1.85.1/1.92.1) | --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.92.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1921) [Compare Source](https://github.com/sass/dart-sass/compare/1.92.0...1.92.1) - Fix a bug where variable definitions from one imported, forwarded module would not be passed as implicit configuration to a later imported, forwarded module. ### [`v1.92.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1920) [Compare Source](https://github.com/sass/dart-sass/compare/1.91.0...1.92.0) - **Breaking change:** Emit declarations, childless at-rules, and comments in the order they appear in the source even when they're interleaved with nested rules. This obsoletes the `mixed-decls` deprecation. - **Breaking change:** The function name `type()` is now fully reserved for the plain CSS function. This means that `@function` definitions with the name `type` will produce errors, while function calls will be parsed as special function strings. - Configuring private variables using `@use ... with`, `@forward ... with`, and `meta.load-css(..., $with: ...)` is now deprecated. Private variables were always intended to be fully encapsulated within the module that defines them, and this helps enforce that encapsulation. - Fix a bug where `@extend` rules loaded through a mixture of `@import` and `@use` rules could fail to apply correctly. ##### Command-Line Interface - In `--watch` mode, delete the source map when the associated source file is deleted. ### [`v1.91.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1910) [Compare Source](https://github.com/sass/dart-sass/compare/1.90.0...1.91.0) - **Potentially breaking change:** `meta.inspect()` (as well as other systems that use it such as `@debug` and certain error messages) now emits numbers with as high precision as is available instead of rounding to the nearest 1e⁻¹⁰ as we do when serializing to CSS. This better fits the purpose of `meta.inspect()`, which is to provide full information about the structure of a Sass value. - Passing a rest argument (`$arg...`) before a positional or named argument when calling a function or mixin is now deprecated. This was always outside the specified syntax, but it was historically treated the same as passing the rest argument at the end of the argument list whether or not that matched the visual order of the arguments. ### [`v1.90.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1900) [Compare Source](https://github.com/sass/dart-sass/compare/1.89.2...1.90.0) - Allow a `@forward`ed module to be loaded with a configuration when that module has already been loaded with a different configuration *and* the module doesn't define any variables that would have been configured anyway. ### [`v1.89.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1892) [Compare Source](https://github.com/sass/dart-sass/compare/1.89.1...1.89.2) ##### 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/1.89.0...1.89.1) - 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/1.88.0...1.89.0) - 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/1.87.0...1.88.0) - 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/1.86.3...1.87.0) - **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/1.86.2...1.86.3) - 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/1.86.1...1.86.2) - 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/1.86.0...1.86.1) - 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/1.85.1...1.86.0) - 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. </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 is behind base branch, 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:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjM3LjQ0MC43IiwidGFyZ2V0QnJhbmNoIjoiZGV2ZWxvcCIsImxhYmVscyI6W119-->
Update dependency sass to ^1.86.0
All checks were successful
Build and Deploy Website / Build Website (push) Has been skipped
Build and Deploy Website / Deploy Website (push) Has been skipped
Build and Deploy Website / Build Dev Website (push) Successful in 5m56s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
b2f1da0e3a
samuel-p was assigned by renovate-bot 2025-03-17 22:00:59 +00:00
renovate-bot force-pushed renovate/sass-1.x from b2f1da0e3a to eea018a3a7 2025-03-31 21:01:00 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.86.0 to Update dependency sass to ^1.86.1 2025-03-31 21:01:02 +00:00
renovate-bot force-pushed renovate/sass-1.x from eea018a3a7 to cdee61a8d3 2025-04-03 00:01:04 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.86.1 to Update dependency sass to ^1.86.2 2025-04-03 00:01:06 +00:00
renovate-bot force-pushed renovate/sass-1.x from cdee61a8d3 to 29a5c23496 2025-04-04 01:01:03 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.86.2 to Update dependency sass to ^1.86.3 2025-04-04 01:01:05 +00:00
renovate-bot force-pushed renovate/sass-1.x from 29a5c23496 to b10f5ff37b 2025-04-21 23:01:07 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.86.3 to Update dependency sass to ^1.87.0 2025-04-21 23:01:11 +00:00
renovate-bot force-pushed renovate/sass-1.x from b10f5ff37b to 5a09ea908e 2025-05-10 23:01:05 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.87.0 to Update dependency sass to ^1.88.0 2025-05-10 23:01:08 +00:00
renovate-bot force-pushed renovate/sass-1.x from 5a09ea908e to 39def6e102 2025-05-16 01:01:08 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.88.0 to Update dependency sass to ^1.89.0 2025-05-16 01:01:11 +00:00
renovate-bot force-pushed renovate/sass-1.x from 39def6e102 to 73360f783b 2025-05-31 00:01:08 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.89.0 to Update dependency sass to ^1.89.1 2025-05-31 00:01:10 +00:00
renovate-bot force-pushed renovate/sass-1.x from 73360f783b to c57d7461ad 2025-06-09 20:01:17 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.89.1 to Update dependency sass to ^1.89.2 2025-06-09 20:01:20 +00:00
renovate-bot force-pushed renovate/sass-1.x from c57d7461ad to c07568ffed 2025-08-05 23:01:26 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.89.2 to Update dependency sass to ^1.90.0 2025-08-05 23:01:29 +00:00
renovate-bot force-pushed renovate/sass-1.x from c07568ffed to 4739903de0 2025-08-25 22:01:18 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.90.0 to Update dependency sass to ^1.91.0 2025-08-25 22:01:22 +00:00
renovate-bot force-pushed renovate/sass-1.x from 4739903de0 to 1db2321506 2025-09-02 21:01:16 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.91.0 to Update dependency sass to ^1.92.0 2025-09-02 21:01:21 +00:00
renovate-bot force-pushed renovate/sass-1.x from 1db2321506 to 09cad95d3a 2025-09-06 00:03:05 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.92.0 to Update dependency sass to ^1.92.1 2025-09-06 00:03:09 +00:00
Some checks failed
Build and Deploy Website / Build Website (push) Failing after 0s
Build and Deploy Website / Deploy Website (push) Failing after 0s
Build and Deploy Website / Build Dev Website (push) Failing after 22m0s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
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:renovate/sass-1.x
git switch renovate/sass-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch develop
git merge --no-ff renovate/sass-1.x
git switch renovate/sass-1.x
git rebase develop
git switch develop
git merge --ff-only renovate/sass-1.x
git switch renovate/sass-1.x
git rebase develop
git switch develop
git merge --no-ff renovate/sass-1.x
git switch develop
git merge --squash renovate/sass-1.x
git switch develop
git merge --ff-only renovate/sass-1.x
git switch develop
git merge renovate/sass-1.x
git push origin develop
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: samuel-p/samuel-philipp.de#270
No description provided.