Skip to content

Commit 16d280b

Browse files
Merge pull request #175 from preactjs/release-0.6.0
2 parents 72fbdc8 + 53e2fa7 commit 16d280b

File tree

5 files changed

+28
-4
lines changed

5 files changed

+28
-4
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Changelog
22

3+
## 0.6.0
4+
5+
This release hardens the recently introduced hooks inspection and fixes several edge cases. Apart from that it's now possible to properly debug Preact applications that are rendered inside an `iframe`. The highlight overlay will adapt to the `iframe`'s position accordingly :tada:
6+
7+
Despite this being mostly a maintenance release, there is one new feature: "Reload and profile". This allows to capture the very first render of any application and inspect the render performance!
8+
9+
Features:
10+
11+
- Sync (only user) selection Profiler -> Elements (#174, thanks @marvinhagemeister)
12+
- Add support for reload and profile (#172, thanks @marvinhagemeister)
13+
14+
Bug Fixes:
15+
16+
- Fix wrong highlight position if rendered in iframe (#171, thanks @marvinhagemeister)
17+
- Fix hooks parsing error when value is shortened (#167, thanks @marvinhagemeister)
18+
- Fix possible exception in hooks parsing code (#166, thanks @marvinhagemeister)
19+
- Fix tree item not scrolling into view in search (#165, thanks @marvinhagemeister)
20+
21+
Maintenance:
22+
23+
- Always enable no-console linting rule (#173, thanks @marvinhagemeister)
24+
- Make e2e tests more resilient (#170, thanks @marvinhagemeister)
25+
- Upgrade all dependencies (#163, thanks @marvinhagemeister)
26+
327
## 0.5.0
428

529
This release finally brings support for hooks inspection to preact devtools! It allows you to fully debug all hooks of a component, including custom ones. This is big for me as it took me a few tries to get it right. If you find any issues with it, please reach out!

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "preact-devtools",
3-
"version": "0.5.0",
3+
"version": "0.6.0",
44
"description": "Preact Devtools Extension",
55
"main": "dist/preact-devtools.js",
66
"module": "dist/preact-devtools.module.js",

src/shells/chrome/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.5.0",
5+
"version": "0.6.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

src/shells/edge/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Microsoft Edge",
5-
"version": "0.5.0",
5+
"version": "0.6.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

src/shells/firefox/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"manifest_version": 2,
33
"name": "Preact Developer Tools",
44
"description": "Adds debugging tools for Preact to Chrome",
5-
"version": "0.5.0",
5+
"version": "0.6.0",
66
"devtools_page": "panel/empty-panel.html",
77
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
88
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],

0 commit comments

Comments
 (0)