Skip to content

fix(deps): update dependency react-scripts to v3.4.4#21

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/react-scripts-3.x
Open

fix(deps): update dependency react-scripts to v3.4.4#21
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/react-scripts-3.x

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Aug 9, 2019

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
react-scripts (source) 3.0.13.4.4 age confidence

Release Notes

facebook/create-react-app (react-scripts)

v3.4.4

Compare Source

3.4.4 (2020-10-20)

v3.4.4 release bumps resolve-url-loader to a version for which npm audit does not report a vulnerability. Note that this vulnerability did not affect Create React App projects, so this change is only necessary to satisfy auditing tools.

Migrating from 3.4.3 to 3.4.4

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

npm install --save --save-exact react-scripts@3.4.4

or

yarn add --exact react-scripts@3.4.4

v3.4.3

Compare Source

3.4.3 (2020-08-12)

v3.4.3 release bumps terser-webpack-plugin to a version for which npm audit does not report a vulnerability. Note that this vulnerability did not affect Create React App projects, so this change is only necessary to satisfy auditing tools.

Migrating from 3.4.2 to 3.4.3

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

npm install --save --save-exact react-scripts@3.4.3

or

yarn add --exact react-scripts@3.4.3

v3.4.2

Compare Source

3.4.2 (2020-08-11)

v3.4.2 release bumps webpack-dev-server to a version for which npm audit does not report a vulnerability. Note that this vulnerability did not affect Create React App projects, so this change is only necessary to satisfy auditing tools.

Migrating from 3.4.1 to 3.4.2

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

npm install --save --save-exact react-scripts@3.4.2

or

yarn add --exact react-scripts@3.4.2

v3.4.1

Compare Source

3.4.1 (2020-03-20)

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.

🐛 Bug Fix
💅 Enhancement
📝 Documentation
🔨 Underlying Tools
Committers: 9
Migrating from 3.4.0 to 3.4.1

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

v3.4.0

Compare Source

3.4.0 (2020-02-14)

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.

🐛 Bug Fix
💅 Enhancement
📝 Documentation
🔨 Underlying Tools
Committers: 18
Migrating from 3.3.1 to 3.4.0

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

v3.3.1

Compare Source

3.3.1 (2020-01-31)

v3.3.1 is a maintenance release that includes minor bug fixes and documentation updates.

🐛 Bug Fix
💅 Enhancement
📝 Documentation
🏠 Internal
🔨 Underlying Tools
Committers: 29
Migrating from 3.3.0 to 3.3.1

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

v3.3.0

Compare Source

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 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.

Optional Chaining and Nullish Coalescing Operators

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 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. 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.

Numeric Separators

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
no-unexpected-multiline

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"
  }
}
🚀 New Feature
  • babel-preset-react-app
  • babel-preset-react-app, react-dev-utils
  • cra-template-typescript, cra-template, create-react-app, react-scripts
💥 Breaking Change
  • 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.

🐛 Bug Fix
💅 Enhancement
📝 Documentation
🏠 Internal
🔨 Underlying Tools
Committers: 42
Migrating from 3.2.0 to 3.3.0

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

v3.2.0

Compare Source

3.2.0 (2019-10-03)

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.

🚀 New Feature
🐛 Bug Fix
💅 Enhancement
📝 Documentation
🏠 Internal
🔨 Underlying Tools
Committers: 19
Migrating from 3.1.2 to 3.2.0

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

v3.1.2

Compare Source

3.1.2 (2019-09-19)

v3.1.2 is a maintenance release that includes minor bug fixes and documentation updates.

🐛 Bug Fix
💅 Enhancement
📝 Documentation
🏠 Internal
🔨 Underlying Tools
  • babel-plugin-named-asset-import, confusing-browser-globals, react-app-polyfill, react-dev-utils, react-error-overlay, react-scripts
  • react-scripts
  • eslint-config-react-app, react-scripts
Committers: 20

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@evenchange4
Copy link
Copy Markdown
Owner

evenchange4 commented Aug 9, 2019

@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.1.0 fix(deps): update dependency react-scripts to v3.1.1 Aug 13, 2019
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 5fae928 to a937755 Compare August 13, 2019 19:45
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.1.1 fix(deps): update dependency react-scripts to v3.1.2 Sep 19, 2019
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from a937755 to 87dbbcc Compare September 19, 2019 17:55
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 87dbbcc to e8a0a22 Compare October 3, 2019 04:25
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.1.2 fix(deps): update dependency react-scripts to v3.2.0 Oct 3, 2019
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from e8a0a22 to 03c6065 Compare December 14, 2019 20:50
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.2.0 fix(deps): update dependency react-scripts to v3.3.0 Dec 14, 2019
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 03c6065 to 0ae3c29 Compare February 9, 2020 05:54
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.3.0 fix(deps): update dependency react-scripts to v3.3.1 Feb 9, 2020
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.3.1 fix(deps): update dependency react-scripts to v3.4.0 Mar 14, 2020
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 0ae3c29 to 31ab477 Compare March 14, 2020 15:58
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 31ab477 to 025112f Compare April 26, 2020 12:57
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.4.0 fix(deps): update dependency react-scripts to v3.4.1 Apr 26, 2020
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 025112f to cd0b145 Compare August 25, 2020 05:57
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.4.1 fix(deps): update dependency react-scripts to v3.4.3 Aug 25, 2020
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from cd0b145 to 347893f Compare October 29, 2020 07:59
@renovate renovate Bot changed the title fix(deps): update dependency react-scripts to v3.4.3 fix(deps): update dependency react-scripts to v3.4.4 Oct 29, 2020
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 347893f to 639c2e1 Compare September 25, 2022 22:58
@evenchange4
Copy link
Copy Markdown
Owner

evenchange4 commented Sep 25, 2022

Netlify BOT

Name Link
🔨 Latest commit a390ab7
🔍 Latest deploy log https://app.netlify.com/sites/react-intlmacro/deploys/637a7d53124cbb0009f06ea3

@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 639c2e1 to a390ab7 Compare November 20, 2022 19:17
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from a390ab7 to fbbe8fd Compare August 10, 2025 12:26
@evenchange4
Copy link
Copy Markdown
Owner

Netlify BOT

Name Link
🔨 Latest commit fbbe8fd
🔍 Latest deploy log https://app.netlify.com/projects/react-intlmacro/deploys/68988fe539d78a0008b8a7cd

@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from fbbe8fd to 364b95f Compare December 3, 2025 19:13
@evenchange4
Copy link
Copy Markdown
Owner

evenchange4 commented Dec 3, 2025

Netlify BOT

Name Link
🔨 Latest commit 19d95ea
🔍 Latest deploy log https://app.netlify.com/projects/react-intlmacro/deploys/6a0ae58a76e8af000882e395

@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 364b95f to a1c2335 Compare December 31, 2025 16:54
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from a1c2335 to f2485c0 Compare January 8, 2026 19:57
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch 2 times, most recently from e8c9fe4 to 78c405a Compare January 23, 2026 16:59
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 78c405a to 66bc9f7 Compare February 2, 2026 14:48
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch 2 times, most recently from ac6b623 to db5b2b2 Compare February 17, 2026 20:29
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from db5b2b2 to 4b56991 Compare March 5, 2026 19:51
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 4b56991 to da37f67 Compare March 13, 2026 18:09
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from da37f67 to 731b79f Compare April 1, 2026 16:42
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 731b79f to be0bbae Compare April 8, 2026 17:06
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from be0bbae to 46d801d Compare April 29, 2026 09:54
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 46d801d to 8341eee Compare May 12, 2026 11:52
@renovate renovate Bot force-pushed the renovate/react-scripts-3.x branch from 8341eee to 19d95ea Compare May 18, 2026 10:10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant