Update dependency sass to ^1.96.0 #293

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.90.0 -> ^1.96.0

Release Notes

sass/dart-sass (sass)

v1.96.0

Compare Source

  • Allow numbers with complex units (more than one numerator unit or more than
    zero denominator units) to be emitted to CSS. These are now emitted as
    calc() expressions, which now support complex units in plain CSS.

v1.95.1

Compare Source

  • No user-visible changes.

v1.95.0

Compare Source

  • Add support for the CSS-style if() function. In addition to supporting the
    plain CSS syntax, this also supports a sass() query that takes a Sass
    expression that evaluates to true or false at preprocessing time depending
    on whether the Sass value is truthy. If there are no plain-CSS queries, the
    function will return the first value whose query returns true during
    preprocessing. For example, if(sass(false): 1; sass(true): 2; else: 3)
    returns 2.

  • The old Sass if() syntax is now deprecated. Users are encouraged to migrate
    to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to
    if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that
    they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special
    variable strings" (like var()), meaning they can now be used in place of
    multiple arguments or syntax fragments in various CSS functions.

v1.94.3

Compare Source

  • Fix the span reported for standalone % expressions followed by whitespace.

v1.94.2

Compare Source

Command-Line Interface
  • Using --fatal-deprecation <version> no longer emits warnings about
    deprecations that are obsolete.
Dart API
  • Deprecation.forVersion now excludes obsolete deprecations from the set it
    returns.
JS API
  • Excludes obsolete deprecations from fatalDeprecations when a Version is
    passed.
Node.js Embedded Host
  • Fix a bug where a variable could be used before it was initialized during
    async compilation.

v1.94.1

Compare Source

  • No user-visible changes.

v1.94.0

Compare Source

  • Potentially breaking compatibility fix: @function rules whose names
    begin with -- are now parsed as unknown at-rules to support the plain CSS
    @function rule. Within this rule, the result property is parsed as raw
    CSS just like custom properties.

  • Potentially breaking compatibility fix: @mixin rules whose names begin
    with -- are now errors. These are not yet parsed as unknown at-rules because
    no browser currently supports CSS mixins.

v1.93.3

