Skip to content

The latest news releases from the Qwik team

March 18th, 2025

@builder.io/qwik@1.12.1

Patch Changes

  • 📃 update turso integration keywords, add contributor (by @A2-NieR in #7215)

  • ✨ tailwindcss v4 integration (by @sreeisalso in #7274)

  • 🐞🩹 remove usage of computedStyleMap (by @Varixo in #7252)

  • 📃 remove shop (by @gioboa in #7221)

  • 🐞🩹 error in the middleware occurs 404 (by @JerryWu1234 in #6951)

  • 🐞🩹 changed turso createClient import to work with file urls, updated docs note with info & link to the corresponding section in the turso docs (by @A2-NieR in #7211)

  • 📃 add Qwik blog + articles (by @gioboa in #7214)

  • 🐞🩹 input's value is string when passing number (by @JerryWu1234 in #7249)

Contributors:

  • A2
  • sreeisalso
  • Varixo
  • gioboa
  • JerryWu1234

March 18th, 2025

@builder.io/qwik-city@1.12.1

Patch Changes

  • 🐞🩹 MDX content now accepts a prop of type components that lets you use your own custom components (by @double-thinker in #7277)

    To add custom components to your MDX content, you can now do this:

    // routes/example/index.tsx
    import Content from './markdown.mdx';
    import MyComponent from '../../components/my-component/my-component';
    import { component$ } from '@builder.io/qwik';
    
    export default component$(() => <Content components={{ MyComponent }} />);
    

    You can also use props in JS expressions. See https://mdxjs.com/docs/using-mdx/#props

  • 🐞🩹 mdx not rendering (by @shairez in #7168)

  • 📃 added a "Qwik for Mobile" guide to build iOS and Android Qwik apps (by @srapport in #7205)

  • 🐞🩹 some qrls weren't fetched correctly on page load (by @shairez in #7286)

Contributors:

  • double
  • builder
  • shairez
  • srapport
1
...
17
18
19
...
30