-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore(deps): update dependency @builder.io/qwik-city to v1.12.1 #6
Open
renovate-bot
wants to merge
1
commit into
khulnasoft-lab:master
Choose a base branch
from
renovate-bot:renovate/builder.io-qwik-city-1.x-lockfile
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
chore(deps): update dependency @builder.io/qwik-city to v1.12.1 #6
renovate-bot
wants to merge
1
commit into
khulnasoft-lab:master
from
renovate-bot:renovate/builder.io-qwik-city-1.x-lockfile
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f17a05c
to
4d5ffeb
Compare
4d5ffeb
to
7159577
Compare
7159577
to
260a351
Compare
670d6fe
to
fd214de
Compare
fd214de
to
0781f5f
Compare
0781f5f
to
cdad74f
Compare
cdad74f
to
49a526d
Compare
49a526d
to
0be706c
Compare
0be706c
to
d1ffb2e
Compare
d1ffb2e
to
b2e3b5d
Compare
b2e3b5d
to
eb91a90
Compare
eb91a90
to
0c9617e
Compare
0c9617e
to
ef6d60b
Compare
ef6d60b
to
928cbb3
Compare
928cbb3
to
5eff9d0
Compare
5eff9d0
to
e89d382
Compare
e89d382
to
445d350
Compare
445d350
to
b11847c
Compare
a381cf9
to
15fb406
Compare
15fb406
to
aab5698
Compare
aab5698
to
95da1c3
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
1.4.3
->1.12.1
Release Notes
QwikDev/qwik (@builder.io/qwik-city)
v1.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:
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)
v1.12.0
Compare Source
Patch Changes
🐞🩹 the previous URL now is undefined on first render. (by @damianpumar in #7082)
🐞🩹 server$ functions now correctly throw errors for > 500 error codes (by @DustinJSilk in #7078)
v1.11.0
Compare Source
v1.10.0
Compare Source
Patch Changes
🐞🩹 MDX content no longer ignores Layout components. See the MDX docs for more information. (by @danielvaijk in #6845)
🐞🩹 SSG errors now show the path that failed (by @wmertens in #6998)
🐞🩹 Fixed action redirect regression where searchParams were appended (by @brandonpittman in #6927)
🐞🩹 Redirect, error, and fail request events no longer forcefully delete user-defined Cache-Control HTTP header value. (by @nelsonprsousa in #6991)
🐞🩹
vite
is now a peer dependency ofqwik
,qwik-city
,qwik-react
andqwik-labs
, so that there can be no duplicate imports. This should not have consequences, since all apps also directly depend onvite
. (by @wmertens in #6945)🐞🩹 Fixed MDX layout default export being ignored by transformer. (by @danielvaijk in #6845)
🐞🩹 Prevent unexpected caching for q-data.json (by @genki in #6808)
🐞🩹 Multiple rewrite routes pointing to the same route is no longer an error. (by @JerryWu1234 in #6970)
v1.9.1
Compare Source
Patch Changes
noSPA
. (by @wmertens in #6937)This disables history patching, slightly reducing code size and startup time. Use this when your application is MPA only, meaning you don't use the Link component. To enable this, add it to the
experimental
array of theqwikVite
plugin (not theqwikCity
plugin).v1.9.0
Compare Source
Minor Changes
✨ (EXPERIMENTAL) valibot$ validator and a fix for zod$ types. (by @fabian-hiller in #6752)
To use it, you need to pass
experimental: ['valibot']
as an option to theqwikVite
plugin as such:✨ (EXPERIMENTAL)
usePreventNavigate
lets you prevent navigation while your app's state is unsaved. It works asynchronously for SPA navigation and falls back to the browser's default dialogs for other navigations. To use it, addexperimental: ['preventNavigate']
to yourqwikVite
options. (by @wmertens in #6825)Patch Changes
🐞🩹 added .ico to be detected by isStaticFile (by @intellix in #6860)
🐞🩹 fixed delays caused from inefficient Service Worker prefetching (buffering) (by @shairez in #6863)
v1.8.0
Compare Source
v1.7.3
v1.7.2
Patch Changes
If you have trouble with Typescript, ensure that you use
moduleResolution: "Bundler"
in yourtsconfig.json
.@builder.io/qwik
no longer depends onundici
During dev mode, qwik-city will no longer serve files from
dist/
, which are very likely to be stale/incorrect. Furthermore, query parameters are taken into account when serving files (like production servers would do). (by @wmertens in #6694)qwik-city is now more careful about redirects after requesting routeLoader data (by @wmertens in #6740)
strip internal search parameters in canonical URLs (by @wmertens in #6694)
Support entry.ts routes in dev mode now that dist/ is no longer served, and special-case
repl-sw.js
in the docs. (by @wmertens in #6706)v1.7.1
Compare Source
What's Changed
There are very important bugfixes around build and development in this release and we recommend upgrading.
PRs
JSXNode
by @genki in https://github.com/QwikDev/qwik/pull/6637Full Changelog: QwikDev/qwik@v1.7.0...v1.7.1
v1.7.0
Compare Source
Notable changes
PRs merged
New Contributors
Full Changelog: QwikDev/qwik@v1.6.0...v1.7.0
v1.6.0
Compare Source
What's Changed
Features
Bug Fixes
currentScript
by @mhevery in https://github.com/QwikDev/qwik/pull/6559Docs
New Contributors
Full Changelog: QwikDev/qwik@v1.5.7...v1.6.0
v1.5.7
Compare Source
What's Changed
New Contributors
Full Changelog: QwikDev/qwik@v1.5.6...v1.5.7
v1.5.6
Compare Source
What's Changed
Many bugfixes and documentation updates.
We also added an API tech preview:
createSignal
,useConstant
andcreateComputed$
, which should be self-explanatory. Feedback welcome on Discord or in issues. We cannot guarantee the stability of these APIs yet, although they are simple enough that they probably won't need changing.Commits
deep
property ofuseStore
to match the new default by @Joristdh in https://github.com/QwikDev/qwik/pull/6383basePath
option by @gioboa in https://github.com/QwikDev/qwik/pull/6435New Contributors
Full Changelog: QwikDev/qwik@v1.5.5...v1.5.6
v1.5.5
Compare Source
What's Changed
server$
the values should be marked as readonly by @gitstart in https://github.com/QwikDev/qwik/pull/5238Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), 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.
This PR was generated by Mend Renovate. View the repository job log.