Compare Source

  • Fix a performance regression that was introduced in 1.92.0.

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.


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.90.0` -> `^1.96.0`](https://renovatebot.com/diffs/npm/sass/1.90.0/1.96.0) | --- ### Release Notes <details> <summary>sass/dart-sass (sass)</summary> ### [`v1.96.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1960) [Compare Source](https://github.com/sass/dart-sass/compare/1.95.1...1.96.0) - Allow numbers with complex units (more than one numerator unit or more than zero denominator units) to be emitted to CSS. These are now emitted as `calc()` expressions, which now support complex units in plain CSS. ### [`v1.95.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1951) [Compare Source](https://github.com/sass/dart-sass/compare/1.95.0...1.95.1) - No user-visible changes. ### [`v1.95.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1950) [Compare Source](https://github.com/sass/dart-sass/compare/1.94.3...1.95.0) - Add support for the [CSS-style `if()` function]. In addition to supporting the plain CSS syntax, this also supports a `sass()` query that takes a Sass expression that evaluates to `true` or `false` at preprocessing time depending on whether the Sass value is truthy. If there are no plain-CSS queries, the function will return the first value whose query returns true during preprocessing. For example, `if(sass(false): 1; sass(true): 2; else: 3)` returns `2`. [CSS-style `if()` function]: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Values/if - The old Sass `if()` syntax is now deprecated. Users are encouraged to migrate to the new CSS syntax. `if($condition, $if-true, $if-false)` can be changed to `if(sass($condition): $if-true; else: $if-false)`. See [the Sass website](https://sass-lang.com/d/if-function) for details. - Plain-CSS `if()` functions are now considered "special numbers", meaning that they can be used in place of arguments to CSS color functions. - Plain-CSS `if()` functions and `attr()` functions are now considered "special variable strings" (like `var()`), meaning they can now be used in place of multiple arguments or syntax fragments in various CSS functions. ### [`v1.94.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1943) [Compare Source](https://github.com/sass/dart-sass/compare/1.94.2...1.94.3) - Fix the span reported for standalone `%` expressions followed by whitespace. ### [`v1.94.2`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1942) [Compare Source](https://github.com/sass/dart-sass/compare/1.94.1...1.94.2) ##### Command-Line Interface - Using `--fatal-deprecation <version>` no longer emits warnings about deprecations that are obsolete. ##### Dart API - `Deprecation.forVersion` now excludes obsolete deprecations from the set it returns. ##### JS API - Excludes obsolete deprecations from `fatalDeprecations` when a `Version` is passed. ##### Node.js Embedded Host - Fix a bug where a variable could be used before it was initialized during async compilation. ### [`v1.94.1`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1941) [Compare Source](https://github.com/sass/dart-sass/compare/1.94.0...1.94.1) - No user-visible changes. ### [`v1.94.0`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1940) [Compare Source](https://github.com/sass/dart-sass/compare/1.93.3...1.94.0) - **Potentially breaking compatibility fix:** `@function` rules whose names begin with `--` are now parsed as unknown at-rules to support the plain CSS `@function` rule. Within this rule, the `result` property is parsed as raw CSS just like custom properties. - **Potentially breaking compatibility fix:** `@mixin` rules whose names begin with `--` are now errors. These are not yet parsed as unknown at-rules because no browser currently supports CSS mixins. ### [`v1.93.3`](https://github.com/sass/dart-sass/blob/HEAD/CHANGELOG.md#1933) [Compare Source](https://github.com/sass/dart-sass/compare/1.93.2...1.93.3) - Fix a performance regression that was introduced in 1.92.0. ### [`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. </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:eyJjcmVhdGVkSW5WZXIiOiIzNy40NDAuNyIsInVwZGF0ZWRJblZlciI6IjQyLjQzLjAiLCJ0YXJnZXRCcmFuY2giOiJkZXZlbG9wIiwibGFiZWxzIjpbXX0=-->
Update dependency sass to ^1.91.0
Some checks failed
Build and Deploy Website / Build Website (push) Failing after 2s
Build and Deploy Website / Deploy Website (push) Failing after 0s
Build and Deploy Website / Build Dev Website (push) Successful in 1m25s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
00b75966c1
renovate-bot changed title from Update dependency sass to ^1.91.0 to Update dependency sass to ^1.92.0 2025-09-02 21:02:11 +00:00
renovate-bot force-pushed renovate/sass-1.x from 00b75966c1
Some checks failed
Build and Deploy Website / Build Website (push) Failing after 2s
Build and Deploy Website / Deploy Website (push) Failing after 0s
Build and Deploy Website / Build Dev Website (push) Successful in 1m25s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 7a9589eb75
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) Successful in 1m21s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-02 21:02:13 +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:04:00 +00:00
renovate-bot force-pushed renovate/sass-1.x from 7a9589eb75
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) Successful in 1m21s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 69837b88b4
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) Successful in 4m2s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-06 00:04:02 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.92.1 to Update dependency sass to ^1.93.0 2025-09-19 23:02:15 +00:00
renovate-bot force-pushed renovate/sass-1.x from 69837b88b4
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) Successful in 4m2s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 92f7f6ea6d
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) Successful in 1m26s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-19 23:02:17 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.93.0 to Update dependency sass to ^1.93.1 2025-09-22 23:02:14 +00:00
renovate-bot force-pushed renovate/sass-1.x from 92f7f6ea6d
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) Successful in 1m26s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 7ad8d36c26
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) Successful in 1m14s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-22 23:02:15 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.93.1 to Update dependency sass to ^1.93.2 2025-09-23 22:02:10 +00:00
renovate-bot force-pushed renovate/sass-1.x from 7ad8d36c26
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) Successful in 1m14s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 1f055f84e5
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) Successful in 1m24s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-23 22:02:12 +00:00
Compare
renovate-bot force-pushed renovate/sass-1.x from 1f055f84e5
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) Successful in 1m24s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to a9d4af1cd0
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) Successful in 1m17s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-09-26 01:03:37 +00:00
Compare
renovate-bot force-pushed renovate/sass-1.x from a9d4af1cd0
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) Successful in 1m17s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 615aebfb8d
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) Successful in 2m58s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-10-03 22:02:07 +00:00
Compare
renovate-bot force-pushed renovate/sass-1.x from 615aebfb8d
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) Successful in 2m58s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 20ca1922b5
Some checks failed
Build and Deploy Website / Build Website (push) Failing after 0s
Build and Deploy Website / Build Dev Website (push) Successful in 1m34s
Build and Deploy Website / Deploy Website (push) Failing after 0s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
2025-10-21 23:03:10 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.93.2 to Update dependency sass to ^1.93.3 2025-10-31 15:02:00 +00:00
renovate-bot force-pushed renovate/sass-1.x from 20ca1922b5
Some checks failed
Build and Deploy Website / Build Website (push) Failing after 0s
Build and Deploy Website / Build Dev Website (push) Successful in 1m34s
Build and Deploy Website / Deploy Website (push) Failing after 0s
Build and Deploy Website / Deploy Dev Website (push) Failing after 0s
to 2af3ad7947
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 1m53s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-10-31 15:02:03 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.93.3 to Update dependency sass to ^1.94.0 2025-11-11 00:03:14 +00:00
renovate-bot force-pushed renovate/sass-1.x from 2af3ad7947
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 1m53s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to 115cdd398b
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 2m18s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-11-11 00:03:16 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.94.0 to Update dependency sass to ^1.94.1 2025-11-18 02:02:08 +00:00
renovate-bot force-pushed renovate/sass-1.x from 115cdd398b
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 2m18s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to 5376fbda7d
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 1m41s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-11-18 02:02:11 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.94.1 to Update dependency sass to ^1.94.2 2025-11-20 01:03:33 +00:00
renovate-bot force-pushed renovate/sass-1.x from 5376fbda7d
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 1m41s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to 82a121e58f
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 2m1s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-11-20 01:03:35 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.94.2 to Update dependency sass to ^1.94.3 2025-12-08 19:02:14 +00:00
renovate-bot force-pushed renovate/sass-1.x from 82a121e58f
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 2m1s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to 02d0bcf9b1
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 1m24s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-12-08 19:02:15 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.94.3 to Update dependency sass to ^1.95.0 2025-12-08 20:04:13 +00:00
renovate-bot force-pushed renovate/sass-1.x from 02d0bcf9b1
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 1m24s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to 06a9ba3640
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 1m23s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-12-08 20:04:14 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.95.0 to Update dependency sass to ^1.95.1 2025-12-10 00:03:25 +00:00
renovate-bot force-pushed renovate/sass-1.x from 06a9ba3640
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 1m23s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to f7681705bf
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 1m34s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-12-10 00:03:27 +00:00
Compare
renovate-bot changed title from Update dependency sass to ^1.95.1 to Update dependency sass to ^1.96.0 2025-12-11 01:03:45 +00:00
renovate-bot force-pushed renovate/sass-1.x from f7681705bf
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 1m34s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
to de95fa6f80
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 12m58s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
2025-12-11 01:03:47 +00:00
Compare
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 12m58s
Build and Deploy Website / Deploy Dev Website (push) Has been skipped
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 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/sp-codes.de!293
No description provided.