Skip to content

Commit 7641a3c

Browse files
committedMar 20, 2020
Prepare 3.4.1 release
1 parent d5b527f commit 7641a3c

File tree

1 file changed

+63
-0
lines changed

1 file changed

+63
-0
lines changed
 

‎CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,66 @@
1+
## 3.4.1 (2020-03-20)
2+
3+
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.
4+
5+
#### :bug: Bug Fix
6+
7+
- `react-scripts`
8+
- [#8276](https://github.com/facebook/create-react-app/pull/8276) Use native ESLint behaviour when extending ([@mrmckeb](https://github.com/mrmckeb))
9+
- [#7203](https://github.com/facebook/create-react-app/pull/7203) Closes webpack dev server and exits process on "end" stdin ([@kelseyleftwich](https://github.com/kelseyleftwich))
10+
- `babel-preset-react-app`
11+
- [#8526](https://github.com/facebook/create-react-app/pull/8526) Fix optional chaining and nullish coalescing support ([@ianschmitz](https://github.com/ianschmitz))
12+
- `cra-template`, `eslint-config-react-app`, `react-scripts`
13+
- [#7790](https://github.com/facebook/create-react-app/pull/7790) Widen eslint-config-react-app peer dependency versions ([@lukyth](https://github.com/lukyth))
14+
15+
#### :nail_care: Enhancement
16+
17+
- `cra-template-typescript`, `cra-template`
18+
- [#8558](https://github.com/facebook/create-react-app/pull/8558) Add React.StrictMode to default templates ([@connkat](https://github.com/connkat))
19+
- `react-scripts`
20+
- [#8539](https://github.com/facebook/create-react-app/pull/8539) allow specification of package.main in template.json ([@EvanBoyle](https://github.com/EvanBoyle))
21+
22+
#### :memo: Documentation
23+
24+
- Other
25+
- [#8515](https://github.com/facebook/create-react-app/pull/8515) Fix proxying API request docs ([@hjr3](https://github.com/hjr3))
26+
- [#8561](https://github.com/facebook/create-react-app/pull/8561) Indicate that the file structure is the template's ([@Vinnl](https://github.com/Vinnl))
27+
- `react-scripts`
28+
- [#8276](https://github.com/facebook/create-react-app/pull/8276) Use native ESLint behaviour when extending ([@mrmckeb](https://github.com/mrmckeb))
29+
30+
#### :hammer: Underlying Tools
31+
32+
- `babel-preset-react-app`, `create-react-app`, `react-dev-utils`, `react-error-overlay`, `react-scripts`
33+
- [#8681](https://github.com/facebook/create-react-app/pull/8681) Update to Babel 7.9 ([@ianschmitz](https://github.com/ianschmitz))
34+
- [#8620](https://github.com/facebook/create-react-app/pull/8620) Bump dependencies ([@ianschmitz](https://github.com/ianschmitz))
35+
- `react-scripts`
36+
- [#8509](https://github.com/facebook/create-react-app/pull/8509) Bumps pnp-webpack-plugin ([@arcanis](https://github.com/arcanis))
37+
38+
#### Committers: 9
39+
40+
- Brody McKee ([@mrmckeb](https://github.com/mrmckeb))
41+
- Evan Boyle ([@EvanBoyle](https://github.com/EvanBoyle))
42+
- Herman J. Radtke III ([@hjr3](https://github.com/hjr3))
43+
- Ian Schmitz ([@ianschmitz](https://github.com/ianschmitz))
44+
- Kanitkorn Sujautra ([@lukyth](https://github.com/lukyth))
45+
- KatCon ([@connkat](https://github.com/connkat))
46+
- Kelsey Leftwich ([@kelseyleftwich](https://github.com/kelseyleftwich))
47+
- Maël Nison ([@arcanis](https://github.com/arcanis))
48+
- Vincent ([@Vinnl](https://github.com/Vinnl))
49+
50+
### Migrating from 3.4.0 to 3.4.1
51+
52+
Inside any created project that has not been ejected, run:
53+
54+
```sh
55+
npm install --save --save-exact react-scripts@3.4.1
56+
```
57+
58+
or
59+
60+
```sh
61+
yarn add --exact react-scripts@3.4.1
62+
```
63+
164
## 3.4.0 (2020-02-14)
265

366
v3.4.0 is a minor release that adds new features, including support for SSL and setting `PUBLIC_URL` in development. It also includes a fix for Hot Module Reloading with CSS Modules as well as other bug fixes.

0 commit comments

Comments
 (0)
Please sign in to comment.