Qwik Versions Save

Instant-loading web apps, without effort

v1.5.3

2 weeks ago

What's Changed

New Contributors

Full Changelog: https://github.com/QwikDev/qwik/compare/v1.5.2...v1.5.3

v1.5.2

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.5.1...v1.5.2

v1.5.1

2 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.5.0...v1.5.1

v1.5.0

2 months ago

Breaking changes

It turns out that this release requires a change to vite.config.ts for the production builds. The ssr configuration needs to have "node:async_hooks" as external:

        ssr: {
          external: ['node:async_hooks'],
        },

New features

  • Support for Uint8Array serialization

Notable bugfixes

  • Server-side function calls now use Async LocalStorage to ensure retaining the request context during async handling

PRs

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.5...v1.5.0

v1.4.5

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.4...v1.4.5

v1.4.4

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.3...v1.4.4

v1.4.3

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.2...v1.4.3

v1.4.2

3 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.1...v1.4.2

v1.4.1

3 months ago

Overview

  • Try harder to prevent dirty tasks on SSR
  • AWS middleware in qwik-city
  • File filter option to make Qwik work better with Astro
  • qwik-auth can now handle multiple cookies
  • Node adapters in qwik-city now read .env files
  • Bugfixes in various service workers, starter CSS build, etc
  • Dependency updates

Thanks to all contributors!

Commits

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.4.0...v1.4.1

v1.4.0

4 months ago

What's Changed

  • Types have changed a bit, now JSX components output JSXOutput instead of JSXNode, which captures the existing possibility to return strings, booleans, arrays etc.
  • The Link component now automatically prefetches the JS needed
  • When SPA routing fails, it will now use MPA routing as a fallback
  • Various bugfixes

PRs merged

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v1.3.5...v1.4.0