diff --git a/bun.lock b/bun.lock index 32b305cb..cecdec34 100644 --- a/bun.lock +++ b/bun.lock @@ -283,7 +283,7 @@ }, "packages/wxt": { "name": "wxt", - "version": "0.20.21", + "version": "0.20.22", "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 c19d4739..bbb77a9a 100644 --- a/packages/wxt/CHANGELOG.md +++ b/packages/wxt/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## v0.20.22 + +[compare changes](https://github.com/wxt-dev/wxt/compare/wxt-v0.20.21...wxt-v0.20.22) + +### 🚀 Enhancements + +- Add support for Firefox data collection permissions ([#1976](https://github.com/wxt-dev/wxt/pull/1976)) +- Add `dev.server.strictPort` option ([#2261](https://github.com/wxt-dev/wxt/pull/2261)) + +### 🩹 Fixes + +- Scripts injection for MV2 ([#2232](https://github.com/wxt-dev/wxt/pull/2232)) +- Skip applying `esbuild.charset=ascii` vite 8 ([#2264](https://github.com/wxt-dev/wxt/pull/2264)) +- Apply expanded env to `process.env` ([#2267](https://github.com/wxt-dev/wxt/pull/2267)) + +### 📖 Documentation + +- Fix Read Frog Firefox showcase link ([#2256](https://github.com/wxt-dev/wxt/pull/2256)) +- Add TF2 Trader to the list of extensions ([#2213](https://github.com/wxt-dev/wxt/pull/2213)) + +### ❤️ Contributors + +- Aaron ([@aklinker1](https://github.com/aklinker1)) +- Offish ([@offish](https://github.com/offish)) +- Patryk Kuniczak ([@PatrykKuniczak](https://github.com/PatrykKuniczak)) +- Suvesh Moza +- GuaGua + ## v0.20.21 [compare changes](https://github.com/wxt-dev/wxt/compare/wxt-v0.20.20...wxt-v0.20.21) diff --git a/packages/wxt/package.json b/packages/wxt/package.json index 3e02dd8c..4e4b4e04 100644 --- a/packages/wxt/package.json +++ b/packages/wxt/package.json @@ -1,7 +1,7 @@ { "name": "wxt", "type": "module", - "version": "0.20.21", + "version": "0.20.22", "description": "⚡ Next-gen Web Extension Framework", "license": "MIT", "scripts": { diff --git a/templates/react/package.json b/templates/react/package.json index f074e433..7a39def8 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.21" + "wxt": "^0.20.22" } } diff --git a/templates/solid/package.json b/templates/solid/package.json index 306c0456..b00d1ceb 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.21" + "wxt": "^0.20.22" } } diff --git a/templates/svelte/package.json b/templates/svelte/package.json index 082caf8d..8c4a9dee 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.21" + "wxt": "^0.20.22" } } diff --git a/templates/vanilla/package.json b/templates/vanilla/package.json index 745420b3..2494c309 100644 --- a/templates/vanilla/package.json +++ b/templates/vanilla/package.json @@ -16,6 +16,6 @@ }, "devDependencies": { "typescript": "^5.9.3", - "wxt": "^0.20.21" + "wxt": "^0.20.22" } } diff --git a/templates/vue/package.json b/templates/vue/package.json index 0fe76fb8..d6c25ccd 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.21" + "wxt": "^0.20.22" } }