Skip to content

Commit 9bb9801

Browse files
gaearonPavel Zhytko
authored and
Pavel Zhytko
committed
Changelog for 1.1.0 (facebook#3795)
1 parent d03adf6 commit 9bb9801

File tree

1 file changed

+187
-0
lines changed

1 file changed

+187
-0
lines changed

CHANGELOG.md

+187
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,190 @@
1+
## 1.1.0 (January 15, 2018)
2+
3+
#### :rocket: New Feature
4+
5+
* `react-scripts`
6+
7+
* [#3387](https://github.com/facebookincubator/create-react-app/pull/3387) Add support for variable expansion in `.env` files. ([@moos](https://github.com/moos))
8+
9+
* `react-error-overlay`
10+
11+
* [#3474](https://github.com/facebookincubator/create-react-app/pull/3474) Allow the error overlay to be unregistered. ([@Timer](https://github.com/Timer))
12+
13+
* `create-react-app`
14+
15+
* [#3408](https://github.com/facebookincubator/create-react-app/pull/3408) Add `--info` flag to help gather bug reports. ([@tabrindle](https://github.com/tabrindle))
16+
* [#3409](https://github.com/facebookincubator/create-react-app/pull/3409) Add `--use-npm` flag to bypass Yarn even on systems that have it. ([@tabrindle](https://github.com/tabrindle))
17+
* [#3725](https://github.com/facebookincubator/create-react-app/pull/3725) Extend `--scripts-version` to include `.tar.gz` format. ([@SaschaDens](https://github.com/SaschaDens))
18+
* [#3629](https://github.com/facebookincubator/create-react-app/pull/3629) Allowing `"file:<path>"` `--scripts-version` values. ([@GreenGremlin](https://github.com/GreenGremlin))
19+
20+
21+
#### :bug: Bug Fix
22+
23+
* `babel-preset-react-app`, `react-scripts`
24+
25+
* [#3788](https://github.com/facebookincubator/create-react-app/pull/3788) Fix object destructuring inside an array on Node 6. ([@gaearon](https://github.com/gaearon))
26+
27+
* `react-dev-utils`
28+
29+
* [#3784](https://github.com/facebookincubator/create-react-app/pull/3784) Detach browser process from the shell on Linux. ([@gaearon](https://github.com/gaearon))
30+
* [#3726](https://github.com/facebookincubator/create-react-app/pull/3726) Use proxy for all request methods other than `GET`. ([@doshisid](https://github.com/doshisid))
31+
* [#3440](https://github.com/facebookincubator/create-react-app/pull/3440) Print full directory name from `lsof`. ([@rmccue](https://github.com/rmccue))
32+
* [#2071](https://github.com/facebookincubator/create-react-app/pull/2071) Fix broken console clearing on Windows. ([@danielverejan](https://github.com/danielverejan))
33+
* [#3686](https://github.com/facebookincubator/create-react-app/pull/3686) Fix starting a project in directory with `++` in the name. ([@Norris1z](https://github.com/Norris1z))
34+
35+
* `create-react-app`
36+
37+
* [#3320](https://github.com/facebookincubator/create-react-app/pull/3320) Fix offline installation to respect proxy from `.npmrc`. ([@mdogadailo](https://github.com/mdogadailo))
38+
39+
* `react-scripts`
40+
41+
* [#3537](https://github.com/facebookincubator/create-react-app/pull/3537) Add `mjs` and `jsx` filename extensions to `file-loader` exclude pattern. ([@iansu](https://github.com/iansu))
42+
* [#3511](https://github.com/facebookincubator/create-react-app/pull/3511) Unmount the component in the default generated test. ([@gaearon](https://github.com/gaearon))
43+
44+
#### :nail_care: Enhancement
45+
46+
* `react-scripts`
47+
48+
* [#3730](https://github.com/facebookincubator/create-react-app/pull/3730) Print when `HOST` environment variable is set. ([@iansu](https://github.com/iansu))
49+
* [#3455](https://github.com/facebookincubator/create-react-app/pull/3455) Add a localhost-only log message pointing folks to the PWA docs. ([@jeffposnick](https://github.com/jeffposnick))
50+
* [#3416](https://github.com/facebookincubator/create-react-app/pull/3416) Improve eject message. ([@xjlim](https://github.com/xjlim))
51+
52+
* `create-react-app`
53+
54+
* [#3740](https://github.com/facebookincubator/create-react-app/pull/3740) Allow more non-conflicting files in initial project directory. ([@GreenGremlin](https://github.com/GreenGremlin))
55+
56+
* `react-dev-utils`
57+
58+
* [#3104](https://github.com/facebookincubator/create-react-app/pull/3104) Add link to deployment docs after build. ([@viankakrisna](https://github.com/viankakrisna))
59+
* [#3652](https://github.com/facebookincubator/create-react-app/pull/3652) Add `code-insiders` to the editor list. ([@shrynx](https://github.com/shrynx))
60+
* [#3700](https://github.com/facebookincubator/create-react-app/pull/3700) Add editor support for Sublime Dev & VSCode Insiders. ([@yyx990803](https://github.com/yyx990803))
61+
* [#3545](https://github.com/facebookincubator/create-react-app/pull/3545) Autodetect MacVim editor. ([@gnapse](https://github.com/gnapse))
62+
63+
* `react-dev-utils`, `react-error-overlay`
64+
65+
* [#3465](https://github.com/facebookincubator/create-react-app/pull/3465) Open editor to exact column from build error overlay. ([@tharakawj](https://github.com/tharakawj))
66+
67+
* `react-dev-utils`, `react-scripts`
68+
69+
* [#3721](https://github.com/facebookincubator/create-react-app/pull/3721) Support setting `none` in `REACT_EDITOR` environment variable. ([@raerpo](https://github.com/raerpo))
70+
71+
* `eslint-config-react-app`
72+
73+
* [#3716](https://github.com/facebookincubator/create-react-app/pull/3716) Relax `no-cond-assign` rule. ([@gaearon](https://github.com/gaearon))
74+
75+
#### :memo: Documentation
76+
77+
* User Guide
78+
79+
* [#3659](https://github.com/facebookincubator/create-react-app/pull/3659) Add info about service-worker and HTTP caching headers into Firebase section. ([@bobrosoft](https://github.com/bobrosoft))
80+
* [#3515](https://github.com/facebookincubator/create-react-app/pull/3515) Add Powershell commands to README.md. ([@Gua-naiko-che](https://github.com/Gua-naiko-che))
81+
* [#3656](https://github.com/facebookincubator/create-react-app/pull/3656) Better documentation for setupTests.js when ejecting. ([@dannycalleri](https://github.com/dannycalleri))
82+
* [#1791](https://github.com/facebookincubator/create-react-app/pull/1791) Add link for automatic deployment to azure. ([@ulrikstrid](https://github.com/ulrikstrid))
83+
* [#3717](https://github.com/facebookincubator/create-react-app/pull/3717) Update README.md. ([@maecapozzi](https://github.com/maecapozzi))
84+
* [#3710](https://github.com/facebookincubator/create-react-app/pull/3710) Link to an explanation for forking react-scripts. ([@gaearon](https://github.com/gaearon))
85+
* [#3709](https://github.com/facebookincubator/create-react-app/pull/3709) Document adding a router. ([@gaearon](https://github.com/gaearon))
86+
* [#3670](https://github.com/facebookincubator/create-react-app/pull/3670) Fix typo in the User Guide. ([@qbahers](https://github.com/qbahers))
87+
* [#3645](https://github.com/facebookincubator/create-react-app/pull/3645) Update README.md. ([@elie222](https://github.com/elie222))
88+
* [#3533](https://github.com/facebookincubator/create-react-app/pull/3533) Use safer/more aesthetic syntax for setting environment variables on Windows. ([@cdanielsen](https://github.com/cdanielsen))
89+
* [#3605](https://github.com/facebookincubator/create-react-app/pull/3605) Updated Debugging Tests for VSCode. ([@amadeogallardo](https://github.com/amadeogallardo))
90+
* [#3601](https://github.com/facebookincubator/create-react-app/pull/3601) Fixed typo in webpack.config.dev.js. ([@nmenglund](https://github.com/nmenglund))
91+
* [#3576](https://github.com/facebookincubator/create-react-app/pull/3576) Updates comment to reflect codebase. ([@rahulcs](https://github.com/rahulcs))
92+
* [#3510](https://github.com/facebookincubator/create-react-app/pull/3510) Update User Guide with deploying to GitHub User pages. ([@aaronlna](https://github.com/aaronlna))
93+
* [#3503](https://github.com/facebookincubator/create-react-app/pull/3503) Update Prettier editor integration link. ([@gaving](https://github.com/gaving))
94+
* [#3453](https://github.com/facebookincubator/create-react-app/pull/3453) Fix dead links. ([@vannio](https://github.com/vannio))
95+
* [#2992](https://github.com/facebookincubator/create-react-app/pull/2992) Docs: How to Debug Unit Tests. ([@MattMorgis](https://github.com/MattMorgis))
96+
97+
* Other
98+
99+
* [#3729](https://github.com/facebookincubator/create-react-app/pull/3729) Update README.md to note Neutrino's support of react components. ([@eliperelman](https://github.com/eliperelman))
100+
* [#2841](https://github.com/facebookincubator/create-react-app/pull/2841) Documentation to help windows contributors. ([@Dubes](https://github.com/Dubes))
101+
* [#3489](https://github.com/facebookincubator/create-react-app/pull/3489) Add link to nvm-windows. ([@davidgilbertson](https://github.com/davidgilbertson))
102+
103+
* `eslint-config-react-app`
104+
105+
* [#3460](https://github.com/facebookincubator/create-react-app/pull/3460) Fix broken link to `href-no-hash` eslint rule. ([@hazolsky](https://github.com/hazolsky))
106+
107+
#### :house: Internal
108+
109+
* Other
110+
111+
* [#3769](https://github.com/facebookincubator/create-react-app/pull/3769) Enable Yarn check files. ([@Timer](https://github.com/Timer))
112+
* [#3756](https://github.com/facebookincubator/create-react-app/pull/3756) Clean up changes to npm and yarn registry in E2E tests. ([@viankakrisna](https://github.com/viankakrisna))
113+
* [#3744](https://github.com/facebookincubator/create-react-app/pull/3744) Use private registry in E2E tests. ([@Timer](https://github.com/Timer))
114+
* [#3738](https://github.com/facebookincubator/create-react-app/pull/3738) Always use Yarn on CI. ([@gaearon](https://github.com/gaearon))
115+
* [#2309](https://github.com/facebookincubator/create-react-app/pull/2309) Port `cra.sh` development task to javascript. ([@ianschmitz](https://github.com/ianschmitz))
116+
* [#3411](https://github.com/facebookincubator/create-react-app/pull/3411) Simplify waiting for app start in E2E tests. ([@xjlim](https://github.com/xjlim))
117+
* [#3755](https://github.com/facebookincubator/create-react-app/pull/3755) Switch to Yarn Workspaces. ([@gaearon](https://github.com/gaearon))
118+
* [#3757](https://github.com/facebookincubator/create-react-app/pull/3757) Try updating Flow. ([@gaearon](https://github.com/gaearon))
119+
* [#3414](https://github.com/facebookincubator/create-react-app/pull/3414) Export `dismissRuntimeErrors` function. ([@skidding](https://github.com/skidding))
120+
* [#3036](https://github.com/facebookincubator/create-react-app/pull/3036) Cleaning up `printHostingInstructions` a bit. ([@GreenGremlin](https://github.com/GreenGremlin))
121+
* [#3514](https://github.com/facebookincubator/create-react-app/pull/3514) Fix `FileSizeReporter` for multi build Webpack setups. ([@iiska](https://github.com/iiska))
122+
* [#3362](https://github.com/facebookincubator/create-react-app/pull/3362) Refactor extra watch options regex to `react-dev-utils`. ([@xjlim](https://github.com/xjlim))
123+
124+
#### Committers: 47
125+
126+
- Aaron Lamb ([aaronlna](https://github.com/aaronlna))
127+
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
128+
- Amadeo Gallardo ([amadeogallardo](https://github.com/amadeogallardo))
129+
- Andy Kenward ([andykenward](https://github.com/andykenward))
130+
- Christian Danielsen ([cdanielsen](https://github.com/cdanielsen))
131+
- Clayton Ray ([iamclaytonray](https://github.com/iamclaytonray))
132+
- Dan Abramov ([gaearon](https://github.com/gaearon))
133+
- Daniel Verejan ([danielverejan](https://github.com/danielverejan))
134+
- Danny Calleri ([dannycalleri](https://github.com/dannycalleri))
135+
- David Boyne ([boyney123](https://github.com/boyney123))
136+
- David Gilbertson ([davidgilbertson](https://github.com/davidgilbertson))
137+
- Eli Perelman ([eliperelman](https://github.com/eliperelman))
138+
- Elie ([elie222](https://github.com/elie222))
139+
- Ernesto García ([gnapse](https://github.com/gnapse))
140+
- Evan You ([yyx990803](https://github.com/yyx990803))
141+
- Gavin Gilmour ([gaving](https://github.com/gaving))
142+
- Ian Schmitz ([ianschmitz](https://github.com/ianschmitz))
143+
- Ian Sutherland ([iansu](https://github.com/iansu))
144+
- JANG SUN HYUK ([wkdtjsgur100](https://github.com/wkdtjsgur100))
145+
- Jeffrey Posnick ([jeffposnick](https://github.com/jeffposnick))
146+
- Joe Haddad ([Timer](https://github.com/Timer))
147+
- Joe Lim ([xjlim](https://github.com/xjlim))
148+
- Jonathan ([GreenGremlin](https://github.com/GreenGremlin))
149+
- Juhamatti Niemelä ([iiska](https://github.com/iiska))
150+
- Mae Capozzi ([maecapozzi](https://github.com/maecapozzi))
151+
- Maksym Dogadailo ([mdogadailo](https://github.com/mdogadailo))
152+
- Mario Nebl ([marionebl](https://github.com/marionebl))
153+
- Matt Morgis ([MattMorgis](https://github.com/MattMorgis))
154+
- Misha Khokhlov ([hazolsky](https://github.com/hazolsky))
155+
- Moos ([moos](https://github.com/moos))
156+
- Nils Magnus Englund ([nmenglund](https://github.com/nmenglund))
157+
- Norris Oduro ([Norris1z](https://github.com/Norris1z))
158+
- Ovidiu Cherecheș ([skidding](https://github.com/skidding))
159+
- Quentin Bahers ([qbahers](https://github.com/qbahers))
160+
- Rafael E. Poveda ([raerpo](https://github.com/raerpo))
161+
- Rahul Chanila ([rahulcs](https://github.com/rahulcs))
162+
- Ryan McCue ([rmccue](https://github.com/rmccue))
163+
- Sascha Dens ([SaschaDens](https://github.com/SaschaDens))
164+
- Siddharth Doshi ([doshisid](https://github.com/doshisid))
165+
- Tao Gómez Gil ([Gua-naiko-che](https://github.com/Gua-naiko-che))
166+
- Tharaka Wijebandara ([tharakawj](https://github.com/tharakawj))
167+
- Trevor Brindle ([tabrindle](https://github.com/tabrindle))
168+
- Ulrik Strid ([ulrikstrid](https://github.com/ulrikstrid))
169+
- Vladimir Tolstikov ([bobrosoft](https://github.com/bobrosoft))
170+
- [Dubes](https://github.com/Dubes)
171+
- [vannio](https://github.com/vannio)
172+
- shrynx ([shrynx](https://github.com/shrynx))
173+
174+
### Migrating from 1.0.17 to 1.1.0
175+
176+
Inside any created project that has not been ejected, run:
177+
178+
```
179+
npm install --save --save-exact react-scripts@1.1.0
180+
```
181+
182+
or
183+
184+
```
185+
yarn add --exact react-scripts@1.1.0
186+
```
187+
1188
## 1.0.17 (November 3, 2017)
2189

3190
#### :nail_care: Enhancement

0 commit comments

Comments
 (0)