forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a0bb05b
commit 49044f1
Showing
1 changed file
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
## 3.4.3 (2020-08-12) | ||
|
||
v3.4.2 release bumps `terser-webpack-plugin` to a version for which `npm audit` does not report a vulnerability. Note that **this vulnerability did not affect Create React App projects**, so this change is only necessary to satisfy auditing tools. | ||
|
||
### Migrating from 3.4.2 to 3.4.3 | ||
|
||
Inside any created project that has not been ejected, run: | ||
|
||
```sh | ||
npm install --save --save-exact [email protected] | ||
``` | ||
|
||
or | ||
|
||
```sh | ||
yarn add --exact [email protected] | ||
``` | ||
|
||
## 3.4.2 (2020-08-11) | ||
|
||
v3.4.2 release bumps `webpack-dev-server` to a version for which `npm audit` does not report a vulnerability. Note that **this vulnerability did not affect Create React App projects**, so this change is only necessary to satisfy auditing tools. | ||
|