React DevTools 6.1.1 -> 6.1.2 (#33142)
Patch release to mitigate https://github.com/facebook/react/issues/32659 Essentially just 6.1.1 with: * Restore all Transitions for Tree updates ([eps1lon](https://github.com/eps1lon) in [#33042](https://github.com/facebook/react/pull/33042)) * Restore "double-click to view owners tree" functionality ([eps1lon](https://github.com/eps1lon) in [#33039](https://github.com/facebook/react/pull/33039))
Ruslan Lesiutin committed
May 8, 2025 at 08:01 UTC
557a64795c6b55e32a87c468c9069b05319d3b9b
8 files changed
+17
-10
packages/react-devtools-core/package.json
+1
-1
@@ -1,6 +1,6 @@
1
{
2
"name": "react-devtools-core",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
"description": "Use react-devtools outside of the browser",
5
"license": "MIT",
6
"main": "./dist/backend.js",
packages/react-devtools-extensions/chrome/manifest.json
+2
-2
@@ -2,8 +2,8 @@
2
"manifest_version": 3,
3
"name": "React Developer Tools",
4
"description": "Adds React debugging tools to the Chrome Developer Tools.",
5
- "version": "6.1.1",
6
- "version_name": "6.1.1",
5
+ "version": "6.1.2",
6
+ "version_name": "6.1.2",
7
"minimum_chrome_version": "114",
8
"icons": {
9
"16": "icons/16-production.png",
packages/react-devtools-extensions/edge/manifest.json
+2
-2
@@ -2,8 +2,8 @@
2
"manifest_version": 3,
3
"name": "React Developer Tools",
4
"description": "Adds React debugging tools to the Microsoft Edge Developer Tools.",
5
- "version": "6.1.1",
6
- "version_name": "6.1.1",
5
+ "version": "6.1.2",
6
+ "version_name": "6.1.2",
7
"minimum_chrome_version": "114",
8
"icons": {
9
"16": "icons/16-production.png",
packages/react-devtools-extensions/firefox/manifest.json
+1
-1
@@ -2,7 +2,7 @@
2
"manifest_version": 3,
3
"name": "React Developer Tools",
4
"description": "Adds React debugging tools to the Firefox Developer Tools.",
5
- "version": "6.1.1",
5
+ "version": "6.1.2",
6
"browser_specific_settings": {
7
"gecko": {
8
"id": "@react-devtools",
packages/react-devtools-inline/package.json
+1
-1
@@ -1,6 +1,6 @@
1
{
2
"name": "react-devtools-inline",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
"description": "Embed react-devtools within a website",
5
"license": "MIT",
6
"main": "./dist/backend.js",
packages/react-devtools-timeline/package.json
+1
-1
@@ -1,7 +1,7 @@
1
{
2
"private": true,
3
"name": "react-devtools-timeline",
4
- "version": "6.1.1",
4
+ "version": "6.1.2",
5
"license": "MIT",
6
"dependencies": {
7
"@elg/speedscope": "1.9.0-a6f84db",
packages/react-devtools/CHANGELOG.md
+7
@@ -4,6 +4,13 @@
4
5
---
6
7
+### 6.1.2
8
+May 7, 2025
9
+
10
+* Restore "double-click to view owners tree" functionality ([eps1lon](https://github.com/eps1lon) in [#33039](https://github.com/facebook/react/pull/33039))
11
+
12
+---
13
+
14
### 6.1.1
15
February 7, 2025
16
packages/react-devtools/package.json
+2
-2
@@ -1,6 +1,6 @@
1
{
2
"name": "react-devtools",
3
- "version": "6.1.1",
3
+ "version": "6.1.2",
4
"description": "Use react-devtools outside of the browser",
5
"license": "MIT",
6
"repository": {
@@ -26,7 +26,7 @@
26
"electron": "^23.1.2",
27
"internal-ip": "^6.2.0",
28
"minimist": "^1.2.3",
29
- "react-devtools-core": "6.1.1",
29
+ "react-devtools-core": "6.1.2",
30
"update-notifier": "^2.1.0"
31
}
32
}