Skip to content

Commit 802f0dd

Browse files
Release 1.4.0
1 parent 151c1d3 commit 802f0dd

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

CHANGELOG.md

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

3+
## 1.4.0
4+
5+
### Features
6+
7+
- Display hook type before custom name (#289, thanks @marvinhagemeister, @cmlenz)
8+
- Show custom useMemo hook names (#288, thanks @marvinhagemeister)
9+
10+
### Bug Fixes
11+
12+
- Fix empty panel in Firefox (#294, thanks @marvinhagemeister)
13+
- Fix hook names being reversed with addHookNames from preact/devtools (#287, thanks @marvinhagemeister, @cmlenz)
14+
15+
### Maintenance
16+
17+
- Port test suite over to vite (#295, thanks @marvinhagemeister)
18+
- Rename `*.css` -> `*.module.css` (#292, thanks @marvinhagemeister)
19+
- Improve pre-test server check (#291, thanks @marvinhagemeister)
20+
- Run end-to-end tests in CI (#104, thanks @marvinhagemeister)
21+
- Make tests less reliant on timings (#290, thanks @marvinhagemeister)
22+
- Update dependencies for M1 support (#285, thanks @marvinhagemeister)
23+
- Update to Node 14 in GH Actions (#286, thanks @marvinhagemeister)
24+
325
## 1.3.0
426

527
- Add support for custom hook names via `addHookName` from `preact/devtools`. This is supported in Preact >= 10.5.12 (#281, thanks @marvinhagemeister)

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": "1.3.0",
5+
"version": "1.4.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": "1.3.0",
5+
"version": "1.4.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 Firefox",
5-
"version": "1.3.0",
5+
"version": "1.4.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)