-
Notifications
You must be signed in to change notification settings - Fork 0
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
Update All #21
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/all
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
Update All #21
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
Deploying luminescent with Cloudflare Pages
|
renovate
bot
force-pushed
the
renovate/all
branch
8 times, most recently
from
July 3, 2023 11:11
2c272a1
to
6575368
Compare
renovate
bot
force-pushed
the
renovate/all
branch
9 times, most recently
from
July 11, 2023 15:45
29eaf61
to
c538baf
Compare
renovate
bot
force-pushed
the
renovate/all
branch
2 times, most recently
from
July 14, 2023 17:05
1a4bf49
to
99fec2b
Compare
renovate
bot
force-pushed
the
renovate/all
branch
2 times, most recently
from
October 8, 2024 22:42
66ff8b6
to
adfc063
Compare
renovate
bot
force-pushed
the
renovate/all
branch
3 times, most recently
from
October 15, 2024 11:19
d52bb4a
to
40f9b2f
Compare
renovate
bot
force-pushed
the
renovate/all
branch
from
October 23, 2024 05:10
40f9b2f
to
a069897
Compare
renovate
bot
force-pushed
the
renovate/all
branch
6 times, most recently
from
November 11, 2024 16:25
060d58c
to
8783970
Compare
renovate
bot
force-pushed
the
renovate/all
branch
3 times, most recently
from
November 14, 2024 21:45
f847da5
to
3c49c70
Compare
renovate
bot
force-pushed
the
renovate/all
branch
3 times, most recently
from
November 25, 2024 16:11
22a4ff8
to
6758760
Compare
renovate
bot
force-pushed
the
renovate/all
branch
4 times, most recently
from
December 6, 2024 17:40
dfb352e
to
698338a
Compare
renovate
bot
force-pushed
the
renovate/all
branch
2 times, most recently
from
December 23, 2024 10:52
ce08d75
to
ff9ad40
Compare
renovate
bot
force-pushed
the
renovate/all
branch
3 times, most recently
from
January 14, 2025 14:05
801a98e
to
9995163
Compare
renovate
bot
force-pushed
the
renovate/all
branch
from
January 16, 2025 09:38
9995163
to
a5be514
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.9.0
->1.12.0
1.9.0
->1.12.0
1.2.9
->1.3.1
1.2.9
->1.3.1
1.9.0
->1.12.0
8.4.47
->8.5.1
3.4.13
->3.4.17
5.6.2
->5.7.3
6.19.8
->6.21.1
5.4.8
->5.4.11
5.0.1
->5.1.4
Release Notes
QwikDev/qwik (@builder.io/qwik)
v1.12.0
Compare Source
Minor Changes
isDev
,isBrowser
andisServer
are now exported from@builder.io/qwik
directly, so they are more discoverable and easier to add.@builder.io/qwik/build
still remains. (by @wmertens in #7138)Patch Changes
🐞🩹 add subscription when doing
"prop" in store
(by @revintec in #7071)🐞🩹
stoppropagation
functionality (by @shairez in #7102)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)
QwikDev/qwik (@builder.io/qwik-city)
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).QwikDev/qwik (eslint-plugin-qwik)
v1.12.0
Compare Source
v1.11.0
Compare Source
v1.10.0
Compare Source
Patch Changes
v1.9.1
Compare Source
postcss/postcss (postcss)
v8.5.1
Compare Source
v8.5.0
Compare Source
v8.4.49
Compare Source
source.offset
(by @romainmenke).v8.4.48
Compare Source
tailwindlabs/tailwindcss (tailwindcss)
v3.4.17
Compare Source
v3.4.16
Compare Source
Fixed
PluginsConfig
allowundefined
values (#14668)Changed
v3.4.15
Compare Source
boxShadow
theme configuration allows arrays (#14856)selection:*
variant works in Chrome 131 (#15003)v3.4.14
Compare Source
Fixed
display: none
on elements that usehidden="until-found"
(#14625)microsoft/TypeScript (typescript)
v5.7.3
Compare Source
v5.7.2
Compare Source
v5.6.3
Compare Source
nodejs/undici (undici)
v6.21.1
Compare Source
v6.21.0
Compare Source
What's Changed
Full Changelog: nodejs/undici@v6.20.1...v6.21.0
v6.20.1
Compare Source
v6.20.0
Compare Source
What's Changed
v6.x
branch) by @eXhumer in https://github.com/nodejs/undici/pull/3531Full Changelog: nodejs/undici@v6.19.8...v6.20.0
vitejs/vite (vite)
v5.4.11
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.10
Compare Source
Please refer to CHANGELOG.md for details.
v5.4.9
Compare Source
Please refer to CHANGELOG.md for details.
aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)
v5.1.4
Compare Source
paths
root dir (eea1c17
) (#150)v5.1.3
Compare Source
b0d8ecb
)vite-tsconfig-paths:resolve
debug logs (7160d6e
)0dc9a8b
)v5.1.2
Compare Source
v5.1.1
Compare Source
${configDir}
syntax in include/exclude (#156)v5.1.0
Compare Source
skip
option for adding additional directories to be skipped when searching for tsconfig.json files (#146)importer
path before callingthis.resolve
in theirresolveId
hooks (#157)4124b09
)Configuration
📅 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.