Skip to content

Commit 1787d2d

Browse files
committedMar 4, 2021
chore(release): 8.0.0
1 parent 83601dc commit 1787d2d

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed
 

‎CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
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+
## [8.0.0](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v7.0.0...v8.0.0) (2021-03-04)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* logic for some placeholders was changed:
11+
- `[hash]` and `[fullhash]` works as in webpack (i.e. it is `hash` of build, not content hash of file), to migrate change `[name].[hash].[ext]` to `[name].[contenthash][ext]`
12+
- `[ext]` doesn't require `.` (dot) before, i.e. change `[name].[ext]` to `[name][ext]`
13+
- `[<hashType>:contenthash:<digestType>:<length>]` and `[<hashType>:hash:<digestType>:<length>]` is not supported anymore, you can use `output.hashDigest`, `output.hashDigestLength` and `output.hashFunction` options to setup it
14+
- `[N]` was removed in favor of using the `to` option as a function
15+
- `[folder]` was removed
16+
- `[emoji]` was removed
17+
18+
### Features
19+
20+
* added `priority` option ([#590](https://github.com/webpack-contrib/copy-webpack-plugin/issues/590)) ([ea610bc](https://github.com/webpack-contrib/copy-webpack-plugin/commit/ea610bc1a0fa7097f291b0928fb28eb96b0f03af))
21+
522
## [7.0.0](https://github.com/webpack-contrib/copy-webpack-plugin/compare/v6.4.0...v7.0.0) (2020-12-10)
623

724

‎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": "7.0.0",
3+
"version": "8.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.