Skip to content

Commit 64e60c2

Browse files
committedMay 15, 2020
chore(release): 6.0.0
1 parent dd9ce50 commit 64e60c2

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed
 

‎CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,38 @@
22

33
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.
44

5+
## [6.0.0](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v5.1.1...v6.0.0) (2020-05-15)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* minimum supported Node.js version is `10.13`,
11+
* the plugin now accepts an object, you should change `new CopyPlugin(patterns, options)` to `new CopyPlugin({ patterns, options })`
12+
* migrate on `compilation.additionalAssets` hook
13+
* the `ignore` option was removed in favor `globOptions.ignore`
14+
* the `test` option was removed in favor the `transformPath` option
15+
* the `cache` option was renamed to the `cacheTransform` option, `cacheTransform` option should have only `directory` and `keys` properties when it is an object
16+
* global `context` and `ignore` options were removed in favor `patten.context` and `pattern.globOptions.ignore` options
17+
* the missing file error is now an error, before it was a warning
18+
* the `from` option now can only be a string, if you use `{ from: { glob: 'directory/**', dot: false } }` changed it to `{ from: 'directory/**', globOptions: { dot: false } }`
19+
* the `copyUnmodified` was removed without replacements
20+
* the `2` version of `webpack-dev-server` is not supported anymore
21+
* the `logLever` was removed in favor the `infrastructureLogging.level` option, please read the [documentation](https://webpack.js.org/configuration/other-options/#infrastructurelogginglevel)
22+
23+
24+
### Features
25+
26+
* implement the `concurrency` option ([#466](https://github.com/webpack-contrib/copy-webpack-plugin/issues/466)) ([c176d7d](https://github.com/webpack-contrib/copy-webpack-plugin/commit/c176d7d124cf3c5ad372576d4b0f7fbf5e1d0afc))
27+
* implement the `directory` option for the `cacheTransform` option ([29254e3](https://github.com/webpack-contrib/copy-webpack-plugin/commit/29254e394cb695d89b477f44f3a3bf8c99c74ca7))
28+
* implement the `noErrorOnMissing` option ([#475](https://github.com/webpack-contrib/copy-webpack-plugin/issues/475)) ([e3803ce](https://github.com/webpack-contrib/copy-webpack-plugin/commit/e3803ceffe93361184efc9b799be4c9dfb4eb467))
29+
* migrate on webpack built-in logger ([#446](https://github.com/webpack-contrib/copy-webpack-plugin/issues/446)) ([5af02bc](https://github.com/webpack-contrib/copy-webpack-plugin/commit/5af02bcfc716b6bca96b569740a45221a974ae61))
30+
31+
32+
### Bug Fixes
33+
34+
* asset size ([197b0d8](https://github.com/webpack-contrib/copy-webpack-plugin/commit/197b0d8d08e6ce976f645dade7641cfdcfc0781d))
35+
* persist assets between rebuilds ([57f3e61](https://github.com/webpack-contrib/copy-webpack-plugin/commit/57f3e618108c3a6c1f61f21186d69433ee51a561))
36+
537
### [5.1.1](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v5.1.0...v5.1.1) (2019-12-12)
638

739

‎package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "copy-webpack-plugin",
3-
"version": "5.1.1",
3+
"version": "6.0.0",
44
"description": "Copy files && directories with webpack",
55
"license": "MIT",
66
"repository": "webpack-contrib/copy-webpack-plugin",

0 commit comments

Comments
 (0)
Please sign in to comment.