Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: print CLI installed scripts #3929

Merged
merged 2 commits into from
Apr 26, 2023
Merged

feat: print CLI installed scripts #3929

merged 2 commits into from
Apr 26, 2023

Conversation

manucorporat
Copy link
Contributor

No description provided.

@stackblitz
Copy link

stackblitz bot commented Apr 26, 2023

Review PR in StackBlitz Codeflow Run & review this pull request in StackBlitz Codeflow.

@cloudflare-pages
Copy link

Deploying with  Cloudflare Pages  Cloudflare Pages

Latest commit: 9a368fc
Status: ✅  Deploy successful!
Preview URL: https://7c72671c.qwik-docs.pages.dev
Branch Preview URL: https://prisma-types.qwik-docs.pages.dev

View logs

@manucorporat manucorporat merged commit cf160d7 into main Apr 26, 2023
@manucorporat manucorporat deleted the prisma-types branch April 26, 2023 08:53
kodiakhq bot pushed a commit to ascorbic/unpic-img that referenced this pull request Jun 4, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@builder.io/qwik](https://qwik.builder.io/) ([source](https://togithub.com/BuilderIO/qwik)) | [`0.103.0` -> `0.107.0`](https://renovatebot.com/diffs/npm/@builder.io%2fqwik/0.103.0/0.107.0) | [![age](https://badges.renovateapi.com/packages/npm/@builder.io%2fqwik/0.107.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@builder.io%2fqwik/0.107.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@builder.io%2fqwik/0.107.0/compatibility-slim/0.103.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@builder.io%2fqwik/0.107.0/confidence-slim/0.103.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>BuilderIO/qwik</summary>

### [`v0.107.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.107.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.106.0...v0.107.0)

#### What's Changed

-   docs: fixes links by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3997
-   fix: vercel deploy by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3999
-   docs: fix overflowing content on home page by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3998
-   fix: azure fixes by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#4001
-   docs: Use an emoji for courses, to be consistent with other sections by [@&#8203;steve8708](https://togithub.com/steve8708) in [QwikDev/qwik#4000
-   docs: added missing parts from past ecosystem page by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3983
-   docs:  could I add course spanish edition by [@&#8203;leifermendez](https://togithub.com/leifermendez) in [QwikDev/qwik#4002
-   fix(docs/code-sandbox): only scroll the pre to prevent title scroll by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3912
-   Tutorial wording fix by [@&#8203;iancharlesdouglas](https://togithub.com/iancharlesdouglas) in [QwikDev/qwik#3996
-   chore: 0.107.0 by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#4003

#### New Contributors

-   [@&#8203;iancharlesdouglas](https://togithub.com/iancharlesdouglas) made their first contribution in [QwikDev/qwik#3996

**Full Changelog**: QwikDev/qwik@v0.106.0...v0.107.0

### [`v0.106.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.106.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.105.0...v0.106.0)

#### 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.

```diff
import { createQwikCity } from '@&#8203;builder.io/qwik-city/middleware/cloudflare-pages';
import qwikCityPlan from '@&#8203;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 [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3957
-   feat: deno starter and documentation by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3959
-   docs: allow rendering any Builder content with both SDK or REST by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3961
-   Add Modular Forms integration guide to docs by [@&#8203;fabian-hiller](https://togithub.com/fabian-hiller) in [QwikDev/qwik#3944
-   docs: add QwikSchool.com by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3967
-   chore: commented pr template intro by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3970
-   fix(cloudflare-pages adapter): fix wrong request type and move waitUntil to ctx object by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3968
-   chore(adapters entry file comments): slightly update/fix the adapters entry file initial comments by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3974
-   fix: treeshakable build by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3973
-   docs: added nx and qwik-nx integration by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3969
-   docs: add deno in deployments section by [@&#8203;gustavocadev](https://togithub.com/gustavocadev) in [QwikDev/qwik#3965
-   fix: cypress integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3976
-   fix: pass this in server$ by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3978
-   docs: added space between sentences. by [@&#8203;ahevery](https://togithub.com/ahevery) in [QwikDev/qwik#3980
-   feat(cloudflare-pages-adapter): refactor the cloudflare pages adapter to use \_worker.js by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3975
-   docs: fix docs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3982
-   fix: routeAction types by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3981
-   feat: view transition api by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3991
-   Docs: remove non-inclusive language. by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3985
-   fix: basepath output generation by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3994
-   chore: Release 0.106.0 by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3995
-   docs: Supabase inclusive language + add link to client example by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3984
-   Docs: The onSubmitCompleted$ handler by [@&#8203;thejackshelton](https://togithub.com/thejackshelton) in [QwikDev/qwik#3860

#### New Contributors

-   [@&#8203;gustavocadev](https://togithub.com/gustavocadev) made their first contribution in [QwikDev/qwik#3965
-   [@&#8203;ahevery](https://togithub.com/ahevery) made their first contribution in [QwikDev/qwik#3980

**Full Changelog**: QwikDev/qwik@v0.105.0...v0.106.0

### [`v0.105.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.105.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.104.0...v0.105.0)

#### Features

-   feat: deno adapter/middleware integration by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3936
-   feat: add cypress starter and docs by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3946

#### Fixes

-   fix: dynamic rendering on window listeners by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3955
-   Fix Vite dev server by [@&#8203;bjonesy](https://togithub.com/bjonesy) in [QwikDev/qwik#3951
-   refactor: use `Readonly` utility type for `ReadonlySignal` type by [@&#8203;ahnpnl](https://togithub.com/ahnpnl) in [QwikDev/qwik#3949
-   perf: prod build by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3950
-   perf: bundling issues with qwik city by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3953

#### Documentation

-   docs: prisma wording suggestions by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3932
-   docs: add library docs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3935
-   docs: tiny adjustments by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3940
-   docs: fix edit this page by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3942

**Full Changelog**: QwikDev/qwik@v0.104.0...v0.105.0

### [`v0.104.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.104.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.103.0...v0.104.0)

#### Features

-   feat: allow undefined useOn QRLs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3852
-   feat: add message about performance loss in development by [@&#8203;phcoliveira](https://togithub.com/phcoliveira) in [QwikDev/qwik#3886
-   starter: redesign starter by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3827
-   feat: storybook integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3917
-   feat: print CLI installed scripts by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3929
-   feat: expose whole cloudflare context by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3931
-   release: 0.104.0 by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3920

#### Fixes

-   fix: add 'aspect-ratio' to qwik-dom CSS props by [@&#8203;ascorbic](https://togithub.com/ascorbic) in [QwikDev/qwik#3846
-   fix: treshaking signals crash by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3847
-   fix: build-time conditionals by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3848
-   fix: always generate 404.html by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3845
-   fix: build variables by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3853
-   fix: qwik-city dev mode by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3856
-   fix: relative protocol urls by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3862
-   fix: recursive tracking loaders by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3872
-   fix: Click-To-Source HTML by [@&#8203;samijaber](https://togithub.com/samijaber) in [QwikDev/qwik#3879
-   fix(qwik): update object based vite config properly by [@&#8203;dmitry-stepanenko](https://togithub.com/dmitry-stepanenko) in [QwikDev/qwik#3892
-   fix(qwik-auth): QwikAuthConfig type by [@&#8203;PatrickJS](https://togithub.com/PatrickJS) in [QwikDev/qwik#3888
-   fix(eslint): allow use inside objects by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3902
-   fix(docs/auth): revert env variable changes by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3905
-   fix: display performance loss message after dev server is ready by [@&#8203;phcoliveira](https://togithub.com/phcoliveira) in [QwikDev/qwik#3904
-   fix: CLI allow current directory as app target by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3910
-   fix: hover state on playground buttons by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3911
-   fix: docs build by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3913
-   fix: fix starters storybook by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3922
-   fix: simplify starter by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3923
-   fix: prisma integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3930

#### Documation

-   docs: fix REPL by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3851
-   docs: correct typos and update import statements by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3854
-   docs: correct typos for route loader by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3855
-   docs: add create qwik cli ci test badge by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3857
-   docs: custom 404 during development update by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3859
-   docs: show contributors on docs pages by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3865
-   docs: update contributors per page list by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3866
-   docs: typo fix by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3864
-   docs: correct typos and ensure consistency by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3868
-   docs: fix 404 on lazy example by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3873
-   docs: fix and update broken code examples by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3874
-   docs: update contributors list by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3875
-   docs: Add "Props Use Example" to react vs qwik page by [@&#8203;rjsdnql123](https://togithub.com/rjsdnql123) in [QwikDev/qwik#3878
-   docs: correct typos for env variables by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3877
-   docs: Update PR template to set community expectations by [@&#8203;n8sabes](https://togithub.com/n8sabes) in [QwikDev/qwik#3880
-   docs: add missing import for Slot by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3900
-   docs: replace store with count by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3896
-   docs: replace store with count by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3898
-   docs: update PR template for types / typos by [@&#8203;PatrickJS](https://togithub.com/PatrickJS) in [QwikDev/qwik#3889
-   docs: refine listener code problem explanation for clarity by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3897
-   docs: add qwik amsterdam community link by [@&#8203;salamaashoush](https://togithub.com/salamaashoush) in [QwikDev/qwik#3890
-   docs: added authjs by [@&#8203;the-r3aper7](https://togithub.com/the-r3aper7) in [QwikDev/qwik#3712
-   docs: adjust position of "on this page" again by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3907
-   docs: sitemap by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3908
-   docs: add qwik-image inside the Image Optimisation section by [@&#8203;gioboa](https://togithub.com/gioboa) in [QwikDev/qwik#3899
-   docs: add supabase + icons by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3906
-   docs: fix typo by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3915
-   docs: added more detailed documentation for qwik-auth by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3909
-   docs: correct typos and ensure consistency by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3858
-   docs: fix up prisma typo and grammar by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3919
-   docs: fix typo by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3918
-   docs: adde courses section by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3921
-   docs: Update index.mdx by [@&#8203;mjschwanitz](https://togithub.com/mjschwanitz) in [QwikDev/qwik#3928
-   chore: update deps by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3924
-   chore: cancel previous CI runs in PRs by [@&#8203;dmitry-stepanenko](https://togithub.com/dmitry-stepanenko) in [QwikDev/qwik#3893

#### New Contributors

-   [@&#8203;rjsdnql123](https://togithub.com/rjsdnql123) made their first contribution in [QwikDev/qwik#3878
-   [@&#8203;phcoliveira](https://togithub.com/phcoliveira) made their first contribution in [QwikDev/qwik#3886
-   [@&#8203;salamaashoush](https://togithub.com/salamaashoush) made their first contribution in [QwikDev/qwik#3890
-   [@&#8203;mjschwanitz](https://togithub.com/mjschwanitz) made their first contribution in [QwikDev/qwik#3928

**Full Changelog**: QwikDev/qwik@v0.103.0...v0.104.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/ascorbic/unpic-img).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
kodiakhq bot pushed a commit to ascorbic/unpic-img that referenced this pull request Jun 20, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-plugin-qwik](https://togithub.com/BuilderIO/qwik) | [`^0.103.0` -> `^0.107.0`](https://renovatebot.com/diffs/npm/eslint-plugin-qwik/0.103.0/0.107.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-qwik/0.107.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-qwik/0.107.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-qwik/0.107.0/compatibility-slim/0.103.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-qwik/0.107.0/confidence-slim/0.103.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>BuilderIO/qwik</summary>

### [`v0.107.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.107.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.106.0...v0.107.0)

##### What's Changed

-   docs: fixes links by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3997
-   fix: vercel deploy by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3999
-   docs: fix overflowing content on home page by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3998
-   fix: azure fixes by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#4001
-   docs: Use an emoji for courses, to be consistent with other sections by [@&#8203;steve8708](https://togithub.com/steve8708) in [QwikDev/qwik#4000
-   docs: added missing parts from past ecosystem page by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3983
-   docs:  could I add course spanish edition by [@&#8203;leifermendez](https://togithub.com/leifermendez) in [QwikDev/qwik#4002
-   fix(docs/code-sandbox): only scroll the pre to prevent title scroll by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3912
-   Tutorial wording fix by [@&#8203;iancharlesdouglas](https://togithub.com/iancharlesdouglas) in [QwikDev/qwik#3996
-   chore: 0.107.0 by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#4003

##### New Contributors

-   [@&#8203;iancharlesdouglas](https://togithub.com/iancharlesdouglas) made their first contribution in [QwikDev/qwik#3996

**Full Changelog**: QwikDev/qwik@v0.106.0...v0.107.0

### [`v0.106.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.106.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.105.0...v0.106.0)

##### 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.

```diff
import { createQwikCity } from '@&#8203;builder.io/qwik-city/middleware/cloudflare-pages';
import qwikCityPlan from '@&#8203;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 [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3957
-   feat: deno starter and documentation by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3959
-   docs: allow rendering any Builder content with both SDK or REST by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3961
-   Add Modular Forms integration guide to docs by [@&#8203;fabian-hiller](https://togithub.com/fabian-hiller) in [QwikDev/qwik#3944
-   docs: add QwikSchool.com by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3967
-   chore: commented pr template intro by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3970
-   fix(cloudflare-pages adapter): fix wrong request type and move waitUntil to ctx object by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3968
-   chore(adapters entry file comments): slightly update/fix the adapters entry file initial comments by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3974
-   fix: treeshakable build by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3973
-   docs: added nx and qwik-nx integration by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3969
-   docs: add deno in deployments section by [@&#8203;gustavocadev](https://togithub.com/gustavocadev) in [QwikDev/qwik#3965
-   fix: cypress integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3976
-   fix: pass this in server$ by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3978
-   docs: added space between sentences. by [@&#8203;ahevery](https://togithub.com/ahevery) in [QwikDev/qwik#3980
-   feat(cloudflare-pages-adapter): refactor the cloudflare pages adapter to use \_worker.js by [@&#8203;dario-piotrowicz](https://togithub.com/dario-piotrowicz) in [QwikDev/qwik#3975
-   docs: fix docs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3982
-   fix: routeAction types by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3981
-   feat: view transition api by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3991
-   Docs: remove non-inclusive language. by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3985
-   fix: basepath output generation by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3994
-   chore: Release 0.106.0 by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3995
-   docs: Supabase inclusive language + add link to client example by [@&#8203;hamatoyogi](https://togithub.com/hamatoyogi) in [QwikDev/qwik#3984
-   Docs: The onSubmitCompleted$ handler by [@&#8203;thejackshelton](https://togithub.com/thejackshelton) in [QwikDev/qwik#3860

##### New Contributors

-   [@&#8203;gustavocadev](https://togithub.com/gustavocadev) made their first contribution in [QwikDev/qwik#3965
-   [@&#8203;ahevery](https://togithub.com/ahevery) made their first contribution in [QwikDev/qwik#3980

**Full Changelog**: QwikDev/qwik@v0.105.0...v0.106.0

### [`v0.105.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.105.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.104.0...v0.105.0)

##### Features

-   feat: deno adapter/middleware integration by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3936
-   feat: add cypress starter and docs by [@&#8203;shairez](https://togithub.com/shairez) in [QwikDev/qwik#3946

##### Fixes

-   fix: dynamic rendering on window listeners by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3955
-   Fix Vite dev server by [@&#8203;bjonesy](https://togithub.com/bjonesy) in [QwikDev/qwik#3951
-   refactor: use `Readonly` utility type for `ReadonlySignal` type by [@&#8203;ahnpnl](https://togithub.com/ahnpnl) in [QwikDev/qwik#3949
-   perf: prod build by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3950
-   perf: bundling issues with qwik city by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3953

##### Documentation

-   docs: prisma wording suggestions by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3932
-   docs: add library docs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3935
-   docs: tiny adjustments by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3940
-   docs: fix edit this page by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3942

**Full Changelog**: QwikDev/qwik@v0.104.0...v0.105.0

### [`v0.104.0`](https://togithub.com/BuilderIO/qwik/releases/tag/v0.104.0)

[Compare Source](https://togithub.com/BuilderIO/qwik/compare/v0.103.0...v0.104.0)

##### Features

-   feat: allow undefined useOn QRLs by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3852
-   feat: add message about performance loss in development by [@&#8203;phcoliveira](https://togithub.com/phcoliveira) in [QwikDev/qwik#3886
-   starter: redesign starter by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3827
-   feat: storybook integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3917
-   feat: print CLI installed scripts by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3929
-   feat: expose whole cloudflare context by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3931
-   release: 0.104.0 by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3920

##### Fixes

-   fix: add 'aspect-ratio' to qwik-dom CSS props by [@&#8203;ascorbic](https://togithub.com/ascorbic) in [QwikDev/qwik#3846
-   fix: treshaking signals crash by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3847
-   fix: build-time conditionals by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3848
-   fix: always generate 404.html by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3845
-   fix: build variables by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3853
-   fix: qwik-city dev mode by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3856
-   fix: relative protocol urls by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3862
-   fix: recursive tracking loaders by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3872
-   fix: Click-To-Source HTML by [@&#8203;samijaber](https://togithub.com/samijaber) in [QwikDev/qwik#3879
-   fix(qwik): update object based vite config properly by [@&#8203;dmitry-stepanenko](https://togithub.com/dmitry-stepanenko) in [QwikDev/qwik#3892
-   fix(qwik-auth): QwikAuthConfig type by [@&#8203;PatrickJS](https://togithub.com/PatrickJS) in [QwikDev/qwik#3888
-   fix(eslint): allow use inside objects by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3902
-   fix(docs/auth): revert env variable changes by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3905
-   fix: display performance loss message after dev server is ready by [@&#8203;phcoliveira](https://togithub.com/phcoliveira) in [QwikDev/qwik#3904
-   fix: CLI allow current directory as app target by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3910
-   fix: hover state on playground buttons by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3911
-   fix: docs build by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3913
-   fix: fix starters storybook by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3922
-   fix: simplify starter by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3923
-   fix: prisma integration by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3930

##### Documation

-   docs: fix REPL by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3851
-   docs: correct typos and update import statements by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3854
-   docs: correct typos for route loader by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3855
-   docs: add create qwik cli ci test badge by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3857
-   docs: custom 404 during development update by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3859
-   docs: show contributors on docs pages by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3865
-   docs: update contributors per page list by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3866
-   docs: typo fix by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3864
-   docs: correct typos and ensure consistency by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3868
-   docs: fix 404 on lazy example by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3873
-   docs: fix and update broken code examples by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3874
-   docs: update contributors list by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3875
-   docs: Add "Props Use Example" to react vs qwik page by [@&#8203;rjsdnql123](https://togithub.com/rjsdnql123) in [QwikDev/qwik#3878
-   docs: correct typos for env variables by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3877
-   docs: Update PR template to set community expectations by [@&#8203;n8sabes](https://togithub.com/n8sabes) in [QwikDev/qwik#3880
-   docs: add missing import for Slot by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3900
-   docs: replace store with count by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3896
-   docs: replace store with count by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3898
-   docs: update PR template for types / typos by [@&#8203;PatrickJS](https://togithub.com/PatrickJS) in [QwikDev/qwik#3889
-   docs: refine listener code problem explanation for clarity by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3897
-   docs: add qwik amsterdam community link by [@&#8203;salamaashoush](https://togithub.com/salamaashoush) in [QwikDev/qwik#3890
-   docs: added authjs by [@&#8203;the-r3aper7](https://togithub.com/the-r3aper7) in [QwikDev/qwik#3712
-   docs: adjust position of "on this page" again by [@&#8203;zanettin](https://togithub.com/zanettin) in [QwikDev/qwik#3907
-   docs: sitemap by [@&#8203;adamdbradley](https://togithub.com/adamdbradley) in [QwikDev/qwik#3908
-   docs: add qwik-image inside the Image Optimisation section by [@&#8203;gioboa](https://togithub.com/gioboa) in [QwikDev/qwik#3899
-   docs: add supabase + icons by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3906
-   docs: fix typo by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3915
-   docs: added more detailed documentation for qwik-auth by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3909
-   docs: correct typos and ensure consistency by [@&#8203;wtlin1228](https://togithub.com/wtlin1228) in [QwikDev/qwik#3858
-   docs: fix up prisma typo and grammar by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3919
-   docs: fix typo by [@&#8203;ulic75](https://togithub.com/ulic75) in [QwikDev/qwik#3918
-   docs: adde courses section by [@&#8203;mhevery](https://togithub.com/mhevery) in [QwikDev/qwik#3921
-   docs: Update index.mdx by [@&#8203;mjschwanitz](https://togithub.com/mjschwanitz) in [QwikDev/qwik#3928
-   chore: update deps by [@&#8203;manucorporat](https://togithub.com/manucorporat) in [QwikDev/qwik#3924
-   chore: cancel previous CI runs in PRs by [@&#8203;dmitry-stepanenko](https://togithub.com/dmitry-stepanenko) in [QwikDev/qwik#3893

##### New Contributors

-   [@&#8203;rjsdnql123](https://togithub.com/rjsdnql123) made their first contribution in [QwikDev/qwik#3878
-   [@&#8203;phcoliveira](https://togithub.com/phcoliveira) made their first contribution in [QwikDev/qwik#3886
-   [@&#8203;salamaashoush](https://togithub.com/salamaashoush) made their first contribution in [QwikDev/qwik#3890
-   [@&#8203;mjschwanitz](https://togithub.com/mjschwanitz) made their first contribution in [QwikDev/qwik#3928

**Full Changelog**: QwikDev/qwik@v0.103.0...v0.104.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 9pm on sunday" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/ascorbic/unpic-img).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMzEuMCIsInVwZGF0ZWRJblZlciI6IjM1LjEzMS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant