Skip to content

Commit 3102877

Browse files
authored
Changelog for 1.0.8 (#2664)
* Add changelog for 1.0.8 * Update CHANGELOG.md * Update CHANGELOG.md * Update CHANGELOG.md
1 parent a171d93 commit 3102877

File tree

1 file changed

+173
-0
lines changed

1 file changed

+173
-0
lines changed

CHANGELOG.md

+173
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,176 @@
1+
## 1.0.8 (June 28, 2017)
2+
3+
#### :bug: Bug Fix
4+
* `react-scripts`
5+
6+
* [#2550](https://github.com/facebookincubator/create-react-app/pull/2550) Fix Node 8 compatibility. ([@josephfrazier](https://github.com/josephfrazier))
7+
* [#2610](https://github.com/facebookincubator/create-react-app/pull/2610) Fix sourcemap directory organization on Windows. ([@plusCubed](https://github.com/plusCubed))
8+
* [#2596](https://github.com/facebookincubator/create-react-app/pull/2596) Fix an issue with minifying emojis. ([@viankakrisna](https://github.com/viankakrisna))
9+
* [#2501](https://github.com/facebookincubator/create-react-app/pull/2501) Fix incorrect check if `CI` variable is set to true. ([@varnav](https://github.com/varnav))
10+
* [#2432](https://github.com/facebookincubator/create-react-app/pull/2432) In new projects, don't register service worker for projects using `PUBLIC_URL` for CDN. ([@jeffposnick](https://github.com/jeffposnick))
11+
* [#2470](https://github.com/facebookincubator/create-react-app/pull/2470) In new projects, prioritize `index.css` over `App.css`. ([@bryankang](https://github.com/bryankang))
12+
13+
* `react-dev-utils`
14+
15+
* [#2405](https://github.com/facebookincubator/create-react-app/pull/2405) Fix detection of parent directory in `ModuleScopePlugin`. ([@diligiant](https://github.com/diligiant))
16+
* [#2562](https://github.com/facebookincubator/create-react-app/pull/2562) Fix eject command output. ([@paweljedrzejczyk](https://github.com/paweljedrzejczyk))
17+
18+
#### :nail_care: Enhancement
19+
20+
* `react-scripts`
21+
22+
* [#2648](https://github.com/facebookincubator/create-react-app/pull/2648) Warn about large bundle sizes. ([@gaearon](https://github.com/gaearon))
23+
* [#2511](https://github.com/facebookincubator/create-react-app/pull/2511) Support `.web.js` extension for React Native Web. ([@mini-eggs](https://github.com/mini-eggs))
24+
* [#2645](https://github.com/facebookincubator/create-react-app/pull/2645) Hide confusing "Skipping static resource" message. ([@gaearon](https://github.com/gaearon))
25+
* [#2389](https://github.com/facebookincubator/create-react-app/pull/2389) Silence unnecessary warning from Babel. ([@gaearon](https://github.com/gaearon))
26+
* [#2429](https://github.com/facebookincubator/create-react-app/pull/2429) Update `sw-precache-webpack-plugin` to lastest version. ([@goldhand](https://github.com/goldhand))
27+
* [#2600](https://github.com/facebookincubator/create-react-app/pull/2600) Add empty mock for `dgram` Node module. ([@micopiira](https://github.com/micopiira))
28+
* [#2458](https://github.com/facebookincubator/create-react-app/pull/2458) Add names to module factories in development. ([@Zaccc123](https://github.com/Zaccc123))
29+
* [#2551](https://github.com/facebookincubator/create-react-app/pull/2551) In new projects, unregister service worker and force reload if `service-worker.js` is not found. ([@ro-savage](https://github.com/ro-savage))
30+
31+
* `babel-preset-react-app`, `react-dev-utils`, `react-scripts`
32+
33+
* [#2658](https://github.com/facebookincubator/create-react-app/pull/2658) Bump dependencies. ([@gaearon](https://github.com/gaearon))
34+
35+
* `create-react-app`, `react-scripts`
36+
37+
* [#2657](https://github.com/facebookincubator/create-react-app/pull/2657) Put `react-scripts` in `dependencies`, not `devDependencies`. ([@gaearon](https://github.com/gaearon))
38+
* [#2635](https://github.com/facebookincubator/create-react-app/pull/2635) Silence unhelpful npm warnings. ([@gaearon](https://github.com/gaearon))
39+
40+
* `react-dev-utils`
41+
42+
* [#2637](https://github.com/facebookincubator/create-react-app/pull/2637) Auto-detect Brackets editor from error overlay. ([@petetnt](https://github.com/petetnt))
43+
* [#2552](https://github.com/facebookincubator/create-react-app/pull/2552) Auto-detect running editor on Windows for error overlay. ([@levrik](https://github.com/levrik))
44+
* [#2622](https://github.com/facebookincubator/create-react-app/pull/2622) Support opening PhpStorm for error overlay. ([@miraage](https://github.com/miraage))
45+
* [#2414](https://github.com/facebookincubator/create-react-app/pull/2414) Support opening WebStorm 2017+ from error overlay. ([@wirmar](https://github.com/wirmar))
46+
* [#2518](https://github.com/facebookincubator/create-react-app/pull/2518) Warn when trying to run on port below 1024 without admin permissions under Linux/macOS. ([@levrik](https://github.com/levrik))
47+
* [#2385](https://github.com/facebookincubator/create-react-app/pull/2385) Suggest just `yarn build` in output. ([@gaearon](https://github.com/gaearon))
48+
49+
* `create-react-app`
50+
51+
* [#1945](https://github.com/facebookincubator/create-react-app/pull/1945) Fix grammar in CLI output. ([@ColinEberhardt](https://github.com/ColinEberhardt))
52+
53+
#### :memo: Documentation
54+
55+
* User Guide
56+
57+
* [#2662](https://github.com/facebookincubator/create-react-app/pull/2662) Local testing docker links. ([@EnoahNetzach](https://github.com/EnoahNetzach))
58+
* [#2660](https://github.com/facebookincubator/create-react-app/pull/2660) Minor code style edits to user guide. ([@gaearon](https://github.com/gaearon))
59+
* [#2656](https://github.com/facebookincubator/create-react-app/pull/2656) Don't ask to install webpack for using Styleguidist. ([@gaearon](https://github.com/gaearon))
60+
* [#1641](https://github.com/facebookincubator/create-react-app/pull/1641) Add instructions to use `source-map-explorer`. ([@gr33nfury](https://github.com/gr33nfury))
61+
* [#2044](https://github.com/facebookincubator/create-react-app/pull/2044) Add React Styleguidist. ([@sapegin](https://github.com/sapegin))
62+
* [#2006](https://github.com/facebookincubator/create-react-app/pull/2006) Added instruction on how to install Prettier. ([@MrHus](https://github.com/MrHus))
63+
* [#1813](https://github.com/facebookincubator/create-react-app/pull/1813) Fix grammar. ([@iheng](https://github.com/iheng))
64+
* [#2060](https://github.com/facebookincubator/create-react-app/pull/2060) Add more info about OOM build failiure [docs]. ([@GAumala](https://github.com/GAumala))
65+
* [#2305](https://github.com/facebookincubator/create-react-app/pull/2305) Update docs with WebSocket proxy information. ([@jamesblight](https://github.com/jamesblight))
66+
* [#2445](https://github.com/facebookincubator/create-react-app/pull/2445) Document `REACT_EDITOR` environment variable. ([@wirmar](https://github.com/wirmar))
67+
* [#2362](https://github.com/facebookincubator/create-react-app/pull/2362) Add yarn example under "Installing a Dependency". ([@BrianDGLS](https://github.com/BrianDGLS))
68+
* [#2423](https://github.com/facebookincubator/create-react-app/pull/2423) Add docs for setting up CircleCI for CRA. ([@knowbody](https://github.com/knowbody))
69+
* [#2427](https://github.com/facebookincubator/create-react-app/pull/2427) Added link to tutorial on code splitting. ([@jayair](https://github.com/jayair))
70+
* [#2447](https://github.com/facebookincubator/create-react-app/pull/2447) Fix wrong comment on Proxy guide. ([@hellowin](https://github.com/hellowin))
71+
* [#2538](https://github.com/facebookincubator/create-react-app/pull/2538) Fix broken link to a tutorial. ([@romanyanke](https://github.com/romanyanke))
72+
* [#2522](https://github.com/facebookincubator/create-react-app/pull/2522) Flow init to run as command not flag. ([@khanglu](https://github.com/khanglu))
73+
* [#2521](https://github.com/facebookincubator/create-react-app/pull/2521) Fix broken link to Storybook docs. ([@shilman](https://github.com/shilman))
74+
* [#2500](https://github.com/facebookincubator/create-react-app/pull/2500) Fix minor typo. ([@AlexxNica](https://github.com/AlexxNica))
75+
* [#2331](https://github.com/facebookincubator/create-react-app/pull/2331) Re-add storybook && update the documentation and links. ([@ndelangen](https://github.com/ndelangen))
76+
* [#2454](https://github.com/facebookincubator/create-react-app/pull/2454) Update Travis CI Node versions in User Guide. ([@ryansully](https://github.com/ryansully))
77+
* [#2420](https://github.com/facebookincubator/create-react-app/pull/2420) Fix typo. ([@ruskakimov](https://github.com/ruskakimov))
78+
* [#2392](https://github.com/facebookincubator/create-react-app/pull/2392) Update `jest-enzyme` section. ([@luftywiranda13](https://github.com/luftywiranda13))
79+
80+
* README
81+
82+
* [#2517](https://github.com/facebookincubator/create-react-app/pull/2517) Add Razzle to the alternatives. ([@kireerik](https://github.com/kireerik))
83+
* [#1931](https://github.com/facebookincubator/create-react-app/pull/1931) Updated README. ([@shaunwallace](https://github.com/shaunwallace))
84+
* [#2492](https://github.com/facebookincubator/create-react-app/pull/2492) Update webpack links to point to webpack 2. ([@laruiss](https://github.com/laruiss))
85+
86+
#### :house: Internal
87+
88+
* Other
89+
90+
* [#2465](https://github.com/facebookincubator/create-react-app/pull/2465) Update Prettier to v1. ([@ianschmitz](https://github.com/ianschmitz))
91+
* [#2489](https://github.com/facebookincubator/create-react-app/pull/2489) chore(templates): Move GitHub templates to hidden .github folder. ([@glennreyes](https://github.com/glennreyes))
92+
* [#2400](https://github.com/facebookincubator/create-react-app/pull/2400) Added cache clear to e2e scripts. ([@ro-savage](https://github.com/ro-savage))
93+
* [#2397](https://github.com/facebookincubator/create-react-app/pull/2397) Fix command in e2e-kitchensink.sh cleanup. ([@ro-savage](https://github.com/ro-savage))
94+
* [#2388](https://github.com/facebookincubator/create-react-app/pull/2388) Fix wrong path expansion in end-to-end test. ([@gaearon](https://github.com/gaearon))
95+
* [#2387](https://github.com/facebookincubator/create-react-app/pull/2387) Catch "No tests found" during CI. ([@EnoahNetzach](https://github.com/EnoahNetzach))
96+
97+
* `react-scripts`
98+
99+
* [#2408](https://github.com/facebookincubator/create-react-app/pull/2408) E2E testing enhancements. ([@EnoahNetzach](https://github.com/EnoahNetzach))
100+
* [#2430](https://github.com/facebookincubator/create-react-app/pull/2430) Remove an unnecessary webpack option. ([@andykenward](https://github.com/andykenward))
101+
102+
* `react-dev-utils`
103+
104+
* [#2483](https://github.com/facebookincubator/create-react-app/pull/2483) Remove a scoped package dependency. ([@Timer](https://github.com/Timer))
105+
106+
#### Committers: 46
107+
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
108+
- Alexandre Nicastro ([AlexxNica](https://github.com/AlexxNica))
109+
- Andi N. Dirgantara ([hellowin](https://github.com/hellowin))
110+
- Andy Kenward ([andykenward](https://github.com/andykenward))
111+
- Artem Sapegin ([sapegin](https://github.com/sapegin))
112+
- Ashton ([ashtonsix](https://github.com/ashtonsix))
113+
- Brian Douglas ([BrianDGLS](https://github.com/BrianDGLS))
114+
- Colin Eberhardt ([ColinEberhardt](https://github.com/ColinEberhardt))
115+
- Colin Galindo ([gr33nfury](https://github.com/gr33nfury))
116+
- Dan Abramov ([gaearon](https://github.com/gaearon))
117+
- Daniel Ciao ([plusCubed](https://github.com/plusCubed))
118+
- Erik Engi ([kireerik](https://github.com/kireerik))
119+
- Evan Jones ([mini-eggs](https://github.com/mini-eggs))
120+
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
121+
- Frédéric Miserey ([diligiant](https://github.com/diligiant))
122+
- Gabriel Aumala ([GAumala](https://github.com/GAumala))
123+
- Glenn Reyes ([glennreyes](https://github.com/glennreyes))
124+
- Heng Li ([iheng](https://github.com/iheng))
125+
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz))
126+
- James Blight ([jamesblight](https://github.com/jamesblight))
127+
- Jay V ([jayair](https://github.com/jayair))
128+
- Jeffrey Posnick ([jeffposnick](https://github.com/jeffposnick))
129+
- Joe Haddad ([Timer](https://github.com/Timer))
130+
- Joseph Frazier ([josephfrazier](https://github.com/josephfrazier))
131+
- Khang Lu ([khanglu](https://github.com/khanglu))
132+
- Levin Rickert ([levrik](https://github.com/levrik))
133+
- Lufty Wiranda ([luftywiranda13](https://github.com/luftywiranda13))
134+
- Maarten Hus ([MrHus](https://github.com/MrHus))
135+
- Marius Wirtherle ([wirmar](https://github.com/wirmar))
136+
- Mateusz Zatorski ([knowbody](https://github.com/knowbody))
137+
- Michael Shilman ([shilman](https://github.com/shilman))
138+
- Mico Piira ([micopiira](https://github.com/micopiira))
139+
- Mikhail Osher ([miraage](https://github.com/miraage))
140+
- Norbert de Langen ([ndelangen](https://github.com/ndelangen))
141+
- Paweł Jędrzejczyk ([paweljedrzejczyk](https://github.com/paweljedrzejczyk))
142+
- Pete Nykänen ([petetnt](https://github.com/petetnt))
143+
- Ro Savage ([ro-savage](https://github.com/ro-savage))
144+
- Roman ([romanyanke](https://github.com/romanyanke))
145+
- Rustem Kakimov ([ruskakimov](https://github.com/ruskakimov))
146+
- Ryan Sullivan ([ryansully](https://github.com/ryansully))
147+
- Stanislas Ormières ([laruiss](https://github.com/laruiss))
148+
- Will Farley ([goldhand](https://github.com/goldhand))
149+
- Zac Kwan ([Zaccc123](https://github.com/Zaccc123))
150+
- [bryankang](https://github.com/bryankang)
151+
- [varnav](https://github.com/varnav)
152+
- shaun wallace ([shaunwallace](https://github.com/shaunwallace))
153+
154+
### Migrating from 1.0.7 to 1.0.8
155+
156+
Inside any created project that has not been ejected, run:
157+
158+
```
159+
npm install --save-dev --save-exact [email protected]
160+
```
161+
162+
or
163+
164+
```
165+
yarn add --dev --exact [email protected]
166+
```
167+
168+
You may optionally then move `react-scripts` from `devDependencies` to `dependencies` since that’s how we’ll structure newly created projects. It is not necessary though.
169+
170+
If you left the service worker integration enabled and didn’t change how it works, you can replace `src/registerServiceWorker.js` with [this updated version](https://raw.githubusercontent.com/facebookincubator/create-react-app/895c475d3fc218c65dcac9a3ef3f2c0ea746a1ed/packages/react-scripts/template/src/registerServiceWorker.js).
171+
172+
If you haven't changed the default CSS organization, you may want to apply [this fix](https://github.com/facebookincubator/create-react-app/pull/2470/files) that makes `index.css` take precedence over `App.css` in your project.
173+
1174
## 1.0.7 (May 27, 2017)
2175

3176
#### :bug: Bug Fix

0 commit comments

Comments
 (0)