Skip to content

The latest news releases from the Qwik team

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

January 23rd, 2025

@qwik.dev/core@2.0.0-alpha.6

Patch Changes

  • 🐞🩹 component props as var props (by @Varixo in #7265)

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

  • ✨ log a warning instead of throwing an error for server host mismatch error (by @Varixo in #7236)

  • 🐞🩹 retry vnode diffing on promise throw (by @Varixo in #7259)

  • 🐞🩹 convert destructured array's props to signal (by @Varixo in #7217)

Contributors:

  • Varixo
  • JerryWu1234
1
...
8
9
10
...
30