From a3ae95136c834bc61cefe592be3957eb0a1e0259 Mon Sep 17 00:00:00 2001 From: Shai Reznik Date: Tue, 17 Sep 2024 13:49:02 +0300 Subject: [PATCH] improved the changesets messages (#6884) Co-authored-by: Wout Mertens Co-authored-by: Giorgio Boa <35845425+gioboa@users.noreply.github.com> --- .changeset/curvy-frogs-return.md | 2 +- .changeset/forty-humans-jump.md | 2 +- .changeset/moody-squids-listen.md | 2 +- .changeset/pink-ravens-exist.md | 2 +- .changeset/popular-dragons-greet.md | 2 +- .changeset/shaggy-sloths-talk.md | 2 +- .changeset/stupid-chicken-itch.md | 23 ++++++++++++++++++++++- .changeset/twenty-brooms-speak.md | 2 +- 8 files changed, 29 insertions(+), 8 deletions(-) diff --git a/.changeset/curvy-frogs-return.md b/.changeset/curvy-frogs-return.md index 295c3ba6944..6121749377e 100644 --- a/.changeset/curvy-frogs-return.md +++ b/.changeset/curvy-frogs-return.md @@ -2,4 +2,4 @@ '@builder.io/qwik': patch --- -Introducing the `experimental[]` option to the Vite plugin. This allows you to opt in to features that are not guaranteed to have a stable API. +FEAT: Introducing the `experimental[]` option to the Vite plugin. This allows you to opt in to features that are not guaranteed to have a stable API. diff --git a/.changeset/forty-humans-jump.md b/.changeset/forty-humans-jump.md index 5bd5302fe9e..cc402360f94 100644 --- a/.changeset/forty-humans-jump.md +++ b/.changeset/forty-humans-jump.md @@ -2,4 +2,4 @@ '@builder.io/qwik': patch --- -gracefully handle image dimensions service errors +FIX: gracefully handle image dimensions service errors diff --git a/.changeset/moody-squids-listen.md b/.changeset/moody-squids-listen.md index 72ae15bf767..77bffa2c1e1 100644 --- a/.changeset/moody-squids-listen.md +++ b/.changeset/moody-squids-listen.md @@ -2,6 +2,6 @@ '@builder.io/qwik': patch --- -✨ Lib builds no longer perform qwik transformation. +FEAT: Lib builds no longer perform qwik transformation. This prevents using unstable internal APIs, and doesn't make a difference for the end user. Library authors are strongly urged to push a new library patch version built with this qwik version, and to add `| ^2.0.0` to their accepted qwik version range. diff --git a/.changeset/pink-ravens-exist.md b/.changeset/pink-ravens-exist.md index 638cb2f7f7d..4fa76fad5bd 100644 --- a/.changeset/pink-ravens-exist.md +++ b/.changeset/pink-ravens-exist.md @@ -2,4 +2,4 @@ '@builder.io/qwik-city': patch --- -added .ico to be detected by isStaticFile +FIX: added .ico to be detected by isStaticFile diff --git a/.changeset/popular-dragons-greet.md b/.changeset/popular-dragons-greet.md index 9803440af60..8a7ec739b47 100644 --- a/.changeset/popular-dragons-greet.md +++ b/.changeset/popular-dragons-greet.md @@ -2,4 +2,4 @@ '@builder.io/qwik': patch --- -fix: SSG Link componet strips search parameters +fix: SSG Link component strips search parameters diff --git a/.changeset/shaggy-sloths-talk.md b/.changeset/shaggy-sloths-talk.md index 9c49f0c4523..df6b77a349e 100644 --- a/.changeset/shaggy-sloths-talk.md +++ b/.changeset/shaggy-sloths-talk.md @@ -2,4 +2,4 @@ '@builder.io/qwik': patch --- -The PrefetchServiceWorker now has a more efficient graph and only prefetches direct imports and, at a lower priority, task QRL segments. This greatly improves its load performance. +FIX: The PrefetchServiceWorker now has a more efficient graph and only prefetches direct imports and, at a lower priority, task QRL segments. This greatly improves its load performance. diff --git a/.changeset/stupid-chicken-itch.md b/.changeset/stupid-chicken-itch.md index 8c90a6857d2..95aa44fce63 100644 --- a/.changeset/stupid-chicken-itch.md +++ b/.changeset/stupid-chicken-itch.md @@ -2,4 +2,25 @@ '@builder.io/qwik-city': minor --- -feat: add `valibot$` validator and fix types of `zod$` implementation. To use Valibot, you need to pass `experimental: ['valibot']` as an option to the `qwikVite` plugin. +FEAT: **(EXPERIMENTAL)** `valibot$` validator and a fix for `zod$` types. + +To use it, you need to pass `experimental: ['valibot']` as an option to the `qwikVite` plugin as such: + +```ts +// vite.config.ts + +export default defineConfig(({ command, mode }): UserConfig => { + return { + plugins: [ + // ... other plugins like qwikCity() etc + qwikVite({ + experimental: ['valibot'] + // ... other options + }), + + ], + // ... rest of the config + }; +} + +``` diff --git a/.changeset/twenty-brooms-speak.md b/.changeset/twenty-brooms-speak.md index 84aed63405f..61aed005680 100644 --- a/.changeset/twenty-brooms-speak.md +++ b/.changeset/twenty-brooms-speak.md @@ -2,4 +2,4 @@ 'create-qwik': patch --- -refactor: tailwind starter dependencies upgraded to latest +FEAT: tailwind starter dependencies upgraded to latest