|
| 1 | +## 1.0.1 (May 19, 2017) |
| 2 | + |
| 3 | +#### :bug: Bug Fix |
| 4 | + |
| 5 | +* `react-scripts` |
| 6 | + * [#2242](https://github.com/facebookincubator/create-react-app/pull/2242) Fix `NODE_PATH=src` for `npm start` and `npm run build`. ([@ApacheEx](https://github.com/ApacheEx)) |
| 7 | + * [#2261](https://github.com/facebookincubator/create-react-app/pull/2261) Fix `NODE_PATH=src` for Jest. ([@gaearon](https://github.com/gaearon)) |
| 8 | + * [#2255](https://github.com/facebookincubator/create-react-app/pull/2255) Fix Windows path issue for generated service worker. ([@gaearon](https://github.com/gaearon)) |
| 9 | + * [#2262](https://github.com/facebookincubator/create-react-app/pull/2262) Additional fix to service worker config for `"homepage"` field. ([@gaearon](https://github.com/gaearon)) |
| 10 | + * [#2250](https://github.com/facebookincubator/create-react-app/pull/2250) Ignore `.env.local` in `test` environment. ([@gaearon](https://github.com/gaearon)) |
| 11 | + * [#2246](https://github.com/facebookincubator/create-react-app/pull/2246) Gracefully shut down the development server on signals. ([@gaearon](https://github.com/gaearon)) |
| 12 | + |
| 13 | +* `react-dev-utils` |
| 14 | + * [#2229](https://github.com/facebookincubator/create-react-app/pull/2229) Show customized build path for serve instruction. ([@chyipin](https://github.com/chyipin)) |
| 15 | + |
| 16 | +* `react-dev-utils`, `react-error-overlay` |
| 17 | + * [#2243](https://github.com/facebookincubator/create-react-app/pull/2243) Add missing package dependency. ([@Timer](https://github.com/Timer)) |
| 18 | + |
| 19 | +* `react-error-overlay` |
| 20 | + * [#2238](https://github.com/facebookincubator/create-react-app/pull/2238) Fix a crash when switching errors with arrow keys. ([@Gandem](https://github.com/Gandem)) |
| 21 | + |
| 22 | +#### :nail_care: Enhancement |
| 23 | + |
| 24 | +* `eslint-config-react-app` |
| 25 | + * [#2256](https://github.com/facebookincubator/create-react-app/pull/2256) Turn off `operator-assignment` stylistic rule. ([@gaearon](https://github.com/gaearon)) |
| 26 | + |
| 27 | +* `react-scripts` |
| 28 | + * [#2224](https://github.com/facebookincubator/create-react-app/pull/2224) Add `<noscript>` to template's `index.html`. ([@viankakrisna](https://github.com/viankakrisna)) |
| 29 | + |
| 30 | +#### :memo: Documentation |
| 31 | + |
| 32 | +* `react-scripts` |
| 33 | + |
| 34 | + * [#2259](https://github.com/facebookincubator/create-react-app/pull/2259) Fix broken links. ([@enguerran](https://github.com/enguerran)) |
| 35 | + * [#2258](https://github.com/facebookincubator/create-react-app/pull/2258) Update readme with example of Sass include path. ([@kellyrmilligan](https://github.com/kellyrmilligan)) |
| 36 | + * [#2252](https://github.com/facebookincubator/create-react-app/pull/2252) Hide React Storybook from the User Guide while it's incompatible. ([@gaearon](https://github.com/gaearon)) |
| 37 | + * [#2247](https://github.com/facebookincubator/create-react-app/pull/2247) Correct docs on which `.env.*` files are supported. ([@AJamesPhillips](https://github.com/AJamesPhillips)) |
| 38 | + |
| 39 | +#### :house: Internal |
| 40 | + |
| 41 | +* `react-scripts` |
| 42 | + |
| 43 | + * [#2264](https://github.com/facebookincubator/create-react-app/pull/2264) Fix a bug for empty `NODE_PATH`. ([@gaearon](https://github.com/gaearon)) |
| 44 | + |
| 45 | +#### Committers: 9 |
| 46 | + |
| 47 | +- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna)) |
| 48 | +- Alexander James Phillips ([AJamesPhillips](https://github.com/AJamesPhillips)) |
| 49 | +- Dan Abramov ([gaearon](https://github.com/gaearon)) |
| 50 | +- Enguerran ([enguerran](https://github.com/enguerran)) |
| 51 | +- Joe Haddad ([Timer](https://github.com/Timer)) |
| 52 | +- Kelly ([kellyrmilligan](https://github.com/kellyrmilligan)) |
| 53 | +- Nayef Ghattas ([Gandem](https://github.com/Gandem)) |
| 54 | +- Oleg Kuzava ([ApacheEx](https://github.com/ApacheEx)) |
| 55 | +- [chyipin](https://github.com/chyipin) |
| 56 | + |
| 57 | +### Migrating from 1.0.0 to 1.0.1 |
| 58 | + |
| 59 | +Inside any created project that has not been ejected, run: |
| 60 | + |
| 61 | +``` |
| 62 | +npm install --save-dev --save-exact [email protected] |
| 63 | +``` |
| 64 | + |
| 65 | +or |
| 66 | + |
| 67 | +``` |
| 68 | +yarn add --dev --exact [email protected] |
| 69 | +``` |
| 70 | + |
1 | 71 | ## 1.0.0 (May 18, 2017)
|
2 | 72 |
|
3 | 73 | We’ve been working on this release for the past few months, and there are many big impovements, from migrating to webpack 2 to a brand new runtime error overlay and built-in support for Progressive Web Apps.
|
|
0 commit comments