Skip to content
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

chore(deps): update dependency unplugin-vue-router to ^0.11.0 #44

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jun 30, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
unplugin-vue-router ^0.8.5 -> ^0.11.0 age adoption passing confidence

Release Notes

posva/unplugin-vue-router (unplugin-vue-router)

v0.11.1

Compare Source

Bug Fixes

v0.11.0

Compare Source

Bug Fixes
  • resolve tree node value options (1bf080a)
Features

v0.10.9

Compare Source

Bug Fixes
  • warn: better message (a55bc53)
  • loaders: ensure loads when a navigation is missed (b799598), closes #​495
  • loaders: make data possibly undefined in some cases(#​506) (10112a0)
  • upgrade support for pinia colada 0.13.0 (b01dce4)
Features
  • data-loaders: adapt colada to support always defined data (a1cda5d)
  • data-loaders: allow data to always be defined (7cf7796), closes #​319
  • data-loaders: allow default type for errors (5ec4076)
  • loaders: nuxt temp workaround (7763619)
  • support vite 6 (b1c4f6c)
BREAKING CHANGES
  • data-loaders: The default type for error is now Error.
  • data-loaders: Based on the options passed to a defineLoader() function, the data will now be possibly undefined. This enables a more convenient typing

0.10.8 (2024-09-08)

Features
  • loaders: allow errors as a function (df80b28)
  • loaders: allow plain value in colada loader key (646e5bf)
  • loaders: avoid warning during ssr (99d7b0b)
  • loaders: warn incorrect query usage (e43c5f5)

0.10.7 (2024-08-17)

Bug Fixes
  • loaders: reset context in ssr scenarios (4ea4b8c)

0.10.6 (2024-08-15)

Bug Fixes
  • loaders: remove default value for experimental (8773c96)
Features
  • expose experimental vite plugin (0903d61)
  • loaders: add more state to pinia colada (0163811)

0.10.5 (2024-08-15)

Features
  • loaders: change experimental option to match only specific folders (f01cddd)

0.10.4 (2024-08-14)

Features
  • experimental auto export of data loaders (16af831)

0.10.3 (2024-08-12)

Features

0.10.2 (2024-07-30)

Bug Fixes
  • avoid nested loaders in setup (3aea904)
  • loaders: avoid double fetch on nested loaders (f15bedc)

0.10.1 (2024-07-22)

Bug Fixes
Features

v0.10.8

Compare Source

Features
  • loaders: allow errors as a function (df80b28)
  • loaders: allow plain value in colada loader key (646e5bf)
  • loaders: avoid warning during ssr (99d7b0b)
  • loaders: warn incorrect query usage (e43c5f5)

v0.10.7

Compare Source

Bug Fixes
  • loaders: reset context in ssr scenarios (4ea4b8c)

v0.10.6

Compare Source

Bug Fixes
  • loaders: remove default value for experimental (8773c96)
Features
  • expose experimental vite plugin (0903d61)
  • loaders: add more state to pinia colada (0163811)

v0.10.5

Compare Source

Features
  • loaders: change experimental option to match only specific folders (f01cddd)

v0.10.4

Compare Source

Features
  • experimental auto export of data loaders (16af831)

v0.10.3

Compare Source

Features

v0.10.2

Compare Source

Bug Fixes
  • avoid nested loaders in setup (3aea904)
  • loaders: avoid double fetch on nested loaders (f15bedc)

v0.10.1

Compare Source

Bug Fixes
Features

v0.10.0

Compare Source

Bug Fixes
  • types: use native vue-router types (5c1b6c3)
Features
Performance Improvements
BREAKING CHANGES

This version requires [email protected] or higher. The unplugin-vue-router/types no longer export all of the generic types from vue-router. Instead, import them directly from vue-router.

0.9.1 (2024-06-07)

Bug Fixes

v0.9.1

Compare Source

Bug Fixes

v0.9.0

Compare Source

Bug Fixes
  • move extension handling outside of tree (85d8472), closes #​400
  • remove wrong error log during HMR (c511082)
  • require explicit routes import to avoid cyclic imports (63788f6), closes #​132
Code Refactoring
  • pkg: migrate package to type=module (f1e4ca5)
BREAKING CHANGES
  • createRouter() now requires the explicit router
    property to be set and imported:
import { createRouter, createWebHistory } from 'vue-router/auto'
+import { routes } from 'vue-router/auto-routes'

createRouter({
  history: createWebHistory(),
+  routes
})

This also means that runtime extendRoutes() option is not needed. It
has been deprecated and will be removed in the next major release.

  • Tree and PrefixTree insert method expects a path without the file
    extension. They also expect the fullpath of the file as a second
    argument (it used to be optional). This aligns better with their responsibility as they shouldn't be trimming the extension like they used to.
// replace
tree.insert('file.vue')
// with
tree.insert('file', resolve('file.vue'))

This shouldn't affect most users as the Tree implementation is used
internally to represent the folder structure.

  • pkg: The package is now of "type": "module". It shouldn't
    break anything for users but this is just in case, we all know how fragile this js ecosystem is sometimes...

0.8.8 (2024-05-22)

Bug Fixes
  • watch all extensions not just root (74ac22b)

0.8.7 (2024-05-20)

Bug Fixes
Features
  • add an option to disable file watching (#​387) (13f93fc)
  • add component alias to EditableTreeNode (fc8ae27)

0.8.6 (2024-04-12)

Bug Fixes
  • data-loaders: tracked properties with an object in key (58aa516)

0.8.5 (2024-03-14)

Bug Fixes
  • avoid invalid modules with definePage query (25bbec3), closes #​338

0.8.4 (2024-02-24)

This patch contains the necessary fixes to allow importing the data loaders. However, they cannot be imported from vue-router/auto nor from unplugin-vue-router/runtime. Instead, they should be imported from unplugin-vue-router/data-loaders/.... This is needed as some of the loaders depends on extra packages that not all users have installed. At the moment, there are two data loaders

Bug Fixes

0.8.3 (2024-02-22)

Bug Fixes

0.8.2 (2024-02-22)

Bug Fixes
  • data-loaders: fix types references (6558fa8)
  • types: typed router (8ff1984)

0.8.1 (2024-02-22)

Bug Fixes
  • upgrade peer dep on vue-router to 4.3.0 (746ad8f)

v0.8.8

Compare Source

Bug Fixes
  • watch all extensions not just root (74ac22b)

v0.8.7

Compare Source

Bug Fixes
Features
  • add an option to disable file watching (#​387) (13f93fc)
  • add component alias to EditableTreeNode (fc8ae27)

v0.8.6

Compare Source

Bug Fixes
  • data-loaders: tracked properties with an object in key (58aa516)

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@peterroe peterroe force-pushed the main branch 4 times, most recently from 68d5fb7 to bdec2f1 Compare August 24, 2024 12:20
@renovate renovate bot changed the title chore(deps): update dependency unplugin-vue-router to ^0.10.0 chore(deps): update dependency unplugin-vue-router to ^0.11.0 Jan 23, 2025
@renovate renovate bot force-pushed the renovate/unplugin-vue-router-0.x branch from d587d31 to 7ad9c41 Compare January 23, 2025 15:53
Copy link

netlify bot commented Jan 23, 2025

Deploy Preview for create-un ready!

Name Link
🔨 Latest commit 7ad9c41
🔍 Latest deploy log https://app.netlify.com/sites/create-un/deploys/679265f4d93e700009141276
😎 Deploy Preview https://deploy-preview-44--create-un.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants