Skip to content

Commit 5bd702e

Browse files
Merge pull request #110 from preactjs/release-0.2.1
Release 0.2.1
2 parents cd2ae04 + de9032c commit 5bd702e

File tree

5 files changed

+22
-4
lines changed

5 files changed

+22
-4
lines changed

CHANGELOG.md

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

3+
## 0.2.1
4+
5+
With the introduction of a proper end-to-end (e2e) testing framework, we managed to quickly find and fix many bugs related to the element picker or highlighting of nodes on the inspected page :tada:
6+
7+
The extension is pretty stable by now and we expect to cut a proper 1.0.0 release in the not so distant future.
8+
9+
- Minor design tweaks to element search input (#109, thanks @marvinhagemeister)
10+
- Refactor inspection to be less error prone (#108, thanks @marvinhagemeister)
11+
- Fix inspect highlight not working on preactjs.com (#107, thanks @marvinhagemeister)
12+
- E2E test framework improvements (#106, thanks @marvinhagemeister)
13+
- Fix incorrect padding in filter dropdown (#105, thanks @marvinhagemeister)
14+
- Add test case for multiple roots (#103, thanks @marvinhagemeister)
15+
- Fix inspect picker not working anymore (#102, thanks @marvinhagemeister)
16+
- Fix highlight flickering (#101, thanks @marvinhagemeister)
17+
- Add proper end to end test setup (#100, thanks @marvinhagemeister)
18+
- Minor design improvements (#99, thanks @marvinhagemeister)
19+
- Port examples to htm (#98, thanks @marvinhagemeister)
20+
321
## 0.2.0
422

523
With this release the whole message passing between the extension and the page was rewritten from scratch. It's more robust now and rebuilds state whenever they are re-opened on the same page.

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