This repository has been archived by the owner on Jul 10, 2019. It is now read-only.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.1.1
->2.1.3
Release Notes
facebook/create-react-app
v2.1.3
Compare Source
v2.1.3 is a maintenance release to fix a vulnerability in webpack-dev-server.
📝 Documentation
react-scripts
🏠 Internal
create-react-app
,react-error-overlay
🔨 Underlying Tools
react-scripts
Committers: 8
Migrating from 2.1.2 to 2.1.3
Inside any created project that has not been ejected, run:
or
v2.1.2
Compare Source
v2.1.2 is a maintenance release including various bug fixes.
🚀 New Feature
babel-preset-react-app
allowESModules
option tobabel-preset-react-app
(@Pajn)🐛 Bug Fix
create-react-app
create-react-app --info
(@heyimalex)5.11.1
(@tabrindle)babel-preset-react-app
babel-plugin-named-asset-import
react-app-polyfill
react-scripts
postcss-preset-env
to latest (@BPScott)tsconfig.json
lib suggested value (@ianschmitz)💅 Enhancement
react-scripts
setupTests.ts
(@ianschmitz)📝 Documentation
file_ext
note. (@alaycock)README.md
. (@pavinthan)npx
(@sagirk)sb init
(@andys8)eslint-config-react-app
.eslintrc
(@ManoelLobo)babel-preset-react-app
,create-react-app
,eslint-config-react-app
,react-dev-utils
,react-scripts
react-scripts
verifyPackageTree.js
(@sjalgeo)react-app-polyfill
babel-preset-react-app
,eslint-config-react-app
,react-error-overlay
,react-scripts
🏠 Internal
react-scripts
webp
support for TypeScript. (@dugagjin).eslintrc
(@ManoelLobo)react-dev-utils
react-error-overlay
sideEffects: false
to react-error-overlay. (@SimenB)babel-preset-react-app
create-react-app
Committers: 36
Migrating from 2.1.1 to 2.1.2
Inside any created project that has not been ejected, run:
or
v2.1.1
Compare Source
Happy Halloween 🎃 👻! This spooky release brings a treat: decorator support in TypeScript files!
🐛 Bug Fix
babel-preset-react-app
react-scripts
💅 Enhancement
babel-preset-react-app
📝 Documentation
🏠 Internal
react-error-overlay
reportRuntimeError
. (@hipstersmoothie)babel-plugin-named-asset-import
react-scripts
Committers: 8
Migrating from 2.1.0 to 2.1.1
Inside any created project that has not been ejected, run:
or
v2.1.0
Compare Source
Create React App 2.1 adds support for TypeScript! Read the documentation to get started.
New applications can be created using TypeScript by running:
🚀 New Feature
create-react-app
,react-scripts
babel-preset-react-app
,react-scripts
🐛 Bug Fix
react-scripts
react-dev-utils
,react-scripts
💅 Enhancement
create-react-app
,react-scripts
react-scripts
react-dev-utils
,react-scripts
📝 Documentation
react-scripts
🏠 Internal
react-scripts
eslint-config-react-app
Committers: 15
Migrating from 2.0.5 to 2.1.0
Inside any created project that has not been ejected, run:
or
v2.0.5
Compare Source
🐛 Bug Fix
react-dev-utils
create-react-app
react-scripts
💅 Enhancement
babel-preset-react-app
babel-plugin-dynamic-import-node
. (@vikr01)react-scripts
eslint-plugin-jsx-a11y
version. (@AlmeroSteyn)📝 Documentation
react-scripts
.flowconfig
for .scss imports. (@rlueder)Other
eslint-config-react-app
🏠 Internal
Other
create-react-app
react-scripts
Committers: 23
Migrating from 2.0.4 to 2.0.5
Inside any created project that has not been ejected, run:
or
v2.0.4
Compare Source
🐛 Bug Fix
react-scripts
GENERATE_SOURCEMAP
env not working for css sourcemap (@crux153)babel-preset-react-app
💅 Enhancement
create-react-app
react-scripts
.mjs
support back to webpack (@Timer)📝 Documentation
react-scripts
🏠 Internal
Committers: 11
Migrating from 2.0.3 to 2.0.4
Inside any created project that has not been ejected, run:
or
v2.0.3
Compare Source
Inside any created project that has not been ejected, run:
or
If you previously ejected but now want to upgrade, one common solution is to find the commits where you ejected (and any subsequent commits changing the configuration), revert them, upgrade, and later optionally eject again. It’s also possible that the feature you ejected for (maybe Sass or CSS Modules?) is now supported out of the box. You can find a list of notable new features in the Create React App 2.0 blog post.
Breaking Changes
Like any major release,
[email protected]
contains a few breaking changes. We expect that they won't affect every user, but we recommend to scan over these sections to see if something is relevant to you. If we missed something, please file a new issue.Node 6 is no longer supported
Please upgrade to Node 8 (LTS) or later.
Polyfills for IE 9, IE 10, and IE 11 are no longer included by default (but you can opt in!)
We have dropped default support for Internet Explorer 9, 10, and 11. If you still need to support these browsers, follow the instructions below.
First, install
react-app-polyfill
:or
Next, place one of the following lines at the very top of
src/index.js
:You can read more about these polyfills here.
Dynamic
import()
of a CommonJS module now has a.default
propertyWebpack 4 changed the behavior of
import()
to be closer in line with the specification.Previously, importing a CommonJS module did not require you specify the default export. In most cases, this is now required.
If you see errors in your application about
... is not a function
, you likely need to update your dynamic import, e.g.:require.ensure()
is superseded by dynamicimport()
We previously allowed code splitting with a webpack-specific directive,
require.ensure()
. It is now disabled in favor ofimport()
. To switch toimport()
, follow the examples below:Single Module
Multiple Module
The default Jest environment was changed to
jsdom
Look at the
test
entry in thescripts
section of yourpackage.json
.Here's a table how to change it from "before" and "after", depending on what you have there:
react-scripts test --env=jsdom
react-scripts test
react-scripts test
react-scripts test --env=node
Object
proxy
configuration is superseded bysrc/setupProxy.js
To check if action is required, look for the
proxy
key inpackage.json
and follow this table:proxy
key inpackage.json
proxy
is a string (e.g.http://localhost:5000
)proxy
is an objectIt's worth highlighting: if your
proxy
field is astring
, e.g.http://localhost:5000
, or you don't have it, skip this section. This feature is still supported and has the same behavior.If your
proxy
is an object, that means you are using the advanced proxy configuration. It has become fully customizable so we removed the limited support for the object-style configuration. Here's how to recreate it.First, install
http-proxy-middleware
using npm or Yarn:or
Next, create
src/setupProxy.js
and place the following contents in it:Now, migrate each entry in your
proxy
object one by one, e.g.:Place entries into
src/setupProxy.js
like so:You can also use completely custom logic there now! This wasn't possible before.
.mjs
file extension support is removedChange the extension of any files in your project using
.mjs
to just.js
.It was removed because of inconsistent support from underlying tools. We will add it back after it stops being experimental, and Jest gets built-in support for it.
PropTypes
definitions are now removed in productionNormally, this shouldn't affect your logic and should make the resulting bundle smaller. However, you may be relying on PropTypes definition for production logic. This is not recommended, and will break now. If a library does it, one possible solution is to file an issue in it with a proposal to use a different field (not
propTypes
) to signal that the declaration needs to be retained.Anything missing?
This was a large release, and we might have missed something.
Please file an issue and we will try to help.
v1.1.5
Compare Source
1.1.5 (August 24, 2018)
react-scripts
webpack-dev-server
dependencyreact-dev-utils
CVE-2018-6342
) in the development server (@acdlite)react-dev-utils
:[email protected]
,[email protected]
,[email protected]
,[email protected]
,[email protected]
, and[email protected]
sockjs-client
dependencyCommitters: 1
Migrating from 1.1.4 to 1.1.5
Inside any created project that has not been ejected, run:
or
v1.1.4
Compare Source
1.1.4 (April 3, 2018)
🐛 Bug Fix
react-dev-utils
detect-port-alt
to fix #4189. (@Timer)Committers: 1
Migrating from 1.1.3 to 1.1.4
Inside any created project that has not been ejected, run:
or
v1.1.3
Compare Source
1.1.3 (April 3, 2018)
🐛 Bug Fix
react-scripts
environment.dispose is not a function
error caused by a Jest bug. (@gaearon)Committers: 1
Migrating from 1.1.2 to 1.1.3
Inside any created project that has not been ejected, run:
or
v1.1.2
Compare Source
1.1.2 (April 3, 2018)
🐛 Bug Fix
react-scripts
.js
before.mjs
files to unbreak dependencies with native ESM support. (@leebyron)📝 Documentation
react-scripts
Committers: 2
Migrating from 1.1.1 to 1.1.2
Inside any created project that has not been ejected, run:
or
Renovate configuration
📅 Schedule: At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻️ Rebasing: Whenever PR becomes conflicted, or if you modify the PR title to begin with "
rebase!
".🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Renovate Bot. View repository job log here.