From aa9b53b4d1c14117c4ca114a13cecb6e53b4e87a Mon Sep 17 00:00:00 2001 From: evilebottnawi Date: Thu, 29 Aug 2019 18:01:49 +0300 Subject: [PATCH] chore(release): 8.0.0 --- CHANGELOG.md | 25 +++++++++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 954b24a2..6483443c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,31 @@ 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. +## [8.0.0](https://github.com/webpack-contrib/sass-loader/compare/v7.3.1...v8.0.0) (2019-08-29) + + +### ⚠ BREAKING CHANGES + +* minimum required `webpack` version is `4.36.0` +* minimum required `node.js` version is `8.9.0` +* move all sass (`includePaths`, `importer`, `functions`) options to the `sassOptions` option. The `functions` option can't be used as `Function`, you should use `sassOption` as `Function` to achieve this. +* the `data` option was renamed to the `prependData` option +* default value of the `sourceMap` option depends on the `devtool` value (`eval`/`false` values don't enable source map generation) + + +### Features + +* automatically use the `fibers` package if it is possible ([#744](https://github.com/webpack-contrib/sass-loader/issues/744)) ([96184e1](https://github.com/webpack-contrib/sass-loader/commit/96184e1)) +* source map generation depends on the `devtool` option ([#743](https://github.com/webpack-contrib/sass-loader/issues/743)) ([fcea88e](https://github.com/webpack-contrib/sass-loader/commit/fcea88e)) +* validate loader options ([#737](https://github.com/webpack-contrib/sass-loader/issues/737)) ([7b543fc](https://github.com/webpack-contrib/sass-loader/commit/7b543fc)) +* reworked error handling from `node-sass`/`sass` +* improve resolution for `@import` (including support `_index` and `index` files in a directory) + +### Bug Fixes + +* compatibility with `pnp` + + ### [7.3.1](https://github.com/webpack-contrib/sass-loader/compare/v7.3.0...v7.3.1) (2019-08-20) diff --git a/package-lock.json b/package-lock.json index 998a188c..2d9e668f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "sass-loader", - "version": "7.3.1", + "version": "8.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 7cb98144..c474e9a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sass-loader", - "version": "7.3.1", + "version": "8.0.0", "description": "Sass loader for webpack", "license": "MIT", "repository": "webpack-contrib/sass-loader",