May 1st, 2023
Breaking Changes
Cloudflare pages deployment
In your entry.cloudflare-pages.ts
, export fetch
instead of onRequest
. This is required in order to use the advanced mode of Cloudflare! it will allow future perf improvements and new features.
import { createQwikCity } from '@builder.io/qwik-city/middleware/cloudflare-pages';
import qwikCityPlan from '@qwik-city-plan';
import render from './entry.ssr';
+ const fetch = createQwikCity({ render, qwikCityPlan });
+ export { fetch };
- const onRequest = createQwikCity({ render, qwikCityPlan });
- export { onRequest };
What's Changed
- fix: remove peer dependencoes by @manucorporat in https://github.com/BuilderIO/qwik/pull/3957
- feat: deno starter and documentation by @adamdbradley in https://github.com/BuilderIO/qwik/pull/3959
- docs: allow rendering any Builder content with both SDK or REST by @mhevery in https://github.com/BuilderIO/qwik/pull/3961
- Add Modular Forms integration guide to docs by @fabian-hiller in https://github.com/BuilderIO/qwik/pull/3944
- docs: add QwikSchool.com by @mhevery in https://github.com/BuilderIO/qwik/pull/3967
- chore: commented pr template intro by @shairez in https://github.com/BuilderIO/qwik/pull/3970
- fix(cloudflare-pages adapter): fix wrong request type and move waitUntil to ctx object by @dario-piotrowicz in https://github.com/BuilderIO/qwik/pull/3968
- chore(adapters entry file comments): slightly update/fix the adapters entry file initial comments by @dario-piotrowicz in https://github.com/BuilderIO/qwik/pull/3974
- fix: treeshakable build by @manucorporat in https://github.com/BuilderIO/qwik/pull/3973
- docs: added nx and qwik-nx integration by @shairez in https://github.com/BuilderIO/qwik/pull/3969
- docs: add deno in deployments section by @gustavocadev in https://github.com/BuilderIO/qwik/pull/3965
- fix: cypress integration by @manucorporat in https://github.com/BuilderIO/qwik/pull/3976
- fix: pass this in server$ by @manucorporat in https://github.com/BuilderIO/qwik/pull/3978
- docs: added space between sentences. by @ahevery in https://github.com/BuilderIO/qwik/pull/3980
- feat(cloudflare-pages-adapter): refactor the cloudflare pages adapter to use _worker.js by @dario-piotrowicz in https://github.com/BuilderIO/qwik/pull/3975
- docs: fix docs by @manucorporat in https://github.com/BuilderIO/qwik/pull/3982
- fix: routeAction types by @manucorporat in https://github.com/BuilderIO/qwik/pull/3981
- feat: view transition api by @manucorporat in https://github.com/BuilderIO/qwik/pull/3991
- Docs: remove non-inclusive language. by @hamatoyogi in https://github.com/BuilderIO/qwik/pull/3985
- fix: basepath output generation by @manucorporat in https://github.com/BuilderIO/qwik/pull/3994
- chore: Release 0.106.0 by @manucorporat in https://github.com/BuilderIO/qwik/pull/3995
- docs: Supabase inclusive language + add link to client example by @hamatoyogi in https://github.com/BuilderIO/qwik/pull/3984
- Docs: The onSubmitCompleted$ handler by @thejackshelton in https://github.com/BuilderIO/qwik/pull/3860
New Contributors
- @gustavocadev made their first contribution in https://github.com/BuilderIO/qwik/pull/3965
- @ahevery made their first contribution in https://github.com/BuilderIO/qwik/pull/3980
Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.105.0...v0.106.0