Skip to content

Commit 6c7ef3f

Browse files
author
Juan
authored
React DevTools 4.20.2 -> 4.21.0 (#22661)
1 parent 6bce035 commit 6c7ef3f

File tree

8 files changed

+27
-10
lines changed

8 files changed

+27
-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.20.2",
3+
"version": "4.21.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.20.2",
6-
"version_name": "4.20.2",
5+
"version": "4.21.0",
6+
"version_name": "4.21.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.20.2",
6-
"version_name": "4.20.2",
5+
"version": "4.21.0",
6+
"version_name": "4.21.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.20.2",
5+
"version": "4.21.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.20.2",
3+
"version": "4.21.0",
44
"description": "Embed react-devtools within a website",
55
"license": "MIT",
66
"main": "./dist/backend.js",

packages/react-devtools-scheduling-profiler/package.json

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

packages/react-devtools/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
<!-- RELEASE_SCRIPT_TOKEN -->
44

5+
## 4.21.0 (October 31, 2021)
6+
7+
#### Features
8+
* Scheduling Profiler: Add marks for component effects (mount and unmount) ([@bvaughn](https://github.com/bvaughn) in [#22578](https://github.com/facebook/react/pull/22578))
9+
* Scheduling Profiler: De-emphasize React internal frames ([bvaughn](https://github.com/bvaughn) in [#22588](https://github.com/facebook/react/pull/22588))
10+
11+
12+
#### Bugfix
13+
* Revert logic for checking for duplicate installations of DevTools potentially causing issues loading Components tab ([@jstejada](https://github.com/jstejada) in [#22638](https://github.com/facebook/react/pull/22638))
14+
* Scheduling Profiler does not warn about long transitions ([@bvaughn](https://github.com/bvaughn) in [#22614](https://github.com/facebook/react/pull/22614))
15+
* Re-enable 'Reload and Start Profiling' for Microsoft Edge ([@eoandersson](https://github.com/eoandersson) in [#22631](https://github.com/facebook/react/pull/22631))
16+
17+
18+
#### Misc
19+
* DevTools supports ENV-injected version for better internal bug reports ([@bvaughn](https://github.com/bvaughn) in [#22635](https://github.com/facebook/react/pull/22635))
20+
* Fix typos ([@KonstHardy](https://github.com/KonstHardy) in [#22494](https://github.com/facebook/react/pull/22494))
21+
522
## 4.20.2 (October 20, 2021)
623

724
#### Bugfix

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.20.2",
3+
"version": "4.21.0",
44
"description": "Use react-devtools outside of the browser",
55
"license": "MIT",
66
"repository": {
@@ -27,7 +27,7 @@
2727
"electron": "^11.1.0",
2828
"ip": "^1.1.4",
2929
"minimist": "^1.2.3",
30-
"react-devtools-core": "4.20.2",
30+
"react-devtools-core": "4.21.0",
3131
"update-notifier": "^2.1.0"
3232
}
3333
}

0 commit comments

Comments
 (0)