Skip to content

Commit d37fffc

Browse files
committed
Merge branch 'main' into router-link
2 parents 72175c0 + 672e39c commit d37fffc

File tree

43 files changed

+1297
-1061
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1297
-1061
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# [2.0.0-beta.64](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.63...v2.0.0-beta.64) (2023-07-03)
2+
3+
4+
### Bug Fixes
5+
6+
* **plugin-active-header-links:** remove force replace when updating hash ([#1360](https://github.com/vuepress/vuepress-next/issues/1360)) ([fa6b9ea](https://github.com/vuepress/vuepress-next/commit/fa6b9eab1ace5b06a02d95bb63d16df7b59adeea))
7+
8+
9+
### Performance Improvements
10+
11+
* **client:** use eager computed for routeLocale ([9d85d4f](https://github.com/vuepress/vuepress-next/commit/9d85d4f5b4fe0bc4bca392b466e168240d156dd3))
12+
* **client:** use eager computed for routePath to avoid extra route locale resolving ([aacff56](https://github.com/vuepress/vuepress-next/commit/aacff56bc60559763c246eab8a6697f9e4418ad3))
13+
* **core:** reduce pageRoutes size ([#1274](https://github.com/vuepress/vuepress-next/issues/1274)) ([08cf419](https://github.com/vuepress/vuepress-next/commit/08cf419119fae22abd1d8c4178a7ecddb7564e78))
14+
15+
16+
117
# [2.0.0-beta.63](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.62...v2.0.0-beta.63) (2023-06-08)
218

319

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"@vuepress/theme-default": "workspace:*",
2424
"@vuepress/utils": "workspace:*",
2525
"anywhere": "^1.6.0",
26-
"sass-loader": "^13.3.1",
26+
"sass-loader": "^13.3.2",
2727
"vue": "^3.3.4"
2828
}
2929
}

docs/zh/advanced/cookbook/usage-of-client-config.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
你可以直接在你的项目中使用 [客户端配置文件](../../guide/configuration.md#客户端配置文件) 。或者,在你的插件或者主题中,使用 [clientConfigFile](../../reference/plugin-api.md#clientconfigfile) Hook 来指定客户端配置文件的路径:
44

55
```ts
6-
import { path } from '@vuepress/utils'
76
import { getDirname, path } from '@vuepress/utils'
87

98
const __dirname = getDirname(import.meta.url)

ecosystem/plugin-active-header-links/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-active-header-links",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - active header links",
55
"keywords": [
66
"vuepress-plugin",

ecosystem/plugin-active-header-links/src/client/composables/useActiveHeaderLinks.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,6 @@ const updateHash = async (router: Router, hash: string): Promise<void> => {
124124
.replace({
125125
query: router.currentRoute.value.query,
126126
hash,
127-
force: true,
128127
})
129128
.finally(() => (router.options.scrollBehavior = scrollBehavior))
130129
}

ecosystem/plugin-back-to-top/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-back-to-top",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - back to top",
55
"keywords": [
66
"vuepress-plugin",

ecosystem/plugin-container/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-container",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - markdown container",
55
"keywords": [
66
"vuepress-plugin",

ecosystem/plugin-docsearch/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-docsearch",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - docsearch",
55
"keywords": [
66
"vuepress-plugin",
@@ -37,14 +37,14 @@
3737
"copy": "cpx \"src/**/*.css\" lib"
3838
},
3939
"dependencies": {
40-
"@docsearch/css": "^3.4.0",
41-
"@docsearch/js": "^3.4.0",
42-
"@docsearch/react": "^3.4.0",
40+
"@docsearch/css": "^3.5.1",
41+
"@docsearch/js": "^3.5.1",
42+
"@docsearch/react": "^3.5.1",
4343
"@vuepress/client": "workspace:*",
4444
"@vuepress/core": "workspace:*",
4545
"@vuepress/shared": "workspace:*",
4646
"@vuepress/utils": "workspace:*",
47-
"@vueuse/core": "^10.1.2",
47+
"@vueuse/core": "^10.2.1",
4848
"ts-debounce": "^4.0.0",
4949
"vue": "^3.3.4",
5050
"vue-router": "^4.2.2"

ecosystem/plugin-external-link-icon/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-external-link-icon",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - external link icon",
55
"keywords": [
66
"vuepress-plugin",

ecosystem/plugin-git/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/plugin-git",
3-
"version": "2.0.0-beta.63",
3+
"version": "2.0.0-beta.64",
44
"description": "VuePress plugin - git",
55
"keywords": [
66
"vuepress-plugin",

0 commit comments

Comments
 (0)