@samitouri / QOS-React / commits / 572ded3762

React DevTools 5.3.0 -> 5.3.1 (#30199)

## Summary Full list of changes, mostly fixes: * chore[react-devtools/renderer]: dont show strict mode warning for prod renderer builds ([hoxyq](https://github.com/hoxyq) in [#30158](https://github.com/facebook/react/pull/30158)) * chore[react-devtools/ui]: fix strict mode badge styles ([hoxyq](https://github.com/hoxyq) in [#30159](https://github.com/facebook/react/pull/30159)) * fix[react-devtools]: restore original args when recording errors ([hoxyq](https://github.com/hoxyq) in [#30091](https://github.com/facebook/react/pull/30091)) * Read constructor name more carefully ([LoganDark](https://github.com/LoganDark) in [#29954](https://github.com/facebook/react/pull/29954)) * refactor[react-devtools/extensions]: dont debounce cleanup logic on navigation ([hoxyq](https://github.com/hoxyq) in [#30027](https://github.com/facebook/react/pull/30027)) * lint: enable reportUnusedDisableDirectives and remove unused suppressions ([kassens](https://github.com/kassens) in [#28721](https://github.com/facebook/react/pull/28721)) * fix[react-devtools/extensions]: propagate globals from env ([hoxyq](https://github.com/hoxyq) in [#29963](https://github.com/facebook/react/pull/29963)) * refactor[react-devtools/tests]: use registered marks instead of cleared in tests ([hoxyq](https://github.com/hoxyq) in [#29929](https://github.com/facebook/react/pull/29929))

Ruslan Lesiutin committed Jul 3, 2024 at 11:46 UTC 572ded3762fa7332e2d062e4373369cd7008b7b0
8 files changed +21 -10
packages/react-devtools-core/package.json
+1 -1
@@ -1,6 +1,6 @@
1 {
2 "name": "react-devtools-core",
3 - "version": "5.3.0",
3 + "version": "5.3.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": "5.3.0",
6 - "version_name": "5.3.0",
5 + "version": "5.3.1",
6 + "version_name": "5.3.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": "5.3.0",
6 - "version_name": "5.3.0",
5 + "version": "5.3.1",
6 + "version_name": "5.3.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": 2,
3 "name": "React Developer Tools",
4 "description": "Adds React debugging tools to the Firefox Developer Tools.",
5 - "version": "5.3.0",
5 + "version": "5.3.1",
6 "applications": {
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": "5.3.0",
3 + "version": "5.3.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": "5.3.0",
4 + "version": "5.3.1",
5 "license": "MIT",
6 "dependencies": {
7 "@elg/speedscope": "1.9.0-a6f84db",
packages/react-devtools/CHANGELOG.md
+11
@@ -4,6 +4,17 @@
4
5 ---
6
7 +### 5.3.1
8 +July 3, 2024
9 +
10 +* chore[react-devtools/renderer]: dont show strict mode warning for prod renderer builds ([hoxyq](https://github.com/hoxyq) in [#30158](https://github.com/facebook/react/pull/30158))
11 +* chore[react-devtools/ui]: fix strict mode badge styles ([hoxyq](https://github.com/hoxyq) in [#30159](https://github.com/facebook/react/pull/30159))
12 +* fix[react-devtools]: restore original args when recording errors ([hoxyq](https://github.com/hoxyq) in [#30091](https://github.com/facebook/react/pull/30091))
13 +* Read constructor name more carefully ([LoganDark](https://github.com/LoganDark) in [#29954](https://github.com/facebook/react/pull/29954))
14 +* refactor[react-devtools/extensions]: dont debounce cleanup logic on navigation ([hoxyq](https://github.com/hoxyq) in [#30027](https://github.com/facebook/react/pull/30027))
15 +
16 +---
17 +
18 ### 5.3.0
19 June 17, 2024
20
packages/react-devtools/package.json
+2 -2
@@ -1,6 +1,6 @@
1 {
2 "name": "react-devtools",
3 - "version": "5.3.0",
3 + "version": "5.3.1",
4 "description": "Use react-devtools outside of the browser",
5 "license": "MIT",
6 "repository": {
@@ -27,7 +27,7 @@
27 "electron": "^23.1.2",
28 "internal-ip": "^6.2.0",
29 "minimist": "^1.2.3",
30 - "react-devtools-core": "5.3.0",
30 + "react-devtools-core": "5.3.1",
31 "update-notifier": "^2.1.0"
32 }
33 }