Update dependency sass to ^1.85.1 - autoclosed #260

Closed
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.80.6 -> ^1.85.1

Release Notes

sass/dart-sass (sass)

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.

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.80.6` -> `^1.85.1`](https://renovatebot.com/diffs/npm/sass/1.80.6/1.85.1) | --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.85.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1851) [Compare Source](https://github.com/sass/dart-sass/compare/1.85.0...1.85.1) - 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/1.84.0...1.85.0) - 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/1.83.4...1.84.0) - 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/1.83.3...1.83.4) - 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/1.83.2...1.83.3) - 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/1.83.1...1.83.2) - 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/1.83.0...1.83.1) - 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/1.82.0...1.83.0) - 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/1.81.1...1.82.0) ##### 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/1.81.0...1.81.1) - 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/1.80.7...1.81.0) - 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/1.80.6...1.80.7) ##### Embedded Host - Don't treat `0` as `undefined` for the `green` and `blue` channels in the `LegacyColor` constructor. </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-->
samuel-p was assigned by renovate-bot 2024-12-08 20:00:47 +00:00
renovate-bot force-pushed renovate/sass-1.x from 33a14629d6 to 21a6a9aa9d 2024-12-12 23:00:44 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.82.0 to Update dependency sass to ^1.83.0 2024-12-12 23:00:48 +00:00
renovate-bot force-pushed renovate/sass-1.x from 21a6a9aa9d to 99f61f982f 2025-01-04 02:00:40 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.83.0 to Update dependency sass to ^1.83.1 2025-01-04 02:00:44 +00:00
renovate-bot force-pushed renovate/sass-1.x from 99f61f982f to 7afaf1636e 2025-01-14 01:00:43 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.83.1 to Update dependency sass to ^1.83.2 2025-01-14 01:00:46 +00:00
renovate-bot force-pushed renovate/sass-1.x from 7afaf1636e to 4badebd094 2025-01-14 02:00:44 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.83.2 to Update dependency sass to ^1.83.3 2025-01-14 02:00:46 +00:00
renovate-bot force-pushed renovate/sass-1.x from 4badebd094 to d4f94acf01 2025-01-14 07:00:43 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.83.3 to Update dependency sass to ^1.83.4 2025-01-14 07:00:45 +00:00
renovate-bot force-pushed renovate/sass-1.x from d4f94acf01 to e04757d1f3 2025-02-06 01:00:55 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.83.4 to Update dependency sass to ^1.84.0 2025-02-06 01:00:58 +00:00
renovate-bot force-pushed renovate/sass-1.x from e04757d1f3 to 3f59d0581e 2025-02-14 01:00:44 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.84.0 to Update dependency sass to ^1.85.0 2025-02-14 01:00:47 +00:00
renovate-bot force-pushed renovate/sass-1.x from 3f59d0581e to aa54918185 2025-02-25 02:00:44 +00:00 Compare
renovate-bot changed title from Update dependency sass to ^1.85.0 to Update dependency sass to ^1.85.1 2025-02-25 02:00:47 +00:00
renovate-bot changed title from Update dependency sass to ^1.85.1 to Update dependency sass to ^1.85.1 - autoclosed 2025-03-17 01:01:19 +00:00
renovate-bot closed this pull request 2025-03-17 01:01:20 +00:00
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 1m3s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped

Pull request closed

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#260
No description provided.