-
-
Notifications
You must be signed in to change notification settings - Fork 26.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 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,43 @@ | ||
## 1.1.1 (February 2, 2018) | ||
|
||
#### :bug: Bug Fix | ||
* `react-scripts` | ||
* [#4000](https://github.com/facebook/create-react-app/pull/4000) Fix escaping `$` in environment variables. ([@iansu](https://github.com/iansu)) | ||
|
||
#### :nail_care: Enhancement | ||
* `react-scripts` | ||
* [#4006](https://github.com/facebook/create-react-app/pull/4006) Add Node 9 compatibility for `fsevents`. ([@gaearon](https://github.com/gaearon)) | ||
|
||
#### :memo: Documentation | ||
* `react-scripts` | ||
* [#3971](https://github.com/facebook/create-react-app/pull/3971) Update instructions for continuous delivery with Netlify. ([@hubgit](https://github.com/hubgit)) | ||
* [#3894](https://github.com/facebook/create-react-app/pull/3894) Include `{json,css}` files in prettier command. ([@reyronald](https://github.com/reyronald)) | ||
|
||
#### :house: Internal | ||
* `create-react-app` | ||
* [#3853](https://github.com/facebook/create-react-app/pull/3853) pin envinfo version to 3.4.2. ([@bondz](https://github.com/bondz)) | ||
|
||
#### Committers: 6 | ||
- Alf Eaton ([hubgit](https://github.com/hubgit)) | ||
- Bond ([bondz](https://github.com/bondz)) | ||
- Dan Abramov ([gaearon](https://github.com/gaearon)) | ||
- Ian Sutherland ([iansu](https://github.com/iansu)) | ||
- Ronald Rey ([reyronald](https://github.com/reyronald)) | ||
|
||
### Migrating from 1.1.0 to 1.1.1 | ||
|
||
Inside any created project that has not been ejected, run: | ||
|
||
``` | ||
npm install --save --save-exact [email protected] | ||
``` | ||
|
||
or | ||
|
||
``` | ||
yarn add --exact [email protected] | ||
``` | ||
|
||
## 1.1.0 (January 15, 2018) | ||
|
||
#### :rocket: New Feature | ||
|
c342677
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi quick question @gaearon - do you write these changelogs by hand or is there a script that helps you out with creating them, based on git history et al?
c342677
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We use
lerna-changelog
and then tweak them by hand.