@samitouri / QOS-React / commits / ae3190c5e9

React DevTools 6.1.0 -> 6.1.1 (#32326)

Full list of changes: * DevTools: refactor NativeStyleEditor, don't use custom cache implementation ([hoxyq](https://github.com/hoxyq) in [#32298](https://github.com/facebook/react/pull/32298)) * fix[react-devtools-fusebox]: add extension globals to build ([hoxyq](https://github.com/hoxyq) in [#32297](https://github.com/facebook/react/pull/32297)) * DevTools: fix host component filter option title ([hoxyq](https://github.com/hoxyq) in [#32296](https://github.com/facebook/react/pull/32296)) * chore[DevTools]: make clipboardWrite optional for chromium ([hoxyq](https://github.com/hoxyq) in [#32262](https://github.com/facebook/react/pull/32262)) * DevTools: support useEffectEvent and forward-fix experimental prefix support ([hoxyq](https://github.com/hoxyq) in [#32106](https://github.com/facebook/react/pull/32106))

Ruslan Lesiutin committed Feb 7, 2025 at 10:54 UTC ae3190c5e929ec3b899734e2a6aface7cd4e42d0
8 files changed +19 -10
packages/react-devtools-core/package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "react-devtools-core",
3 - "version": "6.1.0",
3 + "version": "6.1.1",
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.0",
6 - "version_name": "6.1.0",
5 + "version": "6.1.1",
6 + "version_name": "6.1.1",
7 "minimum_chrome_version": "102",
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.0",
6 - "version_name": "6.1.0",
5 + "version": "6.1.1",
6 + "version_name": "6.1.1",
7 "minimum_chrome_version": "102",
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.0",
5 + "version": "6.1.1",
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.0",
3 + "version": "6.1.1",
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.0",
4 + "version": "6.1.1",
5 "license": "MIT",
6 "dependencies": {
7 "@elg/speedscope": "1.9.0-a6f84db",
packages/react-devtools/CHANGELOG.md
+9
@@ -4,6 +4,15 @@
4
5 ---
6
7 +### 6.1.1
8 +February 7, 2025
9 +
10 +* DevTools: refactor NativeStyleEditor, don't use custom cache implementation ([hoxyq](https://github.com/hoxyq) in [#32298](https://github.com/facebook/react/pull/32298))
11 +* DevTools: fix host component filter option title ([hoxyq](https://github.com/hoxyq) in [#32296](https://github.com/facebook/react/pull/32296))
12 +* chore[DevTools]: make clipboardWrite optional for chromium ([hoxyq](https://github.com/hoxyq) in [#32262](https://github.com/facebook/react/pull/32262))
13 +
14 +---
15 +
16 ### 6.1.0
17 January 16, 2025
18
packages/react-devtools/package.json
+2 -2
@@ -1,6 +1,6 @@
1 {
2 "name": "react-devtools",
3 - "version": "6.1.0",
3 + "version": "6.1.1",
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.0",
29 + "react-devtools-core": "6.1.1",
30 "update-notifier": "^2.1.0"
31 }
32 }