Skip to content

Commit c04091b

Browse files
authored
Add missing breaking change description from 0.3.0 (#562)
1 parent ec60307 commit c04091b

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

CHANGELOG.md

+12-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ npm install --save-dev --save-exact [email protected]
4545

4646
* Testing is [now supported](https://github.com/facebookincubator/create-react-app/blob/master/template/README.md#running-tests)! ([Jest project contributors](https://github.com/facebook/jest/pulls?q=is%3Apr+is%3Aclosed), [@cpojer](https://github.com/cpojer) in [#250](https://github.com/facebookincubator/create-react-app/pull/250), [@gaearon](https://github.com/gaearon) in [#378](https://github.com/facebookincubator/create-react-app/pull/378), [#530](https://github.com/facebookincubator/create-react-app/pull/530), [#533](https://github.com/facebookincubator/create-react-app/pull/533))
4747
* Static files such as CSS, images, and fonts, can now exist outside `src` directory. ([@fson](https://github.com/fson) in [#504](https://github.com/facebookincubator/create-react-app/pull/504))
48-
* Local paths in `<link href>` in `index.html` will now be correctly resolved, so deleting `favicon.ico` is not an error anymore. ([@andreypopp](https://github.com/andreypopp) in [#428](https://github.com/facebookincubator/create-react-app/pull/428))
48+
* **Breaking Change:** Local paths in `<link href>` in `index.html` will now be correctly resolved, so deleting `favicon.ico` is not an error anymore. ([@andreypopp](https://github.com/andreypopp) in [#428](https://github.com/facebookincubator/create-react-app/pull/428))
4949
* Removed an annoying lint rule that warned for `<div ref={node => this.node = node}>`. ([@mrscobbler](https://github.com/mrscobbler) in [#529](https://github.com/facebookincubator/create-react-app/pull/529))
5050
* Temporarily disabled `react-constant-elements` Babel transform because of its bugs. ([@gaearon](https://github.com/gaearon) in [#534](https://github.com/facebookincubator/create-react-app/pull/534))
5151
* Fixed a permission issue with Docker. ([@gaearon](https://github.com/gaearon) in [73c940](https://github.com/facebookincubator/create-react-app/commit/73c940a73205d761230f8d6bf81ecfd460ba28a9))
@@ -69,6 +69,17 @@ Inside any created project that has not been ejected, run:
6969
npm install --save-dev --save-exact [email protected]
7070
```
7171

72+
#### Breaking Change
73+
74+
Now `favicon.ico` is not treated specially anymore.
75+
If you use it, move it to `src` and add the following line to `<head>` in your HTML:
76+
77+
```html
78+
<link rel="shortcut icon" href="./src/favicon.ico">
79+
```
80+
81+
#### New Feature
82+
7283
Since 0.3.0 added a test runner, we recommend that you add it to the `scripts` section of your `package.json` like this:
7384

7485
```js

0 commit comments

Comments
 (0)