Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit a30cbd1

Browse files
gaearonrandycoulman
authored andcommittedMay 8, 2017
Add 0.8.4 changelog (facebook#1238)
1 parent 81f989c commit a30cbd1

File tree

1 file changed

+102
-0
lines changed

1 file changed

+102
-0
lines changed
 

‎CHANGELOG.md

+102
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,105 @@
1+
## 0.8.4 (December 11, 2016)
2+
3+
#### :bug: Bug Fix
4+
* `react-scripts`
5+
6+
* [#1233](https://github.com/facebookincubator/create-react-app/pull/1233) Disable subresource integrity temporarily. ([@Timer](https://github.com/Timer))
7+
8+
We added [Subresource Integrity](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) checks to the build output in 0.8.2 but it turns out that they may fail in browsers using special compression proxies, such as Chrome on Android, when served over HTTP. We disabled the checks until we can find a safe way to add them.
9+
10+
* `react-dev-utils`
11+
12+
* [#1226](https://github.com/facebookincubator/create-react-app/pull/1226) Fix weird lint output. ([@n3tr](https://github.com/n3tr))
13+
14+
Fixes a strange lint message formatting in some edge cases.
15+
16+
* [#1215](https://github.com/facebookincubator/create-react-app/pull/1215) Fix - openChrome won't open default browser (using Canary). ([@n3tr](https://github.com/n3tr))
17+
18+
Fixes an regression that caused stable Google Chrome to be opened even if you are using Canary as the default browser.
19+
20+
* `create-react-app`
21+
22+
* [#1223](https://github.com/facebookincubator/create-react-app/pull/1223) Clean up Yarn detection and install code. ([@fson](https://github.com/fson))
23+
24+
Fixes noisy output on Windows when Yarn is not installed.
25+
26+
* [#1224](https://github.com/facebookincubator/create-react-app/pull/1224) Exit with an error code when npm/yarn install fails. ([@fson](https://github.com/fson))
27+
28+
#### :nail_care: Enhancement
29+
* `react-scripts`
30+
31+
* [#1237](https://github.com/facebookincubator/create-react-app/pull/1237) Clear scrollback in test mode. ([@gaearon](https://github.com/gaearon))
32+
33+
Ensures test watcher clears the console before running.
34+
35+
* [#1229](https://github.com/facebookincubator/create-react-app/pull/1229) Disable jest watch mode when --coverage flag is present [#1207]. ([@BenoitAverty](https://github.com/BenoitAverty))
36+
37+
Since coverage doesn't work well with watch mode, we don’t run the watcher on `npm test -- --coverage` anymore.
38+
39+
* [#1212](https://github.com/facebookincubator/create-react-app/pull/1212) Proxy rewrites Origin header to match the target server URL. ([@koles](https://github.com/koles))
40+
41+
Makes sure more API endpoints can work with the `proxy` setting.
42+
43+
* [#1222](https://github.com/facebookincubator/create-react-app/pull/1222) Disable gh-page setup instruction if scripts.deploy has been added. ([@n3tr](https://github.com/n3tr))
44+
45+
Suppresses the instructions printed at the end of `npm run build` if `npm run deploy` already exists.
46+
47+
* `create-react-app`
48+
49+
* [#1236](https://github.com/facebookincubator/create-react-app/pull/1236) Tweak console messages. ([@gaearon](https://github.com/gaearon))
50+
51+
Makes error messages more friendly.
52+
53+
* [#1195](https://github.com/facebookincubator/create-react-app/pull/1195) Use "commander" for cli argv handling. ([@EnoahNetzach](https://github.com/EnoahNetzach))
54+
55+
Adds `create-react-app --help` with a list of options.
56+
57+
* `react-dev-utils`
58+
59+
* [#1211](https://github.com/facebookincubator/create-react-app/pull/1211) Use a better clear console sequence. ([@gaearon](https://github.com/gaearon))
60+
61+
Ensures the development server clears the terminal when files are changed.
62+
63+
#### :memo: Documentation
64+
* `react-dev-utils`
65+
66+
* [#1232](https://github.com/facebookincubator/create-react-app/pull/1232) [documentation] fix html-dev-plugin link in react-dev-utils doc. ([@shogunsea](https://github.com/shogunsea))
67+
68+
* `react-scripts`
69+
70+
* [#1220](https://github.com/facebookincubator/create-react-app/pull/1220) Adding troubleshooting information about Subresource Integrity digests.. ([@dfbaskin](https://github.com/dfbaskin))
71+
72+
#### :house: Internal
73+
* `react-scripts`
74+
75+
* [#1214](https://github.com/facebookincubator/create-react-app/pull/1214) Bump babel-eslint version. ([@existentialism](https://github.com/existentialism))
76+
77+
#### Committers: 10
78+
- Benoit Averty ([BenoitAverty](https://github.com/BenoitAverty))
79+
- Brian Ng ([existentialism](https://github.com/existentialism))
80+
- Dan Abramov ([gaearon](https://github.com/gaearon))
81+
- Dave Baskin ([dfbaskin](https://github.com/dfbaskin))
82+
- Fabrizio Castellarin ([EnoahNetzach](https://github.com/EnoahNetzach))
83+
- Jirat Ki. ([n3tr](https://github.com/n3tr))
84+
- Joe Haddad ([Timer](https://github.com/Timer))
85+
- Pavel Kolesnikov ([koles](https://github.com/koles))
86+
- Shogun Sea ([shogunsea](https://github.com/shogunsea))
87+
- Ville Immonen ([fson](https://github.com/fson))
88+
89+
### Migrating from 0.8.3 to 0.8.4
90+
91+
Inside any created project that has not been ejected, run:
92+
93+
```
94+
npm install --save-dev --save-exact react-scripts@0.8.4
95+
```
96+
97+
You may also optionally update the global command-line utility:
98+
99+
```
100+
npm install -g create-react-app@1.0.2
101+
```
102+
1103
## 0.8.3 (December 8, 2016)
2104

3105
#### :bug: Bug Fix

0 commit comments

Comments
 (0)
Please sign in to comment.