downforacross / downforacross.com

Web frontend for downforacross.com -- continuation of stevenhao/crosswordsio
https://downforacrosscom.downforacross1.now.sh
MIT License
231 stars 91 forks source link

Bump react-dev-utils from 3.1.1 to 3.1.3 #76

Closed dependabot[bot] closed 4 years ago

dependabot[bot] commented 4 years ago

Bumps react-dev-utils from 3.1.1 to 3.1.3.

Release notes *Sourced from [react-dev-utils's releases](https://github.com/facebook/create-react-app/releases).* > ## v3.1.2 > ## 3.1.2 (2019-09-19) > > v3.1.2 is a maintenance release that includes minor bug fixes and documentation updates. > > #### :bug: Bug Fix > > - `react-scripts` > - [#7679](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7679) Change runtime chunk name separator from tilde to dash ([@​javadoug](https://github.com/javadoug)) > - [#7538](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7538) Explicitly checking that EXTEND_ESLINT is true ([@​BrockWills](https://github.com/BrockWills)) > - `babel-preset-react-app`, `react-error-overlay`, `react-scripts` > - [#7662](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7662) Fix build ([@​ianschmitz](https://github.com/ianschmitz)) > > #### :nail_care: Enhancement > > - `react-scripts` > - [#7704](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7704) Add new logo ([@​iansu](https://github.com/iansu)) > - [#7587](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7587) Minor performance improvements ([@​deftomat](https://github.com/deftomat)) > - [#7633](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7633) Disable babel-loader's cacheCompression ([@​jleclanche](https://github.com/jleclanche)) > > #### :memo: Documentation > > - [#7616](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7616) Update deployment.md with another AWS example ([@​AndrewBestbier](https://github.com/AndrewBestbier)) > - [#7663](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7663) Remove --single-quote from prettier examples ([@​brlewis](https://github.com/brlewis)) > - [#7659](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7659) Update running-tests.md ([@​weyert](https://github.com/weyert)) > - [#7459](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7459) Update troubleshooting.md ([@​prevostc](https://github.com/prevostc)) > - [#7650](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7650) Adopt Contributor Covenant ([@​iansu](https://github.com/iansu)) > - [#7620](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7620) cleanup-after-each is no longer necessary! ([@​iHmD](https://github.com/iHmD)) > - [#7613](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7613) Fix seams between changelog majors ([@​emilpalsson](https://github.com/emilpalsson)) > - [#7368](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7368) Correcting proxy sample ([@​szabolcs-szilagyi](https://github.com/szabolcs-szilagyi)) > - [#7536](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7536) add a migration step to remove static from robots.txt ([@​lookfirst](https://github.com/lookfirst)) > - [#7521](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7521) Show logo for mobile views in create-react-app.dev ([@​GrooChu](https://github.com/GrooChu)) > > #### :house: Internal > > - `react-scripts` > - [#7526](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7526) The variable dotenvFiles is never reassigned - use const instead ([@​Primajin](https://github.com/Primajin)) > - [#7585](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7585) remove trailing spaces ([@​xiaoxiangmoe](https://github.com/xiaoxiangmoe)) > > #### :hammer: Underlying Tools > > - `babel-plugin-named-asset-import`, `confusing-browser-globals`, `react-app-polyfill`, `react-dev-utils`, `react-error-overlay`, `react-scripts` > - [#7681](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7681) Bump dependencies ([@​ianschmitz](https://github.com/ianschmitz)) > - `react-scripts` > - [#7531](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7531) Upgrade dotenv-expand to fix issues ([@​DominicTobias](https://github.com/DominicTobias)) > - `eslint-config-react-app`, `react-scripts` > - [#7540](https://github-redirect.dependabot.com/facebook/create-react-app/pull/7540) Bump version of @typescript-eslint/\* ([@​pierreneter](https://github.com/pierreneter)) > > #### Committers: 20 > > ... (truncated)
Changelog *Sourced from [react-dev-utils's changelog](https://github.com/facebook/create-react-app/blob/master/CHANGELOG.md).* > ## 3.3.0 (2019-12-04) > > 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. > > ### Custom Templates > > You can now create a new app using custom templates. > > We've published our existing templates as [`cra-template`](https://github.com/facebook/create-react-app/tree/master/packages/cra-template) and [`cra-template-typescript`](https://github.com/facebook/create-react-app/tree/master/packages/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`. > > ```sh > 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. > > ### Optional Chaining and Nullish Coalescing Operators > > We now support the [optional chaining](https://github.com/TC39/proposal-optional-chaining) and [nullish coalescing](https://github.com/tc39/proposal-nullish-coalescing) operators! > > ```js > // 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 you'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](https://code.visualstudio.com/docs/typescript/typescript-compiling#_using-newer-typescript-versions). If your project isn't using TypeScript, you can use the [JavaScript and TypeScript Nightly extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.vscode-typescript-next) until VS Code releases a newer version including TypeScript `3.7.0` or newer. > > ### Numeric Separators > > We've added support for [numeric separators](https://github.com/tc39/proposal-numeric-separator) to improve readability of numeric literals. > > ```js > 1000000000; // Is this a billion? a hundred millions? Ten millions? > 101475938.38; // what scale is this? what power of 10? > ... (truncated)
Commits - See full diff in [compare view](https://github.com/facebook/create-react-app/commits/HEAD/packages/react-dev-utils)


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/downforacross/downforacross.com/network/alerts).
vercel[bot] commented 4 years ago

This pull request is being automatically deployed with ZEIT Now (learn more). To see the status of your deployment, click below or on the icon next to each commit.

🔍 Inspect: https://zeit.co/downforacross/downforacrosscom/7ar2gmwh5 ✅ Preview: https://downforacrosscom-git-dependabot-npmandyarnreact-dev-utils-313.downforacross1.now.sh

stevenhao commented 4 years ago

@dependabot rebase