Open greenkeeper[bot] opened 5 years ago
After pinning to 3.0.0 your tests are still failing. The reported issue might not affect your project. These imprecisions are caused by inconsistent test results.
dependency
react-scripts was updated from 3.0.1
to 3.1.0
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.1.0 is a minor release that adds ESLint 6 support as well as experimental support for extended and customizing the ESLint config along with other minor bug fixes and documentation updates.
eslint-config-react-app
, react-error-overlay
, react-scripts
eslint-config-react-app
, react-scripts
react-dev-utils
react-scripts
react-scripts
eslint-config-react-app
, react-error-overlay
, react-scripts
react-dev-utils
react-scripts
eslint-config-react-app
react-error-overlay
, react-scripts
react-scripts
jsx: "react"
in tsconfig (@kingdaro)react-dev-utils
eslint-config-react-app
, react-error-overlay
, react-scripts
eslint-config-react-app
create-react-app
eslint-config-react-app
react-error-overlay
, react-scripts
babel-preset-react-app
react-scripts
react-error-overlay
, react-scripts
babel-plugin-named-asset-import
, babel-preset-react-app
, confusing-browser-globals
, create-react-app
, react-app-polyfill
, react-dev-utils
, react-error-overlay
, react-scripts
eslint-config-react-app
, react-error-overlay
, react-scripts
eslint-config-react-app
, react-scripts
react-scripts
react-dev-utils
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.1.0
or
yarn add --exact react-scripts@3.1.0
dependency
react-scripts was updated from 3.1.0
to 3.1.1
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.1.1 is a maintenance release that includes minor bug fixes and documentation updates.
react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.1.1
or
yarn add --exact react-scripts@3.1.1
dependency
react-scripts was updated from 3.1.2
to 3.2.0
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.2.0 is a minor release that adds support for production profiling and ignoring TypeScript type errors to make migrating JavaScript projects to TypeScript easier. It also includes other minor bug fixes and documentation updates.
react-scripts
react-dev-utils
, react-scripts
react-scripts
react-app-polyfill
react-scripts
react-dev-utils
react-scripts
react-dev-utils
, react-scripts
react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.2.0
or
yarn add --exact react-scripts@3.2.0
dependency
react-scripts was updated from 3.2.0
to 3.3.0
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.3.0 is a minor release that adds new features, including custom templates and support for the new optional chaining and nullish coalescing operators.
You can now create a new app using custom templates.
We've published our existing templates as cra-template
and cra-template-typescript
, but we expect to see many great templates from the community over the coming weeks.
The below command shows how you can create a new app with cra-template-typescript
.
npx create-react-app my-app --template typescript
Note that you can omit the prefix cra-template-
when specifying which template you would like. For TypeScript users, we're deprecating --typescript
in favour of --template typescript
.
If you don't set a template, we'll create your new app with cra-template
- which is just a new name for our base template.
We now support the optional chaining and nullish coalescing operators!
// Optional chaining
a?.(); // undefined if `a` is null/undefined
b?.c; // undefined if `b` is null/undefined
// Nullish coalescing
undefined ?? 'some other default'; // result: 'some other default'
null ?? 'some other default'; // result: 'some other default'
'' ?? 'some other default'; // result: ''
0 ?? 300; // result: 0
false ?? true; // result: false
If your're using TypeScript, you will need to upgrade your typescript
dependency to 3.7.0
or later if you wish to use the new operators.
If you're using Visual Studio Code 1.40 (the latest as of this release) or earlier, you will need to configure your editor if you want it to understand the new operators.
If you're using TypeScript in your project and have already upgrade its version as described above, then you can configure VS Code to Use Workspace Version
of TypeScript. If your project isn't using TypeScript, you can use the JavaScript and TypeScript Nightly extension until VS Code releases a newer version including TypeScript 3.7.0
or newer.
We've added support for numeric separators to improve readability of numeric literals.
1000000000; // Is this a billion? a hundred millions? Ten millions?
101475938.38; // what scale is this? what power of 10?
1_000_000_000; // Ah, so a billion
101_475_938.38; // And this is hundreds of millions
We've removed this rule as it is not compatible with Prettier. If you rely on this rule you can re-enable it by extending our ESLint config and adding the following:
{
"extends": "react-app",
"rules": {
"no-unexpected-multiline": "warn"
}
}
babel-preset-react-app
babel-preset-react-app
, react-dev-utils
cra-template-typescript
, cra-template
, create-react-app
, react-scripts
create-react-app
, react-dev-utils
, react-scripts
#7988 Bump webpack-dev-server (@ianschmitz)
NOTE: This is only a breaking change if you're using react-dev-utils
outside of Create React App.
eslint-config-react-app
create-react-app
react-scripts
react-dev-utils
cra-template-typescript
, cra-template
react-scripts
cra-template
create-react-app
, react-error-overlay
babel-preset-react-app
react-dev-utils
, react-scripts
babel-preset-react-app
react-dev-utils
react-scripts
react-scripts
eslint-config-react-app
create-react-app
cra-template-typescript
create-react-app
, react-dev-utils
, react-scripts
babel-preset-react-app
, cra-template-typescript
, cra-template
, create-react-app
, react-dev-utils
, react-error-overlay
, react-scripts
create-react-app
, react-dev-utils
, react-scripts
react-app-polyfill
babel-preset-react-app
, react-app-polyfill
, react-dev-utils
, react-scripts
react-scripts
babel-preset-react-app
, cra-template-typescript
, create-react-app
, react-app-polyfill
, react-dev-utils
, react-error-overlay
, react-scripts
react-dev-utils
babel-plugin-named-asset-import
, babel-preset-react-app
, react-error-overlay
, react-scripts
react-error-overlay
, react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.3.0
or
yarn add --exact react-scripts@3.3.0
dependency
react-scripts was updated from 3.3.0
to 3.3.1
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.3.1 is a maintenance release that includes minor bug fixes and documentation updates.
cra-template
react-scripts
babel-preset-react-app
react-dev-utils
react-error-overlay
cra-template-typescript
cra-template-typescript
, cra-template
, react-scripts
create-react-app
cra-template-typescript
, cra-template
eslint-config-react-app
babel-preset-react-app
create-react-app
babel-preset-react-app
, create-react-app
, react-dev-utils
, react-error-overlay
, react-scripts
react-dev-utils
babel-plugin-named-asset-import
create-react-app
, react-app-polyfill
, react-dev-utils
, react-error-overlay
, react-scripts
create-react-app
, react-dev-utils
, react-error-overlay
react-error-overlay
, react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.3.1
or
yarn add --exact react-scripts@3.3.1
dependency
react-scripts was updated from 3.3.1
to 3.4.0
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.4.0 is a minor release that adds new features, including support for SSL and setting PUBLIC_URL
in development. It also includes a fix for Hot Module Reloading with CSS Modules as well as other bug fixes.
react-scripts
create-react-app
, react-dev-utils
, react-error-overlay
react-dev-utils
cra-template-typescript
, cra-template
cra-template-typescript
react-dev-utils
, react-scripts
cra-template-typescript
cra-template-typescript
, cra-template
react-scripts
cra-template-typescript
, cra-template
, react-dev-utils
, react-error-overlay
, react-scripts
react-dev-utils
react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.4.0
or
yarn add --exact react-scripts@3.4.0
dependency
react-scripts was updated from 3.4.0
to 3.4.1
.Your tests are passing again with this update. Explicitly upgrade to this version 🚀
v3.4.1 is a maintenance release that includes minor bug fixes and documentation updates including upgrading Babel to fix a bug in the 7.8 release line. This release also brings support for TypeScript 3.8.
react-scripts
babel-preset-react-app
cra-template
, eslint-config-react-app
, react-scripts
cra-template-typescript
, cra-template
react-scripts
react-scripts
babel-preset-react-app
, create-react-app
, react-dev-utils
, react-error-overlay
, react-scripts
react-scripts
Inside any created project that has not been ejected, run:
npm install --save --save-exact react-scripts@3.4.1
or
yarn add --exact react-scripts@3.4.1
The dependency react-scripts was updated from
3.0.0
to3.0.1
.🚨 View failing branch.
This version is covered by your current version range and after updating it in your project the build failed.
react-scripts is a direct dependency of this project, and it is very likely causing it to break. If other packages depend on yours, this update is probably also breaking those in turn.
Status Details
- ❌ **continuous-integration/travis-ci/push:** The Travis CI build failed ([Details](https://travis-ci.org/the-road-to-learn-react/react-hooks-introduction/builds/529945078?utm_source=github_status&utm_medium=notification)).FAQ and help
There is a collection of [frequently asked questions](https://greenkeeper.io/faq.html). If those don’t help, you can always [ask the humans behind Greenkeeper](https://github.com/greenkeeperio/greenkeeper/issues/new).Your Greenkeeper Bot :palm_tree: