Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: facebook/create-react-app
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.0.2
Choose a base ref
...
head repository: facebook/create-react-app
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.0.3
Choose a head ref
  • 7 commits
  • 7 files changed
  • 5 contributors

Commits on Feb 3, 2021

  1. 1

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    3f5dea9 View commit details

Commits on Feb 18, 2021

  1. Bump webpack-dev-server 3.11.0 -> 3.11.1 (#10312)

    Resolves #10084 security vulnerability in websocket-driver library version 0.5.6, imported transitively by sockjs
    Awarua- authored Feb 18, 2021
    Copy the full SHA
    9722ef1 View commit details

Commits on Feb 22, 2021

  1. Copy the full SHA
    18b5962 View commit details
  2. update immer to 8.0.1 to address vulnerability (#10412)

    Resolves #10411
    
    Bumps immer version to 8.0.1 to address the prototype pollution
    vulnerability with the current 7.0.9 version.
    wclem4 authored Feb 22, 2021
    Copy the full SHA
    6947896 View commit details
  3. Prepare 4.0.3 release

    iansu committed Feb 22, 2021
    Copy the full SHA
    f710976 View commit details
  4. Update CHANGELOG

    iansu committed Feb 22, 2021
    Copy the full SHA
    cce32fa View commit details
  5. Publish

     - create-react-app@4.0.3
     - react-dev-utils@11.0.3
     - react-scripts@4.0.3
    iansu committed Feb 22, 2021
    Copy the full SHA
    f92c37a View commit details
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,40 @@
## 4.0.3 (2021-02-22)

v4.0.3 is a maintenance release that includes minor bug fixes and dependency updates.

#### :bug: Bug Fix

- `react-scripts`
- [#10590](https://github.com/facebook/create-react-app/pull/10590) Upgrade eslint-webpack-plugin to fix opt-out flag ([@mrmckeb](https://github.com/mrmckeb))

#### :house: Internal

- `react-dev-utils`
- [#10412](https://github.com/facebook/create-react-app/pull/10412) update immer to 8.0.1 to address vulnerability ([@wclem4](https://github.com/wclem4))
- `create-react-app`
- [#10384](https://github.com/facebook/create-react-app/pull/10384) tests: update test case to match the description ([@jamesgeorge007](https://github.com/jamesgeorge007))

#### Committers: 4

- Brody McKee ([@mrmckeb](https://github.com/mrmckeb))
- Dion Woolley ([@Awarua-](https://github.com/Awarua-))
- James George ([@jamesgeorge007](https://github.com/jamesgeorge007))
- Walker Clem ([@wclem4](https://github.com/wclem4))

# Migrating from 4.0.2 to 4.0.3

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

```bash
npm install --save --save-exact react-scripts@4.0.3
```

or

```
yarn add --exact react-scripts@4.0.3
```

## 4.0.2 (2021-02-03)

v4.0.2 is a maintenance release that includes minor bug fixes and documentation updates.
Original file line number Diff line number Diff line change
@@ -33,7 +33,7 @@ describe('getTemplateInstallPackage', () => {
});

it('typescript@next gives cra-template-typescript@next', async () => {
await expect(getTemplateInstallPackage('cra-template-typescript@next')).resolves.toBe(
await expect(getTemplateInstallPackage('typescript@next')).resolves.toBe(
'cra-template-typescript@next'
);
});
2 changes: 1 addition & 1 deletion packages/create-react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-react-app",
"version": "4.0.2",
"version": "4.0.3",
"keywords": [
"react"
],
Loading