Skip to content

Commit 7782f9d

Browse files
committed
Prepare 2.1.6 release
1 parent ff19e0a commit 7782f9d

File tree

2 files changed

+576
-480
lines changed

2 files changed

+576
-480
lines changed

CHANGELOG.md

+84
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,87 @@
1+
## 2.1.6 (March 6, 2019)
2+
3+
v2.1.6 is a maintenance release that brings a few new improvements, most notably:
4+
5+
- :rocket: Reduced TypeScript rebuild times while running the development server. This was previously introduced in v2.1.4 but had to be reverted. Thanks to [@ianschmitz](https://github.com/ianschmitz) for getting this ready.
6+
7+
#### :bug: Bug Fix
8+
9+
- `react-dev-utils`
10+
- [#6511](https://github.com/facebook/create-react-app/pull/6511) Fix deploy instructions to make link clickable. ([@sbimochan](https://github.com/sbimochan))
11+
- `react-scripts`
12+
- [#6472](https://github.com/facebook/create-react-app/pull/6472) Revert CSS sourcemaps in development. ([@bugzpodder](https://github.com/bugzpodder))
13+
- [#6444](https://github.com/facebook/create-react-app/pull/6444) Revert "Switch to eval-source-map (#5060)". ([@ianschmitz](https://github.com/ianschmitz))
14+
15+
#### :nail_care: Enhancement
16+
17+
- `react-dev-utils`, `react-scripts`
18+
- [#6406](https://github.com/facebook/create-react-app/pull/6406) Speed up TypeScript rebuild times in development. ([@ianschmitz](https://github.com/ianschmitz))
19+
- `create-react-app`
20+
- [#6253](https://github.com/facebook/create-react-app/pull/6253) Only use `yarn.lock.cached` if using the default Yarn registry. ([@hangryCat](https://github.com/hangryCat))
21+
- `react-scripts`
22+
- [#5457](https://github.com/facebook/create-react-app/pull/5457) Add forward ref to React SVG Component. ([@GasimGasimzada](https://github.com/GasimGasimzada))
23+
24+
#### :memo: Documentation
25+
26+
- `babel-preset-react-app`
27+
- [#6254](https://github.com/facebook/create-react-app/pull/6254) Improve Flow and TypeScript usage docs. ([@saranshkataria](https://github.com/saranshkataria))
28+
- `babel-preset-react-app`, `confusing-browser-globals`, `react-app-polyfill`
29+
- [#6419](https://github.com/facebook/create-react-app/pull/6419) Improve language used in markdown code blocks. ([@cherouvim](https://github.com/cherouvim))
30+
- `create-react-app`
31+
- [#6481](https://github.com/facebook/create-react-app/pull/6481) Fix typo. ([@adyouri](https://github.com/adyouri))
32+
- `react-dev-utils`
33+
- [#6482](https://github.com/facebook/create-react-app/pull/6482) Fix typo. ([@mattfwood](https://github.com/mattfwood))
34+
- Other
35+
- [#6438](https://github.com/facebook/create-react-app/pull/6438) Update `source-map-explorer` docs to analyze all chunks. ([@Kamahl19](https://github.com/Kamahl19))
36+
- [#6454](https://github.com/facebook/create-react-app/pull/6454) Fix typo. ([@DenrizSusam](https://github.com/DenrizSusam))
37+
- [#5767](https://github.com/facebook/create-react-app/pull/5767) Add information about using custom registries in e2e testing #4488. ([@juanpicado](https://github.com/juanpicado))
38+
- `react-dev-utils`, `react-scripts`
39+
- [#6239](https://github.com/facebook/create-react-app/pull/6239) Convert all bit.ly links from http to https. ([@leighhalliday](https://github.com/leighhalliday))
40+
41+
#### :house: Internal
42+
43+
- [#6493](https://github.com/facebook/create-react-app/pull/6493) Remove AppVeyor config files. ([@iansu](https://github.com/iansu))
44+
- [#6474](https://github.com/facebook/create-react-app/pull/6474) Remove latest Node version from Travis config. ([@iansu](https://github.com/iansu))
45+
46+
#### :hammer: Underlying Tools
47+
48+
- `react-scripts`
49+
- [#6387](https://github.com/facebook/create-react-app/pull/6387) Use contenthash instead of chunkhash for better long-term caching. ([@ianschmitz](https://github.com/ianschmitz))
50+
- Other
51+
- [#6365](https://github.com/facebook/create-react-app/pull/6365) Upgrade Docusaurus and enable new features. ([@yangshun](https://github.com/yangshun))
52+
53+
#### Committers: 15
54+
55+
- Abdelhadi Dyouri ([adyouri](https://github.com/adyouri))
56+
- Bimochan Shrestha ([sbimochan](https://github.com/sbimochan))
57+
- Deniz Susman ([DenrizSusam](https://github.com/DenrizSusam))
58+
- Gasim Gasimzada ([GasimGasimzada](https://github.com/GasimGasimzada))
59+
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz))
60+
- Ian Sutherland ([iansu](https://github.com/iansu))
61+
- Ioannis Cherouvim ([cherouvim](https://github.com/cherouvim))
62+
- Jack Zhao ([bugzpodder](https://github.com/bugzpodder))
63+
- Juan Picado @jotadeveloper ([juanpicado](https://github.com/juanpicado))
64+
- Leigh Halliday ([leighhalliday](https://github.com/leighhalliday))
65+
- Martin Litvaj ([Kamahl19](https://github.com/Kamahl19))
66+
- Matt Wood ([mattfwood](https://github.com/mattfwood))
67+
- Meo H. ([hangryCat](https://github.com/hangryCat))
68+
- Saransh Kataria ([saranshkataria](https://github.com/saranshkataria))
69+
- Yangshun Tay ([yangshun](https://github.com/yangshun))
70+
71+
### Migrating from 2.1.5 to 2.1.6
72+
73+
Inside any created project that has not been ejected, run:
74+
75+
```sh
76+
npm install --save --save-exact [email protected]
77+
```
78+
79+
or
80+
81+
```sh
82+
yarn add --exact [email protected]
83+
```
84+
185
## 2.1.5 (February 11, 2019)
286

387
v2.1.5 is a maintenance release that reverts the TypeScript speed improvements ([#5903](https://github.com/facebook/create-react-app/pull/5903)) to fix a dependency issue in `react-dev-utils`.

0 commit comments

Comments
 (0)