Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions and changelog #17016

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,62 @@
## 5.1.0 (2025-02-14)

This release officially deprecates Create React App, and add support for React 19 to support gradual migration to a new tool. See [TODO](#todo) for more details.

# Migrating from 5.0.1 to 5.1.0

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

```
npm install --save --save-exact [email protected]
```

or

```
yarn add --exact [email protected]
```

#### :boom: Deprecation

- `create-react-app`
- [#17003](https://github.com/facebook/create-react-app/pull/17003) Deprecate Create React App officially ([@orta](https://github.com/orta))

#### :bug: Bug Fix

- `cra-template-typescript`, `cra-template`, `react-scripts`
- [#13738](https://github.com/facebook/create-react-app/pull/13738) fix: upgrade RTL version to avoid peer-deps mismatch ([@MatanBobi](https://github.com/MatanBobi))

#### :nail_care: Enhancement

- `react-dev-utils`
- [#12412](https://github.com/facebook/create-react-app/pull/12412) fix: Reuse opening tab in Chrome Dev and Chrome Beta ([@nvh95](https://github.com/nvh95))

#### Committers: 23

- Adam Alston ([@adamalston](https://github.com/adamalston))
- Brian Donovan ([@eventualbuddha](https://github.com/eventualbuddha))
- Daniel Rentz ([@danielrentz](https://github.com/danielrentz))
- Darius Dzien ([@ddzz](https://github.com/ddzz))
- Deepak Bhardwaj ([@imdkbj](https://github.com/imdkbj))
- Hung Viet Nguyen ([@nvh95](https://github.com/nvh95))
- J S L Geeganage ([@JSLGeeganage](https://github.com/JSLGeeganage))
- Liam Mulhall ([@liammulh](https://github.com/liammulh))
- Lucas Cullen ([@bitcoinbrisbane](https://github.com/bitcoinbrisbane))
- Luke Karrys ([@lukekarrys](https://github.com/lukekarrys))
- Matan Borenkraout ([@MatanBobi](https://github.com/MatanBobi))
- Moshiul Huq Rabbi ([@MoshiulRabbi](https://github.com/MoshiulRabbi))
- Nasyx Nadeem ([@sdarnadeem](https://github.com/sdarnadeem))
- Orta Therox ([@orta](https://github.com/orta))
- Paul O’Shannessy ([@zpao](https://github.com/zpao))
- Paweł Skowronek ([@pawelskowronek](https://github.com/pawelskowronek))
- Rouan van der Ende ([@rvdende](https://github.com/rvdende))
- Toromo Adegboyega ([@teemezzy](https://github.com/teemezzy))
- Yaman ([@yamankatby](https://github.com/yamankatby))
- [@Olexandr88](https://github.com/Olexandr88)
- [@jonniebigodes](https://github.com/jonniebigodes)
- leonid-omelchuk-jemmic ([@leonid-omelchuk-jemmic](https://github.com/leonid-omelchuk-jemmic))
- ryan.c ([@jackblackevo](https://github.com/jackblackevo))

## 5.0.1 (2022-04-12)

Create React App 5.0.1 is a maintenance release that improves compatibility with React 18. We've also updated our templates to use `createRoot` and relaxed our check for older versions of Create React App.
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset-react-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-preset-react-app",
"version": "10.0.1",
"version": "10.1.0",
"description": "Babel preset used by Create React App",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/cra-template-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template-typescript",
"version": "1.2.0",
"version": "1.3.0",
"keywords": [
"react",
"create-react-app",
Expand Down
2 changes: 1 addition & 1 deletion packages/cra-template/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template",
"version": "1.2.0",
"version": "1.3.0",
"keywords": [
"react",
"create-react-app",
Expand Down
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": "5.0.2",
"version": "5.1.0",
"keywords": [
"react"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/react-dev-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-dev-utils",
"version": "12.0.1",
"version": "12.1.0",
"description": "webpack utilities used by Create React App",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/react-error-overlay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-error-overlay",
"version": "6.0.11",
"version": "6.1.0",
"description": "An overlay for displaying stack frames.",
"main": "lib/index.js",
"sideEffects": false,
Expand Down
Loading