Skip to content

Releases: webpack-contrib/copy-webpack-plugin

v6.0.2

03 Jun 15:34
Compare
Choose a tag to compare

6.0.2 (2020-06-03)

Bug Fixes

  • security problem
  • compatibility with 10.13 version of Node.js

v6.0.1

16 May 16:28
Compare
Choose a tag to compare

6.0.1 (2020-05-16)

Bug Fixes

  • concurrency writing assets (#484) (bfc712d)
  • escaping special characters in the context option (0e62695)

v6.0.0

15 May 16:54
Compare
Choose a tag to compare

6.0.0 (2020-05-15)

⚠ BREAKING CHANGES

  • minimum supported Node.js version is 10.13,
  • the plugin now accepts an object, you should change new CopyPlugin(patterns, options) to new CopyPlugin({ patterns, options })
  • migrate on compilation.additionalAssets hook
  • the ignore option was removed in favor globOptions.ignore
  • the test option was removed in favor the transformPath option
  • the cache option was renamed to the cacheTransform option, cacheTransform option should have only directory and keys properties when it is an object
  • global context and ignore options were removed in favor patten.context and pattern.globOptions.ignore options
  • the missing file error is now an error, before it was a warning
  • 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 } }
  • the copyUnmodified was removed without replacements
  • the 2 version of webpack-dev-server is not supported anymore
  • the logLever was removed in favor the infrastructureLogging.level option, please read the documentation

Features

  • implement the concurrency option (#466) (c176d7d)
  • implement the directory option for the cacheTransform option (29254e3)
  • implement the noErrorOnMissing option (#475) (e3803ce)
  • migrate on webpack built-in logger (#446) (5af02bc)

Bug Fixes

v5.1.1

12 Dec 09:59
Compare
Choose a tag to compare

5.1.1 (2019-12-12)

Bug Fixes

v5.1.0

09 Dec 15:25
Compare
Choose a tag to compare

5.1.0 (2019-12-09)

Features

Bug Fixes

  • better to determine when glob is used (4826e56)

v5.0.5

06 Nov 17:48
Compare
Choose a tag to compare

5.0.5 (2019-11-06)

Performance Improvements

  • improvements for webpack@5

v5.0.4

26 Jul 10:37
Compare
Choose a tag to compare

5.0.4 (2019-07-26)

Bug Fixes

  • use posix separator for emitting assets (#392) (7f08be6)

v5.0.3

24 Apr 15:16
Compare
Choose a tag to compare

5.0.3 (2019-04-24)

Bug Fixes

  • alone [N] interpolation in to option (#375) (70917b7)

v5.0.2

22 Mar 15:51
Compare
Choose a tag to compare

5.0.2 (2019-03-22)

Bug Fixes

Performance Improvements

v5.0.1

11 Mar 13:17
Compare
Choose a tag to compare

5.0.1 (2019-03-11)

Bug Fixes

  • respect base of glob for context dependencies (#352) (5b407f1)