Skip to content

Commit

Permalink
Release 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister committed Apr 15, 2021
1 parent 151c1d3 commit 802f0dd
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## 1.4.0

### Features

- Display hook type before custom name (#289, thanks @marvinhagemeister, @cmlenz)
- Show custom useMemo hook names (#288, thanks @marvinhagemeister)

### Bug Fixes

- Fix empty panel in Firefox (#294, thanks @marvinhagemeister)
- Fix hook names being reversed with addHookNames from preact/devtools (#287, thanks @marvinhagemeister, @cmlenz)

### Maintenance

- Port test suite over to vite (#295, thanks @marvinhagemeister)
- Rename `*.css` -> `*.module.css` (#292, thanks @marvinhagemeister)
- Improve pre-test server check (#291, thanks @marvinhagemeister)
- Run end-to-end tests in CI (#104, thanks @marvinhagemeister)
- Make tests less reliant on timings (#290, thanks @marvinhagemeister)
- Update dependencies for M1 support (#285, thanks @marvinhagemeister)
- Update to Node 14 in GH Actions (#286, thanks @marvinhagemeister)

## 1.3.0

- Add support for custom hook names via `addHookName` from `preact/devtools`. This is supported in Preact >= 10.5.12 (#281, thanks @marvinhagemeister)
Expand Down
2 changes: 1 addition & 1 deletion src/shells/chrome/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Chrome",
"version": "1.3.0",
"version": "1.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/edge/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Microsoft Edge",
"version": "1.3.0",
"version": "1.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down
2 changes: 1 addition & 1 deletion src/shells/firefox/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Preact Developer Tools",
"description": "Adds debugging tools for Preact to Firefox",
"version": "1.3.0",
"version": "1.4.0",
"devtools_page": "panel/empty-panel.html",
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"permissions": ["file:///*", "http://*/*", "https://*/*", "storage"],
Expand Down

0 comments on commit 802f0dd

Please sign in to comment.