Skip to content

Commit 32c06e6

Browse files
committedFeb 3, 2021
Prepare 4.0.2 release
1 parent b9963ab commit 32c06e6

File tree

2 files changed

+1059
-971
lines changed

2 files changed

+1059
-971
lines changed
 

‎CHANGELOG.md

+84
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,87 @@
1+
## 4.0.2 (2021-02-03)
2+
3+
v4.0.2 is a maintenance release that includes minor bug fixes and documentation updates.
4+
5+
#### :rocket: New Feature
6+
7+
- `react-scripts`
8+
- [#8986](https://github.com/facebook/create-react-app/pull/8986) Add support for new BUILD_PATH advanced configuration variable ([@ajhyndman](https://github.com/ajhyndman))
9+
10+
#### :bug: Bug Fix
11+
12+
- `react-scripts`
13+
- [#10170](https://github.com/facebook/create-react-app/pull/10170) Add opt-out for eslint-webpack-plugin ([@mrmckeb](https://github.com/mrmckeb))
14+
- [#9872](https://github.com/facebook/create-react-app/pull/9872) fix(react-scripts): add missing peer dependency react and update react-refresh-webpack-plugin ([@merceyz](https://github.com/merceyz))
15+
- [#9964](https://github.com/facebook/create-react-app/pull/9964) Add TypeScript 4.x as peerDependency to react-scripts ([@sheepsteak](https://github.com/sheepsteak))
16+
17+
#### :nail_care: Enhancement
18+
19+
- `react-scripts`
20+
- [#9977](https://github.com/facebook/create-react-app/pull/9977) Move ESLint cache file into node_modules ([@ehsankhfr](https://github.com/ehsankhfr))
21+
- [#9569](https://github.com/facebook/create-react-app/pull/9569) Improve vendor chunk names in development ([@jrr](https://github.com/jrr))
22+
23+
#### :memo: Documentation
24+
25+
- [#9473](https://github.com/facebook/create-react-app/pull/9473) docs: add missing override options for Jest config ([@tobiasbueschel](https://github.com/tobiasbueschel))
26+
- [#10314](https://github.com/facebook/create-react-app/pull/10314) Update using-the-public-folder.md ([@Avivhdr](https://github.com/Avivhdr))
27+
- [#10214](https://github.com/facebook/create-react-app/pull/10214) Remove references to Node 8 ([@ianschmitz](https://github.com/ianschmitz))
28+
29+
#### :house: Internal
30+
31+
- `react-scripts`
32+
- [#10027](https://github.com/facebook/create-react-app/pull/10027) appTsConfig immutability handling by immer ([@josezone](https://github.com/josezone))
33+
- `create-react-app`
34+
- [#10217](https://github.com/facebook/create-react-app/pull/10217) Fix CI tests ([@ianschmitz](https://github.com/ianschmitz))
35+
- `react-dev-utils`, `react-error-overlay`, `react-scripts`
36+
- [#10091](https://github.com/facebook/create-react-app/pull/10091) Recovered some integration tests ([@maxsbelt](https://github.com/maxsbelt))
37+
38+
#### :hammer: Underlying Tools
39+
40+
- `react-scripts`
41+
- [#10216](https://github.com/facebook/create-react-app/pull/10216) Revert "Update postcss packages" ([@ianschmitz](https://github.com/ianschmitz))
42+
- [#9988](https://github.com/facebook/create-react-app/pull/9988) Upgrade sass-loader ([@ehsankhfr](https://github.com/ehsankhfr))
43+
- [#10003](https://github.com/facebook/create-react-app/pull/10003) Update postcss packages ([@raix](https://github.com/raix))
44+
- [#10213](https://github.com/facebook/create-react-app/pull/10213) Upgrade @svgr/webpack to fix build error ([@jabranr](https://github.com/jabranr))
45+
- `react-dev-utils`
46+
- [#10198](https://github.com/facebook/create-react-app/pull/10198) remove chalk from formatWebpackMessages ([@jasonwilliams](https://github.com/jasonwilliams))
47+
- `cra-template-typescript`
48+
- [#10141](https://github.com/facebook/create-react-app/pull/10141) chore: bump typescript version ([@trainto](https://github.com/trainto))
49+
- `cra-template-typescript`, `cra-template`
50+
- [#10143](https://github.com/facebook/create-react-app/pull/10143) chore: bump web-vital dependency version ([@sahilpurav](https://github.com/sahilpurav))
51+
52+
#### Committers: 15
53+
54+
- Andrew Hyndman ([@ajhyndman](https://github.com/ajhyndman))
55+
- Aviv Hadar ([@Avivhdr](https://github.com/Avivhdr))
56+
- Brody McKee ([@mrmckeb](https://github.com/mrmckeb))
57+
- Chris Shepherd ([@sheepsteak](https://github.com/sheepsteak))
58+
- EhsanKhaki ([@ehsankhfr](https://github.com/ehsankhfr))
59+
- Hakjoon Sim ([@trainto](https://github.com/trainto))
60+
- Ian Schmitz ([@ianschmitz](https://github.com/ianschmitz))
61+
- Jabran Rafique⚡️ ([@jabranr](https://github.com/jabranr))
62+
- Jason Williams ([@jasonwilliams](https://github.com/jasonwilliams))
63+
- John Ruble ([@jrr](https://github.com/jrr))
64+
- Kristoffer K. ([@merceyz](https://github.com/merceyz))
65+
- Morten N.O. Nørgaard Henriksen ([@raix](https://github.com/raix))
66+
- Sahil Purav ([@sahilpurav](https://github.com/sahilpurav))
67+
- Sergey Makarov ([@maxsbelt](https://github.com/maxsbelt))
68+
- Tobias Büschel ([@tobiasbueschel](https://github.com/tobiasbueschel))
69+
- mad-jose ([@josezone](https://github.com/josezone))
70+
71+
# Migrating from 4.0.1 to 4.0.2
72+
73+
Inside any created project that has not been ejected, run:
74+
75+
```bash
76+
npm install --save --save-exact react-scripts@4.0.2
77+
```
78+
79+
or
80+
81+
```
82+
yarn add --exact react-scripts@4.0.2
83+
```
84+
185
## 4.0.1 (2020-11-23)
286

387
v4.0.1 is a maintenance release that includes minor bug fixes and documentation updates.

‎packages/create-react-app/yarn.lock.cached

+975-971
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.