This repository was archived by the owner on Dec 16, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 28
fix(deps): update vue monorepo #485
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/vue-monorepo
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
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
4f601b7 to
ad48dcd
Compare
e121330 to
304df94
Compare
304df94 to
6437e58
Compare
6437e58 to
145a18a
Compare
145a18a to
2bb3284
Compare
2bb3284 to
3aeafd0
Compare
3aeafd0 to
b6cff50
Compare
b6cff50 to
504d2f9
Compare
59761f9 to
1e3491f
Compare
1e3491f to
3a57a36
Compare
3a57a36 to
2639754
Compare
d5db0bd to
f02515c
Compare
348a579 to
f097d84
Compare
af7b8f2 to
0ab6a0f
Compare
0ab6a0f to
e513662
Compare
23c34f1 to
06d9d44
Compare
3a29e93 to
1d23fe0
Compare
1d23fe0 to
a2eae6f
Compare
a2eae6f to
d803a62
Compare
179eaab to
bf86fe5
Compare
c5b713d to
a5f6a1d
Compare
a5f6a1d to
8220045
Compare
91d4e2f to
861831f
Compare
b5d49d0 to
45ba7fc
Compare
45ba7fc to
800822c
Compare
800822c to
6aa861d
Compare
6aa861d to
1079cf6
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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:
2.6.11->2.7.143.2.25->3.2.452.6.10->2.7.142.6.11->2.7.142.6.10->2.7.14Release Notes
vuejs/core
v2.6.14Compare Source
v2.6.13Compare Source
v2.6.12Compare Source
vuejs/vue
v2.7.14Compare Source
Bug Fixes
EventHandlers(#12840) (0b3cf7d), closes #12832v2.7.13Compare Source
Bug Fixes
v2.7.12Compare Source
Reverts
v2.7.11Compare Source
Bug Fixes
Performance Improvements
v2.7.10Compare Source
Bug Fixes
v2.7.9Compare Source
Bug Fixes
Features
v2.7.8Compare Source
Bug Fixes
<script setup>component resolution edge case with v3 (#12687) (a695c5a), closes #12685defineAsyncComponenttype (#12684) (ba7dd2c)Features
useListeners()helper (adf3ac8)v2.7.7Compare Source
Bug Fixes
v2.7.6Compare Source
Bug Fixes
v2.7.5Compare Source
Bug Fixes
vue.runtime.mjs(#12648) (08fb4a2)v2.7.4Compare Source
Bug Fixes
Features
v2.7.3Compare Source
Bug Fixes
v2.7.2Compare Source
Bug Fixes
Features
v2.7.1Compare Source
Bug Fixes
EventHandlers(#12840) (0b3cf7d), closes #12832v2.7.0Compare Source
Backported Features
<script setup>In addition, the following APIs are also supported:
defineComponent()with improved type inference (compared toVue.extend)h(),useSlot(),useAttrs(),useCssModules()set(),del()andnextTick()are also provided as named exports in ESM builds.The
emitsoption is also supported, but only for type-checking purposes (does not affect runtime behavior)2.7 also supports using ESNext syntax in template expressions. When using a build system, the compiled template render function will go through the same loaders / plugins configured for normal JavaScript. This means if you have configured Babel for
.jsfiles, it will also apply to the expressions in your SFC templates.Notes on API exposure
In ESM builds, these APIs are provided as named exports (and named exports only):
In UMD and CJS builds, these APIs are exposed as properties on the global
Vueobject.When bundling with CJS builds externalized, bundlers should be able to handle ESM interop when externalizing CJS builds.
Behavior Differences from Vue 3
The Composition API is backported using Vue 2's getter/setter-based reactivity system to ensure browser compatibility. This means there are some important behavior differences from Vue 3's proxy-based system:
All Vue 2 change detection caveats still apply.
reactive(),ref(), andshallowReactive()will directly convert original objects instead of creating proxies. This means:readonly()does create a separate object, but it won't track newly added properties and does not work on arrays.Avoid using arrays as root values in
reactive()because without property access the array's mutation won't be tracked (this will result in a warning).Reactivity APIs ignore properties with symbol keys.
In addition, the following features are explicitly NOT ported:
createApp()(Vue 2 doesn't have isolated app scope)awaitin<script setup>(Vue 2 does not support async component initialization)exposeoption is not supported for options components (butdefineExpose()is supported in<script setup>).TypeScript Changes
defineComponentprovides improved type inference similar to that of Vue 3. Note the type ofthisinsidedefineComponent()is not interoperable withthisfromVue.extend().Similar to Vue 3, TSX support is now built-in. If your project previously had manual JSX type shims, make sure to remove them.
Upgrade Guide
Vue CLI / webpack
Upgrade local
@vue/cli-xxxdependencies the latest version in your major version range (if applicable):~4.5.18for v4~5.0.6for v5Upgrade
vueto^2.7.0. You can also removevue-template-compilerfrom the dependencies - it is no longer needed in 2.7.Note: if you are using
@vue/test-utils, you may need to keep it in the dependencies for now, but this requirement will also be lifted in a new release of test utils.Check your package manager lockfile to ensure the following dependencies meet the version requirements. They may be transitive dependencies not listed in
package.json.vue-loader:^15.10.0vue-demi:^0.13.1If not, you will need to remove
node_modulesand the lockfile and perform a fresh install to ensure they are bumped to the latest version.If you were previously using
@vue/composition-api, update imports from it tovueinstead. Note that some APIs exported by the plugin, e.g.createApp, are not ported in 2.7.Update
eslint-plugin-vueto latest version (9+) if you run into unused variable lint errors when using<script setup>.The SFC compiler for 2.7 now uses PostCSS 8 (upgraded from 7). PostCSS 8 should be backwards compatible with most plugins, but the upgrade may cause issues if you were previously using a custom PostCSS plugin that can only work with PostCSS 7. In such cases, you will need to upgrade the relevant plugins to their PostCSS 8 compatible versions.
Vite
2.7 support for Vite is provided via a new plugin: @vitejs/plugin-vue2. This new plugin requires Vue 2.7 or above and supersedes the existing vite-plugin-vue2.
Note that the new plugin does not handle Vue-specific JSX / TSX transform, which is intentional. Vue 2 JSX / TSX transform should be handled in a separate, dedicated plugin, which will be provided soon.
Volar Compatibility
2.7 ships improved type definitions so it is no longer necessary to install
@vue/runtime-domjust for Volar template type inference support. All you need now is the following config intsconfig.json:{ // ... "vueCompilerOptions": { "target": 2.7 } }Devtools Support
Vue Devtools 6.2.0 has added support for inspecting 2.7 Composition API state, but the extensions may still need a few days to go through review on respective publishing platforms.
Bug Fixes
v2.6.14Compare Source
Bug Fixes
Features
v2.6.13Compare Source
Bug Fixes
maybeComponentfunction in parser (#10167) (0603ff6), closes #10152Features
Performance Improvements
v2.6.12Compare Source
Bug Fixes
Configuration
📅 Schedule: Branch creation - "after 4pm on friday,before 9am on monday,every weekend" in timezone Europe/Paris, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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 has been generated by Mend Renovate. View repository job log here.