Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: webpack-contrib/sass-loader
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v13.2.2
Choose a base ref
...
head repository: webpack-contrib/sass-loader
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v13.3.0
Choose a head ref
  • 8 commits
  • 7 files changed
  • 5 contributors

Commits on Apr 19, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    cdcd9da View commit details

Commits on Apr 23, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    71b51e1 View commit details

Commits on Apr 25, 2023

  1. chore(deps): bump yaml and lint-staged (#1133)

    Bumps [yaml](https://github.com/eemeli/yaml) to 2.2.2 and updates ancestor dependency [lint-staged](https://github.com/okonet/lint-staged). These dependencies need to be updated together.
    
    
    Updates `yaml` from 1.10.2 to 2.2.2
    - [Release notes](https://github.com/eemeli/yaml/releases)
    - [Commits](eemeli/yaml@v1.10.2...v2.2.2)
    
    Updates `lint-staged` from 12.5.0 to 13.2.1
    - [Release notes](https://github.com/okonet/lint-staged/releases)
    - [Commits](lint-staged/lint-staged@v12.5.0...v13.2.1)
    
    ---
    updated-dependencies:
    - dependency-name: yaml
      dependency-type: indirect
    - dependency-name: lint-staged
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Apr 25, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2965a13 View commit details

Commits on May 2, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    dff4bba View commit details

Commits on May 6, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    520b22b View commit details

Commits on May 12, 2023

  1. Copy the full SHA
    13b0ae1 View commit details

Commits on May 22, 2023

  1. Copy the full SHA
    9a03c87 View commit details
  2. Copy the full SHA
    daf62be View commit details
Showing with 2,628 additions and 2,239 deletions.
  1. +5 −1 .github/workflows/nodejs.yml
  2. +7 −0 CHANGELOG.md
  3. +3 −3 README.md
  4. +2,360 −2,145 package-lock.json
  5. +21 −18 package.json
  6. +228 −68 test/__snapshots__/loader.test.js.snap
  7. +4 −4 test/__snapshots__/sassOptions-option.test.js.snap
6 changes: 5 additions & 1 deletion .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]
webpack-version: [latest]

runs-on: ${{ matrix.os }}
@@ -82,6 +82,10 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Uninstall fibers
run: npm uninstall fibers --save-dev --no-scripts --ignore-scripts
if: matrix.node-version == '20.x'

- name: Install dependencies
run: npm ci

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [13.3.0](https://github.com/webpack-contrib/sass-loader/compare/v13.2.2...v13.3.0) (2023-05-22)


### Features

* add support for node-sass v9 ([#1140](https://github.com/webpack-contrib/sass-loader/issues/1140)) ([9a03c87](https://github.com/webpack-contrib/sass-loader/commit/9a03c87b192866a616a3fbab37dbeb3ea132de6b))

### [13.2.2](https://github.com/webpack-contrib/sass-loader/compare/v13.2.1...v13.2.2) (2023-03-27)


6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@
[![node][node]][node-url]
[![tests][tests]][tests-url]
[![coverage][cover]][cover-url]
[![chat][chat]][chat-url]
[![discussion][discussion]][discussion-url]
[![size][size]][size-url]

# sass-loader
@@ -952,7 +952,7 @@ Please take a moment to read our contributing guidelines if you haven't yet done
[tests-url]: https://github.com/webpack-contrib/sass-loader/actions
[cover]: https://codecov.io/gh/webpack-contrib/sass-loader/branch/master/graph/badge.svg
[cover-url]: https://codecov.io/gh/webpack-contrib/sass-loader
[chat]: https://badges.gitter.im/webpack/webpack.svg
[chat-url]: https://gitter.im/webpack/webpack
[discussion]: https://img.shields.io/github/discussions/webpack/webpack
[discussion-url]: https://github.com/webpack/webpack/discussions
[size]: https://packagephobia.now.sh/badge?p=sass-loader
[size-url]: https://packagephobia.now.sh/result?p=sass-loader
Loading