Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2024

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
sass-loader 12.6.0 -> 16.0.5 age confidence

Release Notes

webpack-contrib/sass-loader (sass-loader)

v16.0.5

Compare Source

v16.0.4

Compare Source

v16.0.3

Compare Source

v16.0.2

Compare Source

v16.0.1

Compare Source

Bug Fixes

v16.0.0

Compare Source

⚠ BREAKING CHANGES
  • use modern Sass JS API by default for sass and sass-embedded

[!WARNING]

The sass options are different for the legacy (before) and modern APIs. Please look at docs how to migrate to the modern options.
Legacy options - https://sass-lang.com/documentation/js-api/interfaces/legacystringoptions/
Modern options - https://sass-lang.com/documentation/js-api/interfaces/options/

To return to the previous logic use:

module.exports = {
  module: {
    rules: [
      {
        test: /\.s[ac]ss$/i,
        use: [
          "style-loader",
          "css-loader",
          {
            loader: "sass-loader",
            options: {
              api: "legacy",
              // Your options
            },
          },
        ],
      },
    ],
  },
};
Features
  • use modern Sass JS API by default for sass and sass-embedded (10be1ba)

v15.0.0

Compare Source

⚠ BREAKING CHANGES
  • prefer sass-embedded over sass by default (#​1211)
Features
14.2.1 (2024-04-16)
Bug Fixes

v14.2.1

Compare Source

⚠ BREAKING CHANGES
  • prefer sass-embedded over sass by default (#​1211)
Features
14.2.1 (2024-04-16)
Bug Fixes

v14.2.0

Compare Source

⚠ BREAKING CHANGES
  • prefer sass-embedded over sass by default (#​1211)
Features
14.2.1 (2024-04-16)
Bug Fixes

v14.1.1

Compare Source

Features
  • added the modern-compiler value for API to reuse compiler process (#​1195) (cef40a8)
  • support webpack built-in resolver for modern and modern-compiler API (#​1197) (2265b72)

Notes:

Using the modern-compiler value for the api option together with sass-embedded reduces compilation time by 5-10 times, especially for projects using large files with a lot of @import/@use, for small files the build time reduction will not be significant.

14.1.1 (2024-02-19)
Bug Fixes

v14.1.0

Compare Source

Features
  • added the modern-compiler value for API to reuse compiler process (#​1195) (cef40a8)
  • support webpack built-in resolver for modern and modern-compiler API (#​1197) (2265b72)

Notes:

Using the modern-compiler value for the api option together with sass-embedded reduces compilation time by 5-10 times, especially for projects using large files with a lot of @import/@use, for small files the build time reduction will not be significant.

14.1.1 (2024-02-19)
Bug Fixes

v14.0.0

Compare Source

⚠ BREAKING CHANGES
  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)
13.3.3 (2023-12-25)
Bug Fixes
13.3.2 (2023-06-09)
Bug Fixes
13.3.1 (2023-05-28)
Bug Fixes

v13.3.3

Compare Source

⚠ BREAKING CHANGES
  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)
13.3.3 (2023-12-25)
Bug Fixes
13.3.2 (2023-06-09)
Bug Fixes
13.3.1 (2023-05-28)
Bug Fixes

v13.3.2

Compare Source

⚠ BREAKING CHANGES
  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)
13.3.3 (2023-12-25)
Bug Fixes
13.3.2 (2023-06-09)
Bug Fixes
13.3.1 (2023-05-28)
Bug Fixes

v13.3.1

Compare Source

⚠ BREAKING CHANGES
  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)
13.3.3 (2023-12-25)
Bug Fixes
13.3.2 (2023-06-09)
Bug Fixes
13.3.1 (2023-05-28)
Bug Fixes

v13.3.0

Compare Source

⚠ BREAKING CHANGES
  • removed fibers support
  • minimum supported Node.js version is 18.12.0 (627f55d)
13.3.3 (2023-12-25)
Bug Fixes
13.3.2 (2023-06-09)
Bug Fixes
13.3.1 (2023-05-28)
Bug Fixes

v13.2.2

Compare Source

Features
13.2.2 (2023-03-27)
Bug Fixes
13.2.1 (2023-03-18)
Bug Fixes
  • do not crash on a custom scheme in @import/@use for the modern API (21966ee)

v13.2.1

Compare Source

Features
13.2.2 (2023-03-27)
Bug Fixes
13.2.1 (2023-03-18)
Bug Fixes
  • do not crash on a custom scheme in @import/@use for the modern API (21966ee)

v13.2.0

Compare Source

Features
13.2.2 (2023-03-27)
Bug Fixes
13.2.1 (2023-03-18)
Bug Fixes
  • do not crash on a custom scheme in @import/@use for the modern API (21966ee)

v13.1.0

Compare Source

Features
13.0.2 (2022-06-27)
Bug Fixes
13.0.1 (2022-06-24)
Bug Fixes

v13.0.2

Compare Source

Features
13.0.2 (2022-06-27)
Bug Fixes
13.0.1 (2022-06-24)
Bug Fixes

v13.0.1

Compare Source

Features
13.0.2 (2022-06-27)
Bug Fixes
13.0.1 (2022-06-24)
Bug Fixes

v13.0.0

Compare Source

Features
13.0.2 (2022-06-27)
Bug Fixes
13.0.1 (2022-06-24)
Bug Fixes

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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the 🤖 Automatic Issues/pull requests marked with this label were generated automatically by our helper bots. label Jul 26, 2024
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from b094fc5 to 02ab675 Compare August 19, 2024 14:00
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 02ab675 to 8d24bbb Compare September 4, 2024 04:55
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 4 times, most recently from 84561a1 to 2594aa1 Compare September 21, 2024 03:51
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 2594aa1 to 45c5c8a Compare September 28, 2024 07:51
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 3 times, most recently from c31068f to 3cc9458 Compare October 18, 2024 00:57
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 7461412 to 75d5b4a Compare October 24, 2024 05:11
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 3 times, most recently from 651218f to f7ba09e Compare November 2, 2024 05:06
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 54803d8 to fb82f61 Compare November 15, 2024 06:10
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 3 times, most recently from 46d819c to 88bf612 Compare December 4, 2024 14:26
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 88bf612 to ae921cd Compare December 13, 2024 05:20
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from ae921cd to f731460 Compare January 4, 2025 07:48
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from f731460 to 72ddf20 Compare January 14, 2025 20:53
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 72ddf20 to 674a9bd Compare February 6, 2025 05:48
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 8ca5d1f to 61b0e4a Compare February 14, 2025 22:48
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 61b0e4a to 6cc5a39 Compare February 25, 2025 07:23
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 6cc5a39 to b910297 Compare March 18, 2025 02:58
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 3 times, most recently from 8abc41f to df22f0b Compare April 4, 2025 06:02
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from df22f0b to b72c617 Compare April 22, 2025 05:42
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 97d9ac8 to dcdfb26 Compare May 16, 2025 08:42
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from dcdfb26 to 1384ca0 Compare June 1, 2025 13:26
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 1384ca0 to 4c1e7c1 Compare June 10, 2025 01:33
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 4c1e7c1 to e12157d Compare August 6, 2025 04:41
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 98b7180 to 5162267 Compare August 19, 2025 19:11
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 5162267 to 71ed852 Compare August 26, 2025 03:48
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch 2 times, most recently from 8e2b108 to 6374a50 Compare September 6, 2025 04:53
@renovate renovate bot force-pushed the renovate/sass-loader-16.x branch from 6374a50 to 322a64b Compare September 20, 2025 05:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
🤖 Automatic Issues/pull requests marked with this label were generated automatically by our helper bots.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant