From 0f7d70e9d7b2f3ebf70c3505136ac2f5d7c553f1 Mon Sep 17 00:00:00 2001 From: Johannes Ewald Date: Mon, 20 Mar 2017 20:41:50 +0100 Subject: [PATCH] chore(release): 4.0.0 --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 38 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78d71d2b..f3cd6a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,40 @@ +# Change Log + +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. + + +# [4.0.0](https://github.com/webpack-contrib/less-loader/compare/v3.0.0...v4.0.0) (2017-03-20) + + +### Bug Fixes + +* error where not all files were watched ([53c90fc](https://github.com/webpack-contrib/less-loader/commit/53c90fc)) +* resolve alias ([98d4e63](https://github.com/webpack-contrib/less-loader/commit/98d4e63)) + + +### Chores + +* **dependencies:** Update peer dependencies ([24a6f66](https://github.com/webpack-contrib/less-loader/commit/24a6f66)) + + +### Features + +* **source-maps:** refactor source maps handling ([895044f](https://github.com/webpack-contrib/less-loader/commit/895044f)) +* allow user to choose between resolvers ([1d6e505](https://github.com/webpack-contrib/less-loader/commit/1d6e505)) +* improve formatting of error messages ([39772a5](https://github.com/webpack-contrib/less-loader/commit/39772a5)) +* make any file type importable ([d3022b8](https://github.com/webpack-contrib/less-loader/commit/d3022b8)) +* remove root option ([39ad4f8](https://github.com/webpack-contrib/less-loader/commit/39ad4f8)) + + +### BREAKING CHANGES + +* If you've already configured your `resolve.alias` with a `.less` extension, you can now remove that wrong extension. +* The root option was never documented, so it's very unlikely that this is actually a breaking change. However, since the option was removed, we need to flag this as breaking. +* **dependencies:** Require webpack 2 as peer dependency +* **source-maps:** Since the map is now passed as an object to the next loader, this could potentially break if another loader than the css-loader is used. The css-loader accepts both. + + + Changelog --------- diff --git a/package.json b/package.json index f3a89f0b..108b219e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "less-loader", - "version": "3.0.0", + "version": "4.0.0", "author": "Johannes Ewald @jhnns", "description": "Less loader for webpack. Compiles Less to CSS.", "main": "dist/cjs.js",