diff --git a/.changeset/curly-moons-shave.md b/.changeset/curly-moons-shave.md deleted file mode 100644 index ee9d7098a83..00000000000 --- a/.changeset/curly-moons-shave.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'eslint-plugin-qwik': minor -'create-qwik': minor -'@builder.io/qwik-city': minor -'@builder.io/qwik': minor ---- - -FEAT: bump Vite to v7 diff --git a/.changeset/early-eels-listen.md b/.changeset/early-eels-listen.md deleted file mode 100644 index 4905d366100..00000000000 --- a/.changeset/early-eels-listen.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@builder.io/qwik': patch -'@builder.io/qwik-city': patch ---- - -FIX: Keeping the service worker components now properly unregisters them. diff --git a/.changeset/free-views-boil.md b/.changeset/free-views-boil.md deleted file mode 100644 index 6ceab2bce1f..00000000000 --- a/.changeset/free-views-boil.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik-city': patch ---- - -FIX: redirects no longer take their parent layout's Cache-Control value by default and are instead set to `no-store`. This prevents issues in redirection logic. We might introduce another API to enable caching redirects in the future. diff --git a/.changeset/new-nights-smile.md b/.changeset/new-nights-smile.md deleted file mode 100644 index 1e87859d6e6..00000000000 --- a/.changeset/new-nights-smile.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -INFRA: remove a grace period before unregistering events from qwikloader diff --git a/.changeset/small-rocks-relate.md b/.changeset/small-rocks-relate.md deleted file mode 100644 index e529265e6a6..00000000000 --- a/.changeset/small-rocks-relate.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@builder.io/qwik': patch -'@builder.io/qwik-city': patch ---- - -FIX: Keeping the service worker components now also removes their associated Cache storage. diff --git a/.changeset/social-kings-visit.md b/.changeset/social-kings-visit.md deleted file mode 100644 index 9f0a2e085f5..00000000000 --- a/.changeset/social-kings-visit.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'create-qwik': patch ---- - -FIX: fix up TypeScript compatibility in the localize starter diff --git a/.changeset/thirty-monkeys-knock.md b/.changeset/thirty-monkeys-knock.md deleted file mode 100644 index ee667ddc088..00000000000 --- a/.changeset/thirty-monkeys-knock.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FIX: fix up open in editor feature diff --git a/.changeset/young-groups-open.md b/.changeset/young-groups-open.md deleted file mode 100644 index 46aaad57244..00000000000 --- a/.changeset/young-groups-open.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@builder.io/qwik': patch ---- - -FIX: SSR was missing some places with nonce for CSP. Now CSP should work even when strict-dynamic diff --git a/packages/create-qwik/CHANGELOG.md b/packages/create-qwik/CHANGELOG.md index 6c9cdf15378..9e57d6fd72b 100644 --- a/packages/create-qwik/CHANGELOG.md +++ b/packages/create-qwik/CHANGELOG.md @@ -1,5 +1,15 @@ # create-qwik +## 1.16.0 + +### Minor Changes + +- ✨ bump Vite to v7 (by [@gioboa](https://github.com/gioboa) in [#7762](https://github.com/QwikDev/qwik/pull/7762)) + +### Patch Changes + +- 🐞🩹 fix up TypeScript compatibility in the localize starter (by [@FDiskas](https://github.com/FDiskas) in [#7617](https://github.com/QwikDev/qwik/pull/7617)) + ## 1.15.0 ### Patch Changes diff --git a/packages/create-qwik/package.json b/packages/create-qwik/package.json index 2f754be759d..b08c329895f 100644 --- a/packages/create-qwik/package.json +++ b/packages/create-qwik/package.json @@ -1,7 +1,7 @@ { "name": "create-qwik", "description": "Interactive CLI for create Qwik projects and adding features.", - "version": "1.15.0", + "version": "1.16.0", "author": "Builder.io Team", "bin": "./create-qwik.cjs", "bugs": "https://github.com/QwikDev/qwik/issues", diff --git a/packages/eslint-plugin-qwik/CHANGELOG.md b/packages/eslint-plugin-qwik/CHANGELOG.md index d245f721bc0..eaed28aa8f0 100644 --- a/packages/eslint-plugin-qwik/CHANGELOG.md +++ b/packages/eslint-plugin-qwik/CHANGELOG.md @@ -1,5 +1,11 @@ # eslint-plugin-qwik +## 1.16.0 + +### Minor Changes + +- ✨ bump Vite to v7 (by [@gioboa](https://github.com/gioboa) in [#7762](https://github.com/QwikDev/qwik/pull/7762)) + ## 1.15.0 ### Patch Changes diff --git a/packages/eslint-plugin-qwik/package.json b/packages/eslint-plugin-qwik/package.json index 0ab585b42c1..65089dcbdff 100644 --- a/packages/eslint-plugin-qwik/package.json +++ b/packages/eslint-plugin-qwik/package.json @@ -1,7 +1,7 @@ { "name": "eslint-plugin-qwik", "description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.", - "version": "1.15.0", + "version": "1.16.0", "author": "Builder Team", "bugs": "https://github.com/QwikDev/qwik/issues", "dependencies": { diff --git a/packages/qwik-city/CHANGELOG.md b/packages/qwik-city/CHANGELOG.md index 2f370eb1ae1..5a352caca59 100644 --- a/packages/qwik-city/CHANGELOG.md +++ b/packages/qwik-city/CHANGELOG.md @@ -1,5 +1,19 @@ # @builder.io/qwik-city +## 1.16.0 + +### Minor Changes + +- ✨ bump Vite to v7 (by [@gioboa](https://github.com/gioboa) in [#7762](https://github.com/QwikDev/qwik/pull/7762)) + +### Patch Changes + +- 🐞🩹 Keeping the service worker components now properly unregisters them. (by [@maiieul](https://github.com/maiieul) in [#7781](https://github.com/QwikDev/qwik/pull/7781)) + +- 🐞🩹 redirects no longer take their parent layout's Cache-Control value by default and are instead set to `no-store`. This prevents issues in redirection logic. We might introduce another API to enable caching redirects in the future. (by [@maiieul](https://github.com/maiieul) in [#7811](https://github.com/QwikDev/qwik/pull/7811)) + +- 🐞🩹 Keeping the service worker components now also removes their associated Cache storage. (by [@maiieul](https://github.com/maiieul) in [#7782](https://github.com/QwikDev/qwik/pull/7782)) + ## 1.15.0 ### Minor Changes diff --git a/packages/qwik-city/package.json b/packages/qwik-city/package.json index 0cf494383a5..b966c61911c 100644 --- a/packages/qwik-city/package.json +++ b/packages/qwik-city/package.json @@ -1,7 +1,7 @@ { "name": "@builder.io/qwik-city", "description": "The meta-framework for Qwik.", - "version": "1.15.0", + "version": "1.16.0", "bugs": "https://github.com/QwikDev/qwik/issues", "dependencies": { "@mdx-js/mdx": "^3.1.0", diff --git a/packages/qwik/CHANGELOG.md b/packages/qwik/CHANGELOG.md index d5ca1da21be..4f54996bf81 100644 --- a/packages/qwik/CHANGELOG.md +++ b/packages/qwik/CHANGELOG.md @@ -1,5 +1,23 @@ # @builder.io/qwik +## 1.16.0 + +### Minor Changes + +- ✨ bump Vite to v7 (by [@gioboa](https://github.com/gioboa) in [#7762](https://github.com/QwikDev/qwik/pull/7762)) + +### Patch Changes + +- 🐞🩹 Keeping the service worker components now properly unregisters them. (by [@maiieul](https://github.com/maiieul) in [#7781](https://github.com/QwikDev/qwik/pull/7781)) + +- 🛠 remove a grace period before unregistering events from qwikloader (by [@Varixo](https://github.com/Varixo) in [#7818](https://github.com/QwikDev/qwik/pull/7818)) + +- 🐞🩹 Keeping the service worker components now also removes their associated Cache storage. (by [@maiieul](https://github.com/maiieul) in [#7782](https://github.com/QwikDev/qwik/pull/7782)) + +- 🐞🩹 fix up open in editor feature (by [@LazyClicks](https://github.com/LazyClicks) in [#7785](https://github.com/QwikDev/qwik/pull/7785)) + +- 🐞🩹 SSR was missing some places with nonce for CSP. Now CSP should work even when strict-dynamic (by [@wmertens](https://github.com/wmertens) in [#7776](https://github.com/QwikDev/qwik/pull/7776)) + ## 1.15.0 ### Minor Changes diff --git a/packages/qwik/package.json b/packages/qwik/package.json index f344386f0a0..bac78adeab3 100644 --- a/packages/qwik/package.json +++ b/packages/qwik/package.json @@ -1,7 +1,7 @@ { "name": "@builder.io/qwik", "description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.", - "version": "1.15.0", + "version": "1.16.0", "annotation": "This package.json is for internal use in the monorepo, the build actually makes a new package.json for the published package via scripts/package-json.ts", "bin": { "qwik": "./qwik-cli.cjs"