Skip to content

Commit 884edf3

Browse files
Merge pull request #213 from preactjs/release-0.7.0
2 parents 39f5aea + e126c87 commit 884edf3

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

CHANGELOG.md

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

3+
## 0.7.0
4+
5+
This release is packed with features! The star of the show is the "highlight updates" option in the settings page, which when enabled will visualise updates via on overlay on top of the page.
6+
7+
Features:
8+
9+
- Add support for view source (#210, thanks @marvinhagemeister)
10+
- Add proper support for debugging iframes (#209, thanks @marvinhagemeister)
11+
- Sync selection (#206, thanks @marvinhagemeister)
12+
- Add support for highlight updates (#202, #204, #205, #208, thanks @marvinhagemeister)
13+
- Profiler: Highlight nodes in DOM if present (#199, thanks @marvinhagemeister)
14+
15+
Bug Fixes:
16+
17+
- Fix profiler nodes getting lost due to mutations (#200, thanks @marvinhagemeister)
18+
19+
Maintenance:
20+
21+
- Sidebar cleanup (#211, thanks @marvinhagemeister)
22+
- Restructure settings page (#203, #212 thanks @marvinhagemeister)
23+
- Modernize e2e tests (#201, thanks @marvinhagemeister)
24+
- Action docs (#198, thanks @marvinhagemeister)
25+
326
## 0.6.2
427

528
This release completes the Profiler rewrite. The flamegraph can now display memoized trees and displays timings in a lot more polished way.

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