Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • C create-react-app
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1,547
    • Issues 1,547
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 417
    • Merge requests 417
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • Meta
  • create-react-app
  • Merge requests
  • !2266

Add changelog for 1.0.1

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged Administrator requested to merge gaearon-patch-4 into master 8 years ago
  • Overview 1
  • Commits 1
  • Pipelines 0
  • Changes 1

Created by: gaearon

1.0.1 (May 19, 2017)

:bug: Bug Fix

  • react-scripts

    • #2242 Fix NODE_PATH=src for npm start and npm run build. (@ApacheEx)
    • #2261 Fix NODE_PATH=src for Jest. (@gaearon)
    • #2255 Fix Windows path issue for generated service worker. (@gaearon)
    • #2262 Additional fix to service worker config for "homepage" field. (@gaearon)
    • #2250 Ignore .env.local in test environment. (@gaearon)
    • #2246 Gracefully shut down the development server on signals. (@gaearon)
  • react-dev-utils

    • #2229 Show customized build path for serve instruction. (@chyipin)
  • react-dev-utils, react-error-overlay

    • #2243 Add missing package dependency. (@Timer)
  • react-error-overlay

    • #2238 Fix a crash when switching errors with arrow keys. (@Gandem)

:nail_care: Enhancement

  • eslint-config-react-app

    • #2256 Turn off operator-assignment stylistic rule. (@gaearon)
  • react-scripts

    • #2224 Add <noscript> to template's index.html. (@viankakrisna)

:pencil: Documentation

  • react-scripts

    • #2259 Fix broken links. (@enguerran)
    • #2258 Update readme with example of Sass include path. (@kellyrmilligan)
    • #2252 Hide React Storybook from the User Guide while it's incompatible. (@gaearon)
    • #2247 Correct docs on which .env.* files are supported. (@AJamesPhillips)

:house: Internal

  • react-scripts

    • #2264 Fix a bug for empty NODE_PATH. (@gaearon)

Committers: 9

  • Ade Viankakrisna Fadlil (viankakrisna)
  • Alexander James Phillips (AJamesPhillips)
  • Dan Abramov (gaearon)
  • Enguerran (enguerran)
  • Joe Haddad (Timer)
  • Kelly (kellyrmilligan)
  • Nayef Ghattas (Gandem)
  • Oleg Kuzava (ApacheEx)
  • chyipin

Migrating from 1.0.0 to 1.0.1

Inside any created project that has not been ejected, run:

npm install --save-dev --save-exact react-scripts@1.0.1

or

yarn add --dev --exact react-scripts@1.0.1
Compare
  • master (base)

and
  • latest version
    c586758a
    1 commit, 2 years ago

1 file
+ 70
- 0

    Preferences

    File browser
    Compare changes
CHANGELOG.md
+ 70
- 0
  • View file @ c586758a

  • Edit in single-file editor

  • Open in Web IDE


## 1.0.1 (May 19, 2017)
#### :bug: Bug Fix
* `react-scripts`
* [#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))
* [#2261](https://github.com/facebookincubator/create-react-app/pull/2261) Fix `NODE_PATH=src` for Jest. ([@gaearon](https://github.com/gaearon))
* [#2255](https://github.com/facebookincubator/create-react-app/pull/2255) Fix Windows path issue for generated service worker. ([@gaearon](https://github.com/gaearon))
* [#2262](https://github.com/facebookincubator/create-react-app/pull/2262) Additional fix to service worker config for `"homepage"` field. ([@gaearon](https://github.com/gaearon))
* [#2250](https://github.com/facebookincubator/create-react-app/pull/2250) Ignore `.env.local` in `test` environment. ([@gaearon](https://github.com/gaearon))
* [#2246](https://github.com/facebookincubator/create-react-app/pull/2246) Gracefully shut down the development server on signals. ([@gaearon](https://github.com/gaearon))
* `react-dev-utils`
* [#2229](https://github.com/facebookincubator/create-react-app/pull/2229) Show customized build path for serve instruction. ([@chyipin](https://github.com/chyipin))
* `react-dev-utils`, `react-error-overlay`
* [#2243](https://github.com/facebookincubator/create-react-app/pull/2243) Add missing package dependency. ([@Timer](https://github.com/Timer))
* `react-error-overlay`
* [#2238](https://github.com/facebookincubator/create-react-app/pull/2238) Fix a crash when switching errors with arrow keys. ([@Gandem](https://github.com/Gandem))
#### :nail_care: Enhancement
* `eslint-config-react-app`
* [#2256](https://github.com/facebookincubator/create-react-app/pull/2256) Turn off `operator-assignment` stylistic rule. ([@gaearon](https://github.com/gaearon))
* `react-scripts`
* [#2224](https://github.com/facebookincubator/create-react-app/pull/2224) Add `<noscript>` to template's `index.html`. ([@viankakrisna](https://github.com/viankakrisna))
#### :memo: Documentation
* `react-scripts`
* [#2259](https://github.com/facebookincubator/create-react-app/pull/2259) Fix broken links. ([@enguerran](https://github.com/enguerran))
* [#2258](https://github.com/facebookincubator/create-react-app/pull/2258) Update readme with example of Sass include path. ([@kellyrmilligan](https://github.com/kellyrmilligan))
* [#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))
* [#2247](https://github.com/facebookincubator/create-react-app/pull/2247) Correct docs on which `.env.*` files are supported. ([@AJamesPhillips](https://github.com/AJamesPhillips))
#### :house: Internal
* `react-scripts`
* [#2264](https://github.com/facebookincubator/create-react-app/pull/2264) Fix a bug for empty `NODE_PATH`. ([@gaearon](https://github.com/gaearon))
#### Committers: 9
- Ade Viankakrisna Fadlil ([viankakrisna](https://github.com/viankakrisna))
- Alexander James Phillips ([AJamesPhillips](https://github.com/AJamesPhillips))
- Dan Abramov ([gaearon](https://github.com/gaearon))
- Enguerran ([enguerran](https://github.com/enguerran))
- Joe Haddad ([Timer](https://github.com/Timer))
- Kelly ([kellyrmilligan](https://github.com/kellyrmilligan))
- Nayef Ghattas ([Gandem](https://github.com/Gandem))
- Oleg Kuzava ([ApacheEx](https://github.com/ApacheEx))
- [chyipin](https://github.com/chyipin)
### Migrating from 1.0.0 to 1.0.1
Inside any created project that has not been ejected, run:
```
npm install --save-dev --save-exact react-scripts@1.0.1
```
or
```
yarn add --dev --exact react-scripts@1.0.1
```
## 1.0.0 (May 18, 2017)
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 Assignees
None
Assign to
0 Reviewers
None
Request review from
Labels
2
CLA Signed tag: bug fix
2
CLA Signed tag: bug fix
    Assign labels
  • Manage project labels

Milestone
5.0.1
5.0.1
None
Time tracking
No estimate or time spent
Lock merge request
Unlocked
0
0 participants
Reference: facebook/create-react-app!11915
Source branch: gaearon-patch-4

Menu

Explore Projects Groups Snippets