Skip to content

Commit 6a74342

Browse files
committed
Prepare 3.2.0 release
1 parent 88cf8cd commit 6a74342

File tree

2 files changed

+435
-371
lines changed

2 files changed

+435
-371
lines changed

CHANGELOG.md

+85
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
1+
## 3.2.0 (2019-10-03)
2+
3+
v3.2.0 is a minor release that adds support for production profiling and ignoring TypeScript type errors to make migrating JavaScript projects to TypeScript easier. It also includes other minor bug fixes and documentation updates.
4+
5+
#### :rocket: New Feature
6+
7+
- `react-scripts`
8+
- [#7737](https://github.com/facebook/create-react-app/pull/7737) Support production profiling with React Developer Tools ([@JacobMGEvans](https://github.com/JacobMGEvans))
9+
- `react-dev-utils`, `react-scripts`
10+
- [#6931](https://github.com/facebook/create-react-app/pull/6931) Adds TSC_COMPILE_ON_ERROR env var... ([@kylebebak](https://github.com/kylebebak))
11+
12+
#### :bug: Bug Fix
13+
14+
- `react-scripts`
15+
- [#7754](https://github.com/facebook/create-react-app/pull/7754) Fix linting error when using rest props ([@alexandrtovmach](https://github.com/alexandrtovmach))
16+
- `react-app-polyfill`
17+
- [#7205](https://github.com/facebook/create-react-app/pull/7205) Guard polyfills against window possibly being undefined ([@jxom](https://github.com/jxom))
18+
19+
#### :nail_care: Enhancement
20+
21+
- `react-scripts`
22+
- [#7687](https://github.com/facebook/create-react-app/pull/7687) Use installing package manager in README ([@ashr81](https://github.com/ashr81))
23+
- [#7755](https://github.com/facebook/create-react-app/pull/7755) Support setting baseUrl to root directory ([@rovansteen](https://github.com/rovansteen))
24+
- [#7530](https://github.com/facebook/create-react-app/pull/7530) only load eslint config when EXTEND_ESLINT environment variable is specified/ do not swallow eslint config errors ([@n1ru4l](https://github.com/n1ru4l))
25+
- [#7742](https://github.com/facebook/create-react-app/pull/7742) set output.globalObject to 'this' ([@kentcdodds](https://github.com/kentcdodds))
26+
- [#7721](https://github.com/facebook/create-react-app/pull/7721) Add "entrypoints" key to asset manifest ([@samuelmeuli](https://github.com/samuelmeuli))
27+
- [#7562](https://github.com/facebook/create-react-app/pull/7562) enable .eslintignore again ([@igtm](https://github.com/igtm))
28+
- `react-dev-utils`
29+
- [#6980](https://github.com/facebook/create-react-app/pull/6980) Stop hiding the column number of ESLint errors ([@justingrant](https://github.com/justingrant))
30+
31+
#### :memo: Documentation
32+
33+
- [#7302](https://github.com/facebook/create-react-app/pull/7302) docs: note that 2 to 3 migration may require deletion of node_modules ([@kimpers](https://github.com/kimpers))
34+
- [#7757](https://github.com/facebook/create-react-app/pull/7757) Documentation typo fix: accessbile→accessible ([@tomer](https://github.com/tomer))
35+
- [#7601](https://github.com/facebook/create-react-app/pull/7601) [Documentation] Updated list of supported Jest config overrides ([@neilbryson](https://github.com/neilbryson))
36+
- [#7705](https://github.com/facebook/create-react-app/pull/7705) Update runtime chunk name separator in docs ([@samuelmeuli](https://github.com/samuelmeuli))
37+
38+
#### :house: Internal
39+
40+
- `react-scripts`
41+
- [#7752](https://github.com/facebook/create-react-app/pull/7752) Fix wrong letter casing ([@lewislbr](https://github.com/lewislbr))
42+
- `react-dev-utils`, `react-scripts`
43+
- [#7707](https://github.com/facebook/create-react-app/pull/7707) Remove 'shortcut' link type before 'icon' ([@lewislbr](https://github.com/lewislbr))
44+
45+
#### :hammer: Underlying Tools
46+
47+
- `react-scripts`
48+
- [#7729](https://github.com/facebook/create-react-app/pull/7729) Remove switch case ([@andrelmlins](https://github.com/andrelmlins))
49+
50+
#### Committers: 19
51+
52+
- Alexandr Tovmach ([@alexandrtovmach](https://github.com/alexandrtovmach))
53+
- André Lins ([@andrelmlins](https://github.com/andrelmlins))
54+
- Ashrith Reddy ([@ashr81](https://github.com/ashr81))
55+
- Federico Zivolo ([@FezVrasta](https://github.com/FezVrasta))
56+
- Iguchi Tomokatsu ([@igtm](https://github.com/igtm))
57+
- Jacob M-G Evans ([@JacobMGEvans](https://github.com/JacobMGEvans))
58+
- Jake Moxey ([@jxom](https://github.com/jxom))
59+
- Justin Grant ([@justingrant](https://github.com/justingrant))
60+
- Kent C. Dodds ([@kentcdodds](https://github.com/kentcdodds))
61+
- Kim Persson ([@kimpers](https://github.com/kimpers))
62+
- Kyle Bebak ([@kylebebak](https://github.com/kylebebak))
63+
- Laurin Quast ([@n1ru4l](https://github.com/n1ru4l))
64+
- Lewis Llobera ([@lewislbr](https://github.com/lewislbr))
65+
- Rakan Nimer ([@rakannimer](https://github.com/rakannimer))
66+
- Reece Dunham ([@RDIL](https://github.com/RDIL))
67+
- Robert van Steen ([@rovansteen](https://github.com/rovansteen))
68+
- Samuel Meuli ([@samuelmeuli](https://github.com/samuelmeuli))
69+
- Tomer Cohen ([@tomer](https://github.com/tomer))
70+
- neilbryson ([@neilbryson](https://github.com/neilbryson))
71+
72+
### Migrating from 3.1.2 to 3.2.0
73+
74+
Inside any created project that has not been ejected, run:
75+
76+
```sh
77+
npm install --save --save-exact [email protected]
78+
```
79+
80+
or
81+
82+
```sh
83+
yarn add --exact [email protected]
84+
```
85+
186
## 3.1.2 (2019-09-19)
287

388
v3.1.2 is a maintenance release that includes minor bug fixes and documentation updates.

0 commit comments

Comments
 (0)