-
Notifications
You must be signed in to change notification settings - Fork 1
Update dependency vue to v3.4.26 #180
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
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/vue-monorepo
base: main
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
Conversation
This file contains hidden or 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
371c427 to
625a42a
Compare
625a42a to
f0b96d0
Compare
f0b96d0 to
2fc1532
Compare
2fc1532 to
c5fc741
Compare
c5fc741 to
7b1df2d
Compare
d713980 to
bc16d17
Compare
bc16d17 to
ee0739a
Compare
ee0739a to
2f65230
Compare
2f65230 to
d326ee3
Compare
b3f0c6f to
5ba9f40
Compare
a0324c7 to
6ee6440
Compare
6ee6440 to
a67f825
Compare
a67f825 to
341f7d8
Compare
f7e3b73 to
60f7d6e
Compare
67dd225 to
1cae212
Compare
1cae212 to
bf04993
Compare
8331ef5 to
e6b4517
Compare
e6b4517 to
3f0bc6a
Compare
3f0bc6a to
a37092f
Compare
a37092f to
267be02
Compare
a62346b to
2df7f74
Compare
e1c05e5 to
3f4a2d9
Compare
3f4a2d9 to
e622985
Compare
ab75c75 to
320d344
Compare
320d344 to
815e919
Compare
815e919 to
2a43539
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:
3.3.4->3.4.26Release Notes
vuejs/core (vue)
v3.4.26Compare Source
Bug Fixes
v3.4.25Compare Source
Bug Fixes
v3.4.24Compare Source
Bug Fixes
v3.4.23Compare Source
Bug Fixes
v3.4.22Compare Source
Bug Fixes
.tsxwhen type import's extension is omitted (#10637) (34106bc), closes #10635v-modelstring/number coercion for multiselect options (#10576) (db374e5)Performance Improvements
__NO_SIDE_EFFECTS__comments (#9053) (d46df6b)v3.4.21Compare Source
Bug Fixes
v3.4.20Compare Source
Bug Fixes
v3.4.19Compare Source
Bug Fixes
Features
Performance Improvements
getType()GC and speed (#10327) (603a1e1)v3.4.18Compare Source
Bug Fixes
v3.4.17Compare Source
Reverts
v3.4.16Compare Source
Bug Fixes
MaybeDirtyrecurse (#10187) (6c7e0bd), closes #10185markRaw(#10289) (2312184), closes #10288Reverts
v3.4.15Compare Source
Bug Fixes
Performance Improvements
v3.4.14Compare Source
Bug Fixes
v3.4.13Compare Source
Bug Fixes
v3.4.12Compare Source
Reverts
v3.4.11Compare Source
Bug Fixes
v3.4.10Compare Source
Bug Fixes
v3.4.9Compare Source
Bug Fixes
v3.4.8Compare Source
Bug Fixes
v3.4.7Compare Source
Bug Fixes
<template>tags (#10034) (923d560)h(#9991) (438a74a)Reverts
v3.4.6Compare Source
Bug Fixes
nulltype for textarea value (#9997) (c379bc2), closes #9904v3.4.5Compare Source
Bug Fixes
v3.4.4Compare Source
Bug Fixes
watchEffect(#9948) (f300a40)Performance Improvements
v3.4.3Compare Source
Bug Fixes
v3.4.2Compare Source
Bug Fixes
v3.4.1Compare Source
Bug Fixes
Features
v3.4.0Compare Source
Potential Actions Needed
To fully leverage new features in 3.4, it is recommended to also update the following dependencies when upgrading to 3.4:
If using TSX with Vue, check actions needed in Removed: Global JSX Namespace.
Make sure you are no longer using any deprecated features (if you are, you should have warnings in the console telling you so). They may have been removed in 3.4.
Features
onceoption to watch (#9034) (a645e7a)usingsyntax (#8786) (5b2bd1d)defineModelsupport local mutation by default, remove local option (f74785b), closes /github.com/vuejs/rfcs/discussions/503#discussioncomment-7566278__VUE_PROD_HYDRATION_MISMATCH_DETAILS__feature flag (#9550) (bc7698d)FunctionalComponent(#8644) (927ab17)AriaAttributestype (#8909) (fd0b6ba)ObjectPluginandFunctionPlugintypes (#8946) (fa4969e), closes #8577DefinePropstype (096ba81)PublicPropstype (#2403) (44135dc)hwith native elements (#9756) (a625376)ComponentInstancetype (#5408) (bfb8565)Performance Improvements
BREAKING CHANGES
Global JSX Registration Removed
Starting in 3.4, Vue no longer registers the global
JSXnamespace by default. This is necessary to avoid global namespace collision with React so that TSX of both libs can co-exist in the same project. This should not affect SFC-only users with latest version of Volar.If you are using TSX, there are two options:
Explicitly set jsxImportSource to
'vue'intsconfig.jsonbefore upgrading to 3.4. You can also opt-in per file by adding a/* @​jsxImportSource vue */comment at the top of the file.If you have code that depends on the presence of the global
JSXnamespace, e.g. usage of types likeJSX.Elementetc., you can retain the exact pre-3.4 global behavior by explicitly referencingvue/jsx, which registers the globalJSXnamespace.Note that this is a type-only breaking change in a minor release, which adheres to our release policy.
Deprecated Features Removed
app.config.unwrapInjectedRefhas been removed. It was deprecated and enabled by default in 3.3. In 3.4 it is no longer possible to disable this behavior.@vnodeXXXevent listeners in templates are now a compiler error instead of a deprecation warning. Use@vue:XXXlisteners instead.v-isdirective has been removed. It was deprecated in 3.3. Use theisattribute withvue:prefix instead.v3.3.13Compare Source
Bug Fixes
v3.3.12Compare Source
Bug Fixes
xmlns:xlinktoSVGAttributes(#9300) (0d61b42), closes #9299shallowReftype error (#9839) (9a57158)v3.3.11Compare Source
Bug Fixes
v3.3.10Compare Source
Bug Fixes
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.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.