From 6f14aa1c71b2142ff064d867d365ceba778a0afd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 11 May 2026 12:35:14 +0000 Subject: [PATCH] chore(release): wxt v0.20.26 --- bun.lock | 2 +- packages/wxt/CHANGELOG.md | 55 ++++++++++++++++++++++++++++++++++ packages/wxt/package.json | 2 +- templates/react/package.json | 2 +- templates/solid/package.json | 2 +- templates/svelte/package.json | 2 +- templates/vanilla/package.json | 2 +- templates/vue/package.json | 2 +- 8 files changed, 62 insertions(+), 7 deletions(-) diff --git a/bun.lock b/bun.lock index 488bc92f..5990ab71 100644 --- a/bun.lock +++ b/bun.lock @@ -286,7 +286,7 @@ }, "packages/wxt": { "name": "wxt", - "version": "0.20.25", + "version": "0.20.26", "bin": { "wxt": "./bin/wxt.mjs", "wxt-publish-extension": "./bin/wxt-publish-extension.mjs", diff --git a/packages/wxt/CHANGELOG.md b/packages/wxt/CHANGELOG.md index b65d80e7..8b2c0c5c 100644 --- a/packages/wxt/CHANGELOG.md +++ b/packages/wxt/CHANGELOG.md @@ -1,5 +1,60 @@ # Changelog +## v0.20.26 + +[compare changes](https://github.com/wxt-dev/wxt/compare/wxt-v0.20.25...wxt-v0.20.26) + +### 🚀 Enhancements + +- Add `default_state` option to popup actions ([#2010](https://github.com/wxt-dev/wxt/pull/2010)) +- Add content script `noScriptStartedPostMessage` option ([#2265](https://github.com/wxt-dev/wxt/pull/2265)) + +### 🩹 Fixes + +- Use `manifestVersion` from CLI during manifest generation ([#2306](https://github.com/wxt-dev/wxt/pull/2306)) +- Modify command to support variadic positional args ([#2317](https://github.com/wxt-dev/wxt/pull/2317)) +- Bump `publish-browser-extension` to `v4.0.5`, to resolve Chrome Web Store submission issue ([#2331](https://github.com/wxt-dev/wxt/pull/2331)) +- Avoid errors when files are removed during build ([#2343](https://github.com/wxt-dev/wxt/pull/2343)) +- **manifest:** Exclude `open_in_tab` from `options_ui` for Safari ([#2311](https://github.com/wxt-dev/wxt/pull/2311)) + +### 📖 Documentation + +- **wxt-modules:** Add logging examples/best practices ([57e3748d](https://github.com/wxt-dev/wxt/commit/57e3748d)) +- Correct entrypoints icon example code ([#2302](https://github.com/wxt-dev/wxt/pull/2302)) +- Add types for components ([#2273](https://github.com/wxt-dev/wxt/pull/2273)) +- Fix JSDoc example formatting ([2a8ec0d7](https://github.com/wxt-dev/wxt/commit/2a8ec0d7)) +- Remove unused code ([#2275](https://github.com/wxt-dev/wxt/pull/2275)) +- Fix horizontal scrollbar displaying on landing page ([#2329](https://github.com/wxt-dev/wxt/pull/2329)) +- Add Mimik extension to the list of extensions ([#2319](https://github.com/wxt-dev/wxt/pull/2319)) +- Added modrinth extras and pi-hole in one to showcase ([#2337](https://github.com/wxt-dev/wxt/pull/2337)) +- Added "QIE Wallet" to showcase ([#2341](https://github.com/wxt-dev/wxt/pull/2341)) +- Update Safari publishing instructions to match Apple docs ([#2314](https://github.com/wxt-dev/wxt/pull/2314)) +- Add "Redmine Time Tracking" to extension showcase ([#2312](https://github.com/wxt-dev/wxt/pull/2312)) + +### 🏡 Chore + +- More JSDoc fixes ([9b59f38c](https://github.com/wxt-dev/wxt/commit/9b59f38c)) +- Move `createFileReloader` into it's own file ([#2307](https://github.com/wxt-dev/wxt/pull/2307)) +- Remove ts-expect-error that are no longer needed ([#2344](https://github.com/wxt-dev/wxt/pull/2344)) +- **deps-dev:** Bump typescript from 5.9.3 to 6.0.3 ([#2325](https://github.com/wxt-dev/wxt/pull/2325)) +- **deps-dev:** Bump oxlint from 1.59.0 to 1.63.0 ([#2356](https://github.com/wxt-dev/wxt/pull/2356)) +- Use `catalog:` for dev dependencies ([#2357](https://github.com/wxt-dev/wxt/pull/2357)) + +### ❤️ Contributors + +- Jonathan Viney ([@jviney](https://github.com/jviney)) +- Rxliuli ([@rxliuli](https://github.com/rxliuli)) +- CrawlerCode ([@CrawlerCode](https://github.com/CrawlerCode)) +- Thomas Howlett ([@howlettt](https://github.com/howlettt)) +- Aaron ([@aklinker1](https://github.com/aklinker1)) +- Brian Zhou ([@aiktb](https://github.com/aiktb)) +- Soaib Haque ([@SoaibHaque](https://github.com/SoaibHaque)) +- Arthur +- Luis Ortiz ([@KiryuuLight](https://github.com/KiryuuLight)) +- Patryk Kuniczak ([@PatrykKuniczak](https://github.com/PatrykKuniczak)) +- Laplace-anon ([@laplace-anon](https://github.com/laplace-anon)) +- Kairi ([@kairi003](https://github.com/kairi003)) + ## v0.20.25 [compare changes](https://github.com/wxt-dev/wxt/compare/wxt-v0.20.24...wxt-v0.20.25) diff --git a/packages/wxt/package.json b/packages/wxt/package.json index 399cdd26..713efc2f 100644 --- a/packages/wxt/package.json +++ b/packages/wxt/package.json @@ -1,7 +1,7 @@ { "name": "wxt", "type": "module", - "version": "0.20.25", + "version": "0.20.26", "description": "⚡ Next-gen Web Extension Framework", "license": "MIT", "scripts": { diff --git a/templates/react/package.json b/templates/react/package.json index da0e2e28..9a27f6cf 100644 --- a/templates/react/package.json +++ b/templates/react/package.json @@ -23,6 +23,6 @@ "@types/react-dom": "^19.2.3", "@wxt-dev/module-react": "^1.1.5", "typescript": "^5.9.3", - "wxt": "^0.20.25" + "wxt": "^0.20.26" } } diff --git a/templates/solid/package.json b/templates/solid/package.json index a75fcfe5..c3ed8d9c 100644 --- a/templates/solid/package.json +++ b/templates/solid/package.json @@ -20,6 +20,6 @@ "devDependencies": { "@wxt-dev/module-solid": "^1.1.4", "typescript": "^5.9.3", - "wxt": "^0.20.25" + "wxt": "^0.20.26" } } diff --git a/templates/svelte/package.json b/templates/svelte/package.json index 0fc01883..e1c6e1c9 100644 --- a/templates/svelte/package.json +++ b/templates/svelte/package.json @@ -21,6 +21,6 @@ "svelte-check": "^4.4.4", "tslib": "^2.8.1", "typescript": "^5.9.3", - "wxt": "^0.20.25" + "wxt": "^0.20.26" } } diff --git a/templates/vanilla/package.json b/templates/vanilla/package.json index bd59da4c..6a883227 100644 --- a/templates/vanilla/package.json +++ b/templates/vanilla/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "typescript": "^5.9.3", - "wxt": "^0.20.25" + "wxt": "^0.20.26" } } diff --git a/templates/vue/package.json b/templates/vue/package.json index 72a7cd42..72050455 100644 --- a/templates/vue/package.json +++ b/templates/vue/package.json @@ -21,6 +21,6 @@ "@wxt-dev/module-vue": "^1.0.3", "typescript": "^5.9.3", "vue-tsc": "^3.2.5", - "wxt": "^0.20.25" + "wxt": "^0.20.26" } }