Skip to content

Commit 89a7343

Browse files
author
Brian Vaughn
committed
React DevTools 4.23.0 -> 4.24.0
1 parent 0e0b1a4 commit 89a7343

File tree

8 files changed

+28
-10
lines changed

8 files changed

+28
-10
lines changed

packages/react-devtools-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-devtools-core",
3-
"version": "4.23.0",
3+
"version": "4.24.0",
44
"description": "Use react-devtools outside of the browser",
55
"license": "MIT",
66
"main": "./dist/backend.js",

packages/react-devtools-extensions/chrome/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 2,
33
"name": "React Developer Tools",
44
"description": "Adds React debugging tools to the Chrome Developer Tools.",
5-
"version": "4.23.0",
6-
"version_name": "4.23.0",
5+
"version": "4.24.0",
6+
"version_name": "4.24.0",
77
"minimum_chrome_version": "60",
88
"icons": {
99
"16": "icons/16-production.png",

packages/react-devtools-extensions/edge/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
"manifest_version": 2,
33
"name": "React Developer Tools",
44
"description": "Adds React debugging tools to the Microsoft Edge Developer Tools.",
5-
"version": "4.23.0",
6-
"version_name": "4.23.0",
5+
"version": "4.24.0",
6+
"version_name": "4.24.0",
77
"minimum_chrome_version": "60",
88
"icons": {
99
"16": "icons/16-production.png",

packages/react-devtools-extensions/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "React Developer Tools",
44
"description": "Adds React debugging tools to the Firefox Developer Tools.",
5-
"version": "4.23.0",
5+
"version": "4.24.0",
66
"applications": {
77
"gecko": {
88
"id": "@react-devtools",

packages/react-devtools-inline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-devtools-inline",
3-
"version": "4.23.0",
3+
"version": "4.24.0",
44
"description": "Embed react-devtools within a website",
55
"license": "MIT",
66
"main": "./dist/backend.js",

packages/react-devtools-timeline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "react-devtools-timeline",
4-
"version": "4.23.0",
4+
"version": "4.24.0",
55
"license": "MIT",
66
"dependencies": {
77
"@elg/speedscope": "1.9.0-a6f84db",

packages/react-devtools/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
<!-- RELEASE_SCRIPT_TOKEN -->
44

5+
## 4.24.0 (March 2, 2022)
6+
7+
### Feature
8+
* Show DevTools backend and frontend versions in UI ([bvaughn](https://github.com/bvaughn) in [#23399](https://github.com/facebook/react/pull/23399))
9+
* Timeline profiler refactored to support reading basic profiling data directly from React ([bvaughn](https://github.com/bvaughn) in [#22529](https://github.com/facebook/react/issues/22529))
10+
11+
#### Bugfix
12+
* Gracefully handle empty "xstyle" prop values ([lunaruan](https://github.com/lunaruan) in [#23279](https://github.com/facebook/react/pull/23279) and [bvaughn](https://github.com/bvaughn) in [#23190](https://github.com/facebook/react/pull/23190))
13+
* Add `<TracingMarker>` component boilerplate ([lunaruan](https://github.com/lunaruan) in [#23275](https://github.com/facebook/react/pull/23275))
14+
15+
#### Misc
16+
* Remove object-assign polyfill ([sebmarkbage](https://github.com/sebmarkbage) in [#23351](https://github.com/facebook/react/pull/23351))
17+
18+
#### Breaking change
19+
* Move createRoot/hydrateRoot to react-dom/client ([sebmarkbage](https://github.com/sebmarkbage) in [#23385](https://github.com/facebook/react/pull/23385)).
20+
21+
Technically this is a breaking change for projects using `react-devtools-inline`, but since this package already depends on the _experimental_ release channel, we are going to include it in 4.24.
22+
523
### 4.23.0
624
January 24, 2022
725

packages/react-devtools/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-devtools",
3-
"version": "4.23.0",
3+
"version": "4.24.0",
44
"description": "Use react-devtools outside of the browser",
55
"license": "MIT",
66
"repository": {
@@ -26,7 +26,7 @@
2626
"electron": "^11.1.0",
2727
"ip": "^1.1.4",
2828
"minimist": "^1.2.3",
29-
"react-devtools-core": "4.23.0",
29+
"react-devtools-core": "4.24.0",
3030
"update-notifier": "^2.1.0"
3131
}
3232
}

0 commit comments

Comments
 (0)