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.8.0
->1.11.0
1.8.0
->1.11.0
1.2.4
->1.3.1
1.2.4
->1.3.1
8.56.11
->8.56.12
22.5.0
->22.10.2
22.4.2
->22.10.2
4.4.4
->4.4.7
1.8.0
->1.11.0
9.1.0
->9.15.0
8.4.41
->8.4.49
3.4.10
->3.4.16
4.18.0
->4.19.2
5.5.4
->5.7.2
6.19.2
->6.21.0
6.19.8
->6.21.0
5.4.2
->5.4.11
5.0.1
->5.1.4
3.72.1
->3.95.0
Release Notes
QwikDev/qwik (@builder.io/qwik)
v1.11.0
Compare Source
Minor Changes
CHORE: Prepare backwards compatibility for V1 libraries in V2. (by @wmertens in #7044)
We move internal fields
immutableProps
andflags
out of JSXNode as they are not meant for public use.This will allow projects using older V1 libraries to continue to work with the Qwik V2 by adding the following
package.json
changes:And will prevent typescript errors when using libraries which haven't upgraded to V2 yet.
✨ add monorepo support to the
qwik add
command by adding aprojectDir
param (by @shairez in #7059)That way you can run
qwik add --projectDir=packages/my-package
and it will add the feature to the specified project/package (sub) folder, instead of the root folder.v1.10.0
Compare Source
Minor Changes
Async functions in
useComputed
are deprecated. (by @wmertens in #7013)Why?
useTask
anduseResource
are available, without these problems.In v2, async functions won't work.
Again, to get the same functionality use
useTask
oruseResource
instead, or this function:✨ Expose
unwrapStore
as a low level AP (by @GrandSchtroumpf in #6960)This enables developers to clone the content of a
useStore()
usingstructureClone
or IndexedDBPatch Changes
📃 fix useResource docs example & remove unused demo (by @ianlet in #6893)
🐞🩹 QRL segment filenames are no longer lowercased. This was giving trouble with parent lookups in dev mode and there was no good reason for it. (by @wmertens in #7003)
🐞🩹 the type for
<textarea>
now accepts text children, as per spec. (by @wmertens in #7016)🐞🩹 dev-mode QRL paths are now handled by Vite so they are the same as the parent paths. You can see this in the Sources section of the browser devtools, where the segments are now always next to their parents (when the parent is loaded). (by @wmertens in #7037)
🐞🩹
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)✨ sync$ QRLs will now be serialized into the HTML in a shorter form (by @wmertens in #6944)
🐞🩹 cli build command appearing to "hang" on errors (by @shairez in #6943)
✨ Allow setting
linkFetchPriority
for modulepreload links in the prefetch strategy. Also fix the links in dev mode (by @GrandSchtroumpf in #6947)v1.9.1
Compare Source
Patch Changes
✨ showing qrl parent names. (by @wmertens in #6881)
in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in
q-manifest.json
are easy to understand.🐞🩹 Optimizer now ignores unknown deps in graph that caused crashes during build (by @wmertens in #6888)
🐞🩹 Do not allow object methods to be serialized with style prop (by @jakovljevic-mladen in #6932)
🐞🩹 In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it (by @wmertens in #6938)
v1.9.0
Compare Source
Patch Changes
✨ Introducing the
experimental[]
option to the Vite plugin. This allows you to opt in to features that are not guaranteed to have a stable API. (by @wmertens in #6880)🐞🩹 fix typo in using useStore() (by @zaynet in #6875)
🐞🩹 gracefully handle image dimensions service errors (by @JerryWu1234 in #6855)
✨ Lib builds no longer perform qwik transformation. (by @wmertens in #6850)
This prevents using unstable internal APIs, and doesn't make a difference for the end user. Library authors are strongly urged to push a new library patch version built with this qwik version, and to add
| ^2.0.0
to their accepted qwik version range.🐞🩹 SSG Link component strips search parameters (by @JerryWu1234 in #6778)
🐞🩹 The PrefetchServiceWorker now has a more efficient graph and only prefetches direct imports and, at a lower priority, task QRL segments. This greatly improves its load performance. (by @wmertens in #6853)
QwikDev/qwik (@builder.io/qwik-city)
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)
chartjs/Chart.js (chart.js)
v4.4.7
Compare Source
Essential Links
Types
Documentation
Development
Thanks to @Connormiha, @DustinEwan, @LeeLenaleee, @dependabot and @dependabot[bot]
v4.4.6
Compare Source
v4.4.5
Compare Source
Essential Links
Bugs Fixed
Types
Documentation
Development
Thanks to @HieroglypH, @LeeLenaleee, @dependabot, @dependabot[bot] and @dregad
QwikDev/qwik (eslint-plugin-qwik)
v1.11.0
Compare Source
v1.10.0
Compare Source
Patch Changes
v1.9.1
Compare Source
v1.9.0
Compare Source
pnpm/pnpm (pnpm)
v9.15.0
Compare Source
v9.14.4
Compare Source
v9.14.3
Compare Source
v9.14.2
Compare Source
Patch Changes
pnpm publish --json
should work #8788.Platinum Sponsors
Gold Sponsors
v9.14.1
Compare Source
Minor Changes
pnpm pack --json
to print packed tarball and contents in JSON format #8765.Patch Changes
pnpm exec
should print a meaningful error message when no command is provided #8752.pnpm setup
should remove the CLI from the target location before moving the new binary #8173.ERR_PNPM_TARBALL_EXTRACT
error while installing a dependency from GitHub having a slash in branch name #7697.use-node-version
setting is used and the system has no Node.js installed #8769..npmrc
files to their correct types. For instance,child-concurrency
should be a number, not a string #5075.manage-package-manager-versions
is set totrue
.pnpm init
should respect the--dir
option #8768.Platinum Sponsors
Gold Sponsors
v9.14.0
Compare Source
v9.13.2
: pnpm 9.13.2Compare Source
Patch Changes
dlx
processes.Platinum Sponsors
Gold Sponsors
Silver Sponsors
v9.13.1
: pnpm 9.13.1Compare Source
Patch Changes
Platinum Sponsors
Gold Sponsors
Silver Sponsors
This PR was generated by Mend Renovate. View the repository job log.