chore(deps): update dependency sass to v1.93.2 #299

Merged
renovate-bot merged 1 commit from renovate/sass-1.x-lockfile into master 2025-10-19 11:32:59 +00:00
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
sass 1.89.2 -> 1.93.2 age adoption passing confidence

Release Notes

sass/dart-sass (sass)

v1.93.2

Compare Source

  • No user-visible changes.
JavaScript API
  • Fix another error in the release process for @sass/types.

v1.93.1

Compare Source

  • No user-visible changes.
JavaScript API
  • Fix an error in the release process for @sass/types.

v1.93.0

Compare Source

  • Fix a crash when a style rule contains a nested @import, and the loaded file
    @uses a user-defined module as well as @includes a top-level mixin which
    emits top-level declarations.
JavaScript API
  • Release a @sass/types package which contains the type annotations used by
    both the sass and sass-embedded package without any additional code or
    dependencies.

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.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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 | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [sass](https://github.com/sass/dart-sass) | [`1.89.2` -> `1.93.2`](https://renovatebot.com/diffs/npm/sass/1.89.2/1.93.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sass/1.93.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sass/1.93.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sass/1.89.2/1.93.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sass/1.89.2/1.93.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.93.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1932) [Compare Source](https://github.com/sass/dart-sass/compare/1.93.1...1.93.2) - No user-visible changes. ##### JavaScript API - Fix another error in the release process for `@sass/types`. ### [`v1.93.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1931) [Compare Source](https://github.com/sass/dart-sass/compare/1.93.0...1.93.1) - No user-visible changes. ##### JavaScript API - Fix an error in the release process for `@sass/types`. ### [`v1.93.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1930) [Compare Source](https://github.com/sass/dart-sass/compare/1.92.1...1.93.0) - Fix a crash when a style rule contains a nested `@import`, and the loaded file `@use`s a user-defined module as well as `@include`s a top-level mixin which emits top-level declarations. ##### JavaScript API - Release a `@sass/types` package which contains the type annotations used by both the `sass` and `sass-embedded` package without any additional code or dependencies. ### [`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. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNTIuMiIsInVwZGF0ZWRJblZlciI6IjQxLjE1Mi4yIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
chore(deps): update dependency sass to v1.93.2
Some checks reported errors
renovate/artifacts Artifact file update failure
continuous-integration/drone/push Build was killed
0cc6eb2cca
renovate-bot scheduled this pull request to auto merge when all checks succeed 2025-10-19 08:44:33 +00:00
Author
Collaborator

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: ui/package-lock.json
npm warn Unknown env config "store". This will stop working in the next major version of npm.
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: reveil@0.0.1
npm error Found: vite@7.1.10
npm error node_modules/vite
npm error   vite@"^7.0.0" from the root project
npm error
npm error Could not resolve dependency:
npm error peer vite@"^6.0.0" from @sveltejs/vite-plugin-svelte@5.1.1
npm error node_modules/@sveltejs/vite-plugin-svelte
npm error   dev @sveltejs/vite-plugin-svelte@"^5.1.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /var/lib/renovatebot/cache/others/npm/_logs/2025-10-19T10_49_52_600Z-eresolve-report.txt
npm error A complete log of this run can be found in: /var/lib/renovatebot/cache/others/npm/_logs/2025-10-19T10_49_52_600Z-debug-0.log

### ⚠️ Artifact update problem Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is. ♻ Renovate will retry this branch, including artifacts, only when one of the following happens: - any of the package files in this branch needs updating, or - the branch becomes conflicted, or - you click the rebase/retry checkbox if found above, or - you rename this PR's title to start with "rebase!" to trigger it manually The artifact failure details are included below: ##### File name: ui/package-lock.json ``` npm warn Unknown env config "store". This will stop working in the next major version of npm. npm error code ERESOLVE npm error ERESOLVE unable to resolve dependency tree npm error npm error While resolving: reveil@0.0.1 npm error Found: vite@7.1.10 npm error node_modules/vite npm error vite@"^7.0.0" from the root project npm error npm error Could not resolve dependency: npm error peer vite@"^6.0.0" from @sveltejs/vite-plugin-svelte@5.1.1 npm error node_modules/@sveltejs/vite-plugin-svelte npm error dev @sveltejs/vite-plugin-svelte@"^5.1.0" from the root project npm error npm error Fix the upstream dependency conflict, or retry npm error this command with --force or --legacy-peer-deps npm error to accept an incorrect (and potentially broken) dependency resolution. npm error npm error npm error For a full report see: npm error /var/lib/renovatebot/cache/others/npm/_logs/2025-10-19T10_49_52_600Z-eresolve-report.txt npm error A complete log of this run can be found in: /var/lib/renovatebot/cache/others/npm/_logs/2025-10-19T10_49_52_600Z-debug-0.log ```
renovate-bot deleted branch renovate/sass-1.x-lockfile 2025-10-19 11:33:00 +00:00
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
nemunaire/reveil!299
No description provided.