Skip to content

Commit e28a0db

Browse files
author
Brian Vaughn
committed
React DevTools 4.22.1 -> 4.23.0
1 parent 13036bf commit e28a0db

File tree

8 files changed

+22
-10
lines changed

8 files changed

+22
-10
lines changed

packages/react-devtools-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-devtools-core",
3-
"version": "4.22.1",
3+
"version": "4.23.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

+2-2
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.22.1",
6-
"version_name": "4.22.1",
5+
"version": "4.23.0",
6+
"version_name": "4.23.0",
77
"minimum_chrome_version": "60",
88
"icons": {
99
"16": "icons/16-production.png",

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

+2-2
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.22.1",
6-
"version_name": "4.22.1",
5+
"version": "4.23.0",
6+
"version_name": "4.23.0",
77
"minimum_chrome_version": "60",
88
"icons": {
99
"16": "icons/16-production.png",

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

+1-1
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.22.1",
5+
"version": "4.23.0",
66
"applications": {
77
"gecko": {
88
"id": "@react-devtools",

packages/react-devtools-inline/package.json

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

packages/react-devtools-timeline/package.json

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

packages/react-devtools/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
<!-- RELEASE_SCRIPT_TOKEN -->
44

5+
## 4.23.0 (January 24, 2022)
6+
7+
### Feature
8+
* DevTools: Only show StrictMode badge on root elements ([bvaughn](https://github.com/bvaughn) in [#23012](https://github.com/facebook/react/pull/23012))
9+
10+
#### Bugfix
11+
* Don't crawl unmounted subtrees when profiling starts ([bvaughn](https://github.com/bvaughn) in [#23162](https://github.com/facebook/react/pull/23162))
12+
* Filter deleted components from the updaters list to avoid runtime errors later ([lunaruan](https://github.com/lunaruan) in [#23156](https://github.com/facebook/react/pull/23156))
13+
14+
#### Misc
15+
* DevTools (not React) logs Timeline performance data to the User Timing API ([bvaughn](https://github.com/bvaughn) in [#23102](https://github.com/facebook/react/pull/23102))
16+
517
## 4.22.1 (December 14, 2021)
618

719
* Fix invalid `require()` statements in `react-devtools-inline` ([bvaughn](https://github.com/bvaughn) in [#22961](https://github.com/facebook/react/pull/22961))

packages/react-devtools/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-devtools",
3-
"version": "4.22.1",
3+
"version": "4.23.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.22.1",
29+
"react-devtools-core": "4.23.0",
3030
"update-notifier": "^2.1.0"
3131
}
3232
}

0 commit comments

Comments
 (0)