Skip to content

Commit fbfe1f7

Browse files
Merge pull request #161 from preactjs/release-0.5.0
2 parents 9929abd + a08c610 commit fbfe1f7

File tree

5 files changed

+21
-4
lines changed

5 files changed

+21
-4
lines changed

CHANGELOG.md

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

3+
## 0.5.0
4+
5+
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!
6+
7+
Apart from that there have been some minor visual changes to improve readability.
8+
9+
- Make complex hook values collapsable (#160, thanks @marvinhagemeister)
10+
- Use better color hierarchy in sidebar (#159, thanks @marvinhagemeister)
11+
- Minor design improvements (#158, thanks @marvinhagemeister)
12+
- Add support for hooks (#143, thanks @marvinhagemeister)
13+
- Limit key length display (#154, thanks @marvinhagemeister)
14+
15+
Maintenance:
16+
17+
- Extract parsing logic from sidebar components (#156, thanks @marvinhagemeister)
18+
- Refactor SidebarPanel empty message handling (#155, thanks @marvinhagemeister)
19+
320
## 0.4.0
421

522
This release improves a lot of little UX interactions and contains a lot of house cleaning in preparation for hooks inspection.

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.4.0",
3+
"version": "0.5.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.4.0",
5+
"version": "0.5.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.4.0",
5+
"version": "0.5.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.4.0",
5+
"version": "0.5.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)