Skip to content

Commit

Permalink
improved the changesets messages (#6884)
Browse files Browse the repository at this point in the history
Co-authored-by: Wout Mertens <Wout.Mertens@gmail.com>
Co-authored-by: Giorgio Boa <35845425+gioboa@users.noreply.github.com>
  • Loading branch information
3 people committed Sep 17, 2024
1 parent 3125156 commit a3ae951
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .changeset/curvy-frogs-return.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion .changeset/forty-humans-jump.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik': patch
---

gracefully handle image dimensions service errors
FIX: gracefully handle image dimensions service errors
2 changes: 1 addition & 1 deletion .changeset/moody-squids-listen.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
2 changes: 1 addition & 1 deletion .changeset/pink-ravens-exist.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik-city': patch
---

added .ico to be detected by isStaticFile
FIX: added .ico to be detected by isStaticFile
2 changes: 1 addition & 1 deletion .changeset/popular-dragons-greet.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'@builder.io/qwik': patch
---

fix: SSG Link componet strips search parameters
fix: SSG Link component strips search parameters
2 changes: 1 addition & 1 deletion .changeset/shaggy-sloths-talk.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
23 changes: 22 additions & 1 deletion .changeset/stupid-chicken-itch.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
};
}

```
2 changes: 1 addition & 1 deletion .changeset/twenty-brooms-speak.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
'create-qwik': patch
---

refactor: tailwind starter dependencies upgraded to latest
FEAT: tailwind starter dependencies upgraded to latest

0 comments on commit a3ae951

Please sign in to comment.