forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'masterd' into feat/modern-build
* masterd: (24 commits) Add TypeScript linting support (facebook#6513) Support React Hooks (facebook#5602) (facebook#5997) Support browserslist in @babel/preset-env (facebook#6608) Add empty mock for http2 (facebook#5686) Add note about npx caching (facebook#6374) change named import into default import (facebook#6625) Stage files for commit after ejecting (facebook#5960) Upgrade dependencies (facebook#6614) Make compiler variable const instead of let (facebook#6621) Type check JSON files (facebook#6615) Change class components to functional components in templates (facebook#6451) Convert JSON.stringify \n to os.EOL when writing tsconfig.json (facebook#6610) Update html-webpack-plugin (facebook#6361) Enable click to go to error in console for TypeScript (facebook#6502) Update webpack-dev-server to 3.2.1 (facebook#6483) [docs] revert removal of newlines from html (facebook#6386) Publish Prepare 2.1.8 release Reapply "Speed up TypeScript v2 (facebook#6406)" (facebook#6586) Publish ... # Conflicts: # packages/babel-preset-react-app/create.js # packages/react-scripts/scripts/build.js
- Loading branch information
Showing
31 changed files
with
984 additions
and
691 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,123 @@ | ||
## 2.1.8 (March 7, 2019) | ||
|
||
v2.1.8 is a maintenance release that reapplies the TypeScript speed improvements ([#6406](https://github.com/facebook/create-react-app/pull/6406)) in a new major version of `react-dev-utils`. | ||
|
||
### Migrating from 2.1.7 to 2.1.8 | ||
|
||
Inside any created project that has not been ejected, run: | ||
|
||
```sh | ||
npm install --save --save-exact [email protected] | ||
``` | ||
|
||
or | ||
|
||
```sh | ||
yarn add --exact [email protected] | ||
``` | ||
|
||
## 2.1.7 (March 7, 2019) | ||
|
||
v2.1.7 is a maintenance release that temporarily reverts the TypeScript speed improvements ([#6406](https://github.com/facebook/create-react-app/pull/6406)) to fix a dependency issue in `react-dev-utils`. | ||
|
||
### Migrating from 2.1.6 to 2.1.7 | ||
|
||
Inside any created project that has not been ejected, run: | ||
|
||
```sh | ||
npm install --save --save-exact [email protected] | ||
``` | ||
|
||
or | ||
|
||
```sh | ||
yarn add --exact [email protected] | ||
``` | ||
|
||
## 2.1.6 (March 6, 2019) | ||
|
||
v2.1.6 is a maintenance release that brings a few new improvements, most notably: | ||
|
||
- :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. | ||
|
||
#### :bug: Bug Fix | ||
|
||
- `react-dev-utils` | ||
- [#6511](https://github.com/facebook/create-react-app/pull/6511) Fix deploy instructions to make link clickable. ([@sbimochan](https://github.com/sbimochan)) | ||
- `react-scripts` | ||
- [#6472](https://github.com/facebook/create-react-app/pull/6472) Revert CSS sourcemaps in development. ([@bugzpodder](https://github.com/bugzpodder)) | ||
- [#6444](https://github.com/facebook/create-react-app/pull/6444) Revert "Switch to eval-source-map (#5060)". ([@ianschmitz](https://github.com/ianschmitz)) | ||
|
||
#### :nail_care: Enhancement | ||
|
||
- `react-dev-utils`, `react-scripts` | ||
- [#6406](https://github.com/facebook/create-react-app/pull/6406) Speed up TypeScript rebuild times in development. ([@ianschmitz](https://github.com/ianschmitz)) | ||
- `create-react-app` | ||
- [#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)) | ||
- `react-scripts` | ||
- [#5457](https://github.com/facebook/create-react-app/pull/5457) Add forward ref to React SVG Component. ([@GasimGasimzada](https://github.com/GasimGasimzada)) | ||
|
||
#### :memo: Documentation | ||
|
||
- `babel-preset-react-app` | ||
- [#6254](https://github.com/facebook/create-react-app/pull/6254) Improve Flow and TypeScript usage docs. ([@saranshkataria](https://github.com/saranshkataria)) | ||
- `babel-preset-react-app`, `confusing-browser-globals`, `react-app-polyfill` | ||
- [#6419](https://github.com/facebook/create-react-app/pull/6419) Improve language used in markdown code blocks. ([@cherouvim](https://github.com/cherouvim)) | ||
- `create-react-app` | ||
- [#6481](https://github.com/facebook/create-react-app/pull/6481) Fix typo. ([@adyouri](https://github.com/adyouri)) | ||
- `react-dev-utils` | ||
- [#6482](https://github.com/facebook/create-react-app/pull/6482) Fix typo. ([@mattfwood](https://github.com/mattfwood)) | ||
- Other | ||
- [#6438](https://github.com/facebook/create-react-app/pull/6438) Update `source-map-explorer` docs to analyze all chunks. ([@Kamahl19](https://github.com/Kamahl19)) | ||
- [#6454](https://github.com/facebook/create-react-app/pull/6454) Fix typo. ([@DenrizSusam](https://github.com/DenrizSusam)) | ||
- [#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)) | ||
- `react-dev-utils`, `react-scripts` | ||
- [#6239](https://github.com/facebook/create-react-app/pull/6239) Convert all bit.ly links from http to https. ([@leighhalliday](https://github.com/leighhalliday)) | ||
|
||
#### :house: Internal | ||
|
||
- [#6493](https://github.com/facebook/create-react-app/pull/6493) Remove AppVeyor config files. ([@iansu](https://github.com/iansu)) | ||
- [#6474](https://github.com/facebook/create-react-app/pull/6474) Remove latest Node version from Travis config. ([@iansu](https://github.com/iansu)) | ||
|
||
#### :hammer: Underlying Tools | ||
|
||
- `react-scripts` | ||
- [#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)) | ||
- Other | ||
- [#6365](https://github.com/facebook/create-react-app/pull/6365) Upgrade Docusaurus and enable new features. ([@yangshun](https://github.com/yangshun)) | ||
|
||
#### Committers: 15 | ||
|
||
- Abdelhadi Dyouri ([adyouri](https://github.com/adyouri)) | ||
- Bimochan Shrestha ([sbimochan](https://github.com/sbimochan)) | ||
- Deniz Susman ([DenrizSusam](https://github.com/DenrizSusam)) | ||
- Gasim Gasimzada ([GasimGasimzada](https://github.com/GasimGasimzada)) | ||
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz)) | ||
- Ian Sutherland ([iansu](https://github.com/iansu)) | ||
- Ioannis Cherouvim ([cherouvim](https://github.com/cherouvim)) | ||
- Jack Zhao ([bugzpodder](https://github.com/bugzpodder)) | ||
- Juan Picado @jotadeveloper ([juanpicado](https://github.com/juanpicado)) | ||
- Leigh Halliday ([leighhalliday](https://github.com/leighhalliday)) | ||
- Martin Litvaj ([Kamahl19](https://github.com/Kamahl19)) | ||
- Matt Wood ([mattfwood](https://github.com/mattfwood)) | ||
- Meo H. ([hangryCat](https://github.com/hangryCat)) | ||
- Saransh Kataria ([saranshkataria](https://github.com/saranshkataria)) | ||
- Yangshun Tay ([yangshun](https://github.com/yangshun)) | ||
|
||
### Migrating from 2.1.5 to 2.1.6 | ||
|
||
Inside any created project that has not been ejected, run: | ||
|
||
```sh | ||
npm install --save --save-exact [email protected] | ||
``` | ||
|
||
or | ||
|
||
```sh | ||
yarn add --exact [email protected] | ||
``` | ||
|
||
## 2.1.5 (February 11, 2019) | ||
|
||
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`. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.