Skip to content

Commit

Permalink
Add 3.4.2 to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon authored Aug 11, 2020
1 parent 5e41ca0 commit 5e703a5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
## 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.

### Migrating from 3.4.1 to 3.4.2

Inside any created project that has not been ejected, run:

```sh
npm install --save --save-exact react-scripts@3.4.2
```

or

```sh
yarn add --exact react-scripts@3.4.2
```

## 3.4.1 (2020-03-20)

v3.4.1 is a maintenance release that includes minor bug fixes and documentation updates including upgrading Babel to fix a bug in the 7.8 release line. This release also brings support for TypeScript 3.8.
Expand Down

2 comments on commit 5e703a5

@stefanscript
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hi Dan, thanks for this release. I still get a high vulnerability due to serialize-javascript, is there a plan to cover that too? Cheers

@PupoSDC
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this version actually fixed the coverage report issues introduced in 3.4.1 described here. npm run test -- --coverage works in 3.4.0, freaks out with .1 and it-s fine after .3.

Thanks!!

Please sign in to comment.