Skip to content

Commit 21f14a4

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 83e9fb2 + c3297e4 commit 21f14a4

File tree

7 files changed

+831
-850
lines changed

7 files changed

+831
-850
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [0.10.2](https://github.com/posva/unplugin-vue-router/compare/v0.10.1...v0.10.2) (2024-07-30)
2+
3+
### Bug Fixes
4+
5+
- avoid nested loaders in setup ([3aea904](https://github.com/posva/unplugin-vue-router/commit/3aea904bd57206aba9b8405c515ec19893580670))
6+
- **loaders:** avoid double fetch on nested loaders ([f15bedc](https://github.com/posva/unplugin-vue-router/commit/f15bedc8d58678a80cd511c7b546c81d74f5c7f0))
7+
18
## [0.10.1](https://github.com/posva/unplugin-vue-router/compare/v0.10.0...v0.10.1) (2024-07-22)
29

310
### Bug Fixes

package.json

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "unplugin-vue-router",
3-
"version": "0.10.1",
3+
"version": "0.10.2",
44
"type": "module",
55
"packageManager": "[email protected]",
66
"description": "File based typed routing for Vue Router",
@@ -141,7 +141,7 @@
141141
"build": "pnpm run build:core && pnpm run build:runtime",
142142
"build:core": "tsup",
143143
"build:runtime": "tsup --config tsup-runtime.config.ts",
144-
"dev": "pnpm run test",
144+
"dev": "pnpm run test --ui",
145145
"docs": "vitepress dev docs",
146146
"docs:build": "vitepress build docs",
147147
"lint": "prettier -c '{src,examples,playground}/**/*.{ts,vue}'",
@@ -150,7 +150,7 @@
150150
"play:build": "npm -C playground run build",
151151
"release": "node scripts/release.mjs",
152152
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
153-
"test": "vitest --typecheck --ui"
153+
"test": "vitest --typecheck"
154154
},
155155
"gitHooks": {
156156
"pre-commit": "lint-staged",
@@ -165,9 +165,9 @@
165165
]
166166
},
167167
"dependencies": {
168-
"@babel/types": "^7.24.9",
168+
"@babel/types": "^7.25.2",
169169
"@rollup/pluginutils": "^5.1.0",
170-
"@vue-macros/common": "^1.10.4",
170+
"@vue-macros/common": "^1.11.0",
171171
"ast-walker-scope": "^0.6.1",
172172
"chokidar": "^3.6.0",
173173
"fast-glob": "^3.3.2",
@@ -176,8 +176,8 @@
176176
"mlly": "^1.7.1",
177177
"pathe": "^1.1.2",
178178
"scule": "^1.3.0",
179-
"unplugin": "^1.11.0",
180-
"yaml": "^2.4.5"
179+
"unplugin": "^1.12.0",
180+
"yaml": "^2.5.0"
181181
},
182182
"peerDependencies": {
183183
"vue-router": "^4.4.0"
@@ -188,12 +188,12 @@
188188
}
189189
},
190190
"devDependencies": {
191-
"@pinia/colada": "^0.6.0",
192-
"@shikijs/vitepress-twoslash": "1.11.0",
193-
"@tanstack/vue-query": "^5.51.9",
194-
"@types/node": "^20.14.11",
195-
"@vitest/coverage-v8": "^2.0.3",
196-
"@vitest/ui": "^2.0.3",
191+
"@pinia/colada": "^0.7.0",
192+
"@shikijs/vitepress-twoslash": "1.12.0",
193+
"@tanstack/vue-query": "^5.51.15",
194+
"@types/node": "^20.14.13",
195+
"@vitest/coverage-v8": "^2.0.4",
196+
"@vitest/ui": "^2.0.4",
197197
"@volar/vue-language-core": "^1.6.5",
198198
"@vue/test-utils": "^2.4.6",
199199
"chalk": "^5.3.0",
@@ -206,25 +206,25 @@
206206
"minimist": "^1.2.8",
207207
"nodemon": "^3.1.4",
208208
"p-series": "^3.0.0",
209-
"pinia": "^2.1.7",
209+
"pinia": "^2.2.0",
210210
"prettier": "^3.3.3",
211211
"rimraf": "^6.0.1",
212-
"rollup": "^4.19.0",
212+
"rollup": "^4.19.1",
213213
"semver": "^7.6.3",
214214
"ts-expect": "^1.3.0",
215-
"tsup": "^8.2.1",
216-
"typescript": "^5.5.3",
217-
"unplugin-auto-import": "^0.18.0",
215+
"tsup": "^8.2.3",
216+
"typescript": "^5.5.4",
217+
"unplugin-auto-import": "^0.18.2",
218218
"unplugin-vue-markdown": "^0.26.2",
219219
"unplugin-vue-router": "workspace:*",
220-
"vite": "^5.3.4",
221-
"vite-plugin-vue-devtools": "^7.3.6",
220+
"vite": "^5.3.5",
221+
"vite-plugin-vue-devtools": "^7.3.7",
222222
"vitepress": "1.3.1",
223-
"vitest": "^2.0.3",
224-
"vue": "^3.4.33",
223+
"vitest": "^2.0.4",
224+
"vue": "^3.4.34",
225225
"vue-router": "^4.4.0",
226226
"vue-router-mock": "^1.1.0",
227-
"vue-tsc": "^2.0.26",
227+
"vue-tsc": "^2.0.29",
228228
"vuefire": "^3.1.24",
229229
"webpack": "^5.93.0",
230230
"yorkie": "^2.0.0"

playground/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@
77
"build": "vite build"
88
},
99
"devDependencies": {
10-
"@vitejs/plugin-vue": "^5.0.5",
11-
"@vue/compiler-sfc": "^3.4.33",
10+
"@vitejs/plugin-vue": "^5.1.1",
11+
"@vue/compiler-sfc": "^3.4.34",
1212
"@vue/tsconfig": "^0.5.1",
1313
"json-server": "^0.17.4",
1414
"unplugin-vue-router": "workspace:*",
15-
"vite": "^5.3.4",
15+
"vite": "^5.3.5",
1616
"vite-plugin-inspect": "^0.8.5"
1717
},
1818
"dependencies": {
19-
"@tanstack/vue-query": "^5.51.9",
19+
"@tanstack/vue-query": "^5.51.15",
2020
"mande": "^2.0.9",
21-
"pinia": "^2.1.7",
22-
"vue": "^3.4.33",
21+
"pinia": "^2.2.0",
22+
"vue": "^3.4.34",
2323
"vue-router": "^4.4.0"
2424
}
2525
}

0 commit comments

Comments
 (0)