chore(deps): update all non-major dependencies #257
Merged
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:
7.28.2
->7.28.4
^2.0.0
->^2.0.2
^8.7.5
->^8.9.1
^2.75.7
->^2.76.0
^2.9.13
->^2.9.14
^0.13.1
->^0.13.2
^4.0.16
->^4.1.1
Release Notes
vuejs/test-utils
v2.0.2
Compare Source
What's Changed
Fixes
Docs
Chore/Other
New Contributors
Full Changelog: vuejs/test-utils@v2.0.1...v2.0.2
v2.0.1
Compare Source
Test Utils is quite stable now, so most of the changes here are minor fixes.
The next "big ticket" feature will be SSR support. You can track it here: https://github.com/vuejs/test-utils/pull/1572
Fixes
Chores/Dependencies
Full Changelog: vuejs/test-utils@v2.0.0...v2.0.1
vueuse/vueuse
v8.9.1
Compare Source
🐞 Bug Fixes
View changes on GitHub
v8.9.0
Compare Source
🚀 Features
🐞 Bug Fixes
View changes on GitHub
v8.8.1
Compare Source
🚀 Features
🐞 Bug Fixes
trigger
only work in Vue 3 - by @antfu (a1077)View changes on GitHub
v8.8.0
Compare Source
🚀 Features
auto
mode - by @dfreier and @antfu in https://github.com/vueuse/vueuse/issues/1627orientationchange
event - by @okxiaoliang4 and @antfu in https://github.com/vueuse/vueuse/issues/1609watch
with a manual trigger - by @LittleSound in https://github.com/vueuse/vueuse/issues/1736🐞 Bug Fixes
reactiveOmit
andreactivePick
support array as second arg - by @Brain777777 in https://github.com/vueuse/vueuse/issues/1742isSupported
check - by @antfu (5a64c)View changes on GitHub
rollup/rollup
v2.76.0
Compare Source
2022-07-08
Features
sourcmapBaseUrl
for absolute paths in sourcemaps (#4527)Bug Fixes
Pull Requests
vitejs/vite
v2.9.14
Compare Source
Please refer to CHANGELOG.md for details.
antfu/vue-demi
v0.13.2
Compare Source
🚀 Features
View changes on GitHub
vuejs/router
v4.1.1
Compare Source
Please refer to CHANGELOG.md for details.
v4.1.0
Compare Source
Vue Router 4.1
We are excited to announce the release of Vue Router 4.1 with a few new interesting features, better support for Node ESM and no breaking changes.
Omitting the
component
/components
option in routesIt's now possible to completely omit the
component
option when defining routes with children. While nested routes are about defining layouts, they are also directly connected to apath
and users often found themselves defining a pass through component that would just render a<RouterView>
component to reuse thepath
structure. You can now simplify this to:In other words, you can now nest paths without having to define a component.
Passing History State in navigations
Passing History State through
router.push()
has been implemented and used by the router since its version 4.0 but hasn't been exposed as a public API until now. This enables passing astate
property when callingrouter.push()
orrouter.replace()
. This is useful to pass global state to be associated with the history entry that cannot be shared by copying the URL. One common example of this are Modals:To see a full example, check the modal e2e test, it has been updated to use the
state
property.It's worth noting this shouldn't be used to pass fetched data or complex objects such as classes because of type and size limitations. Check the History State documentation for more information about the
state
property.Given the nature of the
<RouterView>
'sroute
prop, there is also a new functionloadRouteLocation()
that can be used on a resolved route location to load a route with lazy loading:Typed Routes
In v4.1 we were initially planning to introduce types to automatically detect the params from a
path
property, creating autocomplete and type safety inrouter.push()
and<RouterLink>
'sto
prop. It was implemented but also turned out to be extremely slow after ~50 routes due to the nature of the types relying on nesting and complex unions. Instead, we are introducing a build plugin to generate the types of the routes for you based your file structure. This is similar to Nuxt and Vite Plugin Pages but with full type support (similar to nuxt-typed-router) while allowing you to keep using the exact same API, just with Autocompletion and typing hints 😄. The plugin currently supports Vite, Webpack (with some caveats), and rollup and it's currently experimental to gather feedback from the community and build a flexible solution. We hope to release a stable version in the following months.Check out the plugin GitHub repository for installation instructions and documentation.
Here are some other examples of how much this plugin can improves your developer experience:
CJS/MJS support for Node
We now expose a few extra entry points for Node but kept the old ones as well to prevent any disruption to the existing users. You can find more information about this in the corresponding pull request.
Please refer to CHANGELOG.md for details.
Configuration
📅 Schedule: Branch creation - "before 3am on Monday" (UTC), 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.