Skip to content

Commit a8fde04

Browse files
committed
build: publish v2.0.0-beta.23
1 parent 1d41365 commit a8fde04

File tree

60 files changed

+419
-120
lines changed

Some content is hidden

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

60 files changed

+419
-120
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.23](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2021-08-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **markdown:** encode file path when coverting links (close [#306](https://github.com/vuepress/vuepress-next/issues/306)) ([920c9ac](https://github.com/vuepress/vuepress-next/commit/920c9ac9864ad6877606e0839ae0f35695fe5e0c))
12+
* **theme-default:** use constant color for inserted token (close [#296](https://github.com/vuepress/vuepress-next/issues/296)) ([4596028](https://github.com/vuepress/vuepress-next/commit/459602898cee7c3ecd5d3c05c83a7db97729a14f))
13+
14+
15+
### Features
16+
17+
* **bundler-webpack:** bump webpack-dev-server to 4.0.0-rc.0 ([816da00](https://github.com/vuepress/vuepress-next/commit/816da009ea1597e170b754c54253c0797208db1b))
18+
* **core:** store page data in page object (close [#319](https://github.com/vuepress/vuepress-next/issues/319)) ([c7d3710](https://github.com/vuepress/vuepress-next/commit/c7d3710f451e2d40ed09a1b2ae516adca0a7ab99))
19+
* **core:** support paths without html extension (close [#292](https://github.com/vuepress/vuepress-next/issues/292)) ([#324](https://github.com/vuepress/vuepress-next/issues/324)) ([1d41365](https://github.com/vuepress/vuepress-next/commit/1d41365f56425384c0c8b919008c344b03ab9431))
20+
* **markdown:** support `code.lineNumbers` to be set to number (close [#231](https://github.com/vuepress/vuepress-next/issues/231)) ([#276](https://github.com/vuepress/vuepress-next/issues/276)) ([a7fbdec](https://github.com/vuepress/vuepress-next/commit/a7fbdec893e01937b392ba40ed9dc8888415f9ed))
21+
* **theme-default:** add `toggleDarkMode` locale option ([#275](https://github.com/vuepress/vuepress-next/issues/275)) ([a685a1b](https://github.com/vuepress/vuepress-next/commit/a685a1b9e47ef91da40c27194e927daa63343520))
22+
* **theme-default:** add missing transitions ([066c6e4](https://github.com/vuepress/vuepress-next/commit/066c6e413986f4246b1812ae88c828254404e5c5))
23+
* **theme-default:** enhance color transitions ([#287](https://github.com/vuepress/vuepress-next/issues/287)) ([9b96871](https://github.com/vuepress/vuepress-next/commit/9b968719bee5742cb6e3feb8d7dfbd00d13d0785))
24+
* **theme-default:** enhance color transitions ([#321](https://github.com/vuepress/vuepress-next/issues/321)) ([aeaa3ba](https://github.com/vuepress/vuepress-next/commit/aeaa3ba8362af7e4013d419af1db246c657646ff))
25+
* **theme-default:** set dark mode color-scheme ([#289](https://github.com/vuepress/vuepress-next/issues/289)) ([0b3abd3](https://github.com/vuepress/vuepress-next/commit/0b3abd37f1201176d057d8bdd870dcbc1ea25079))
26+
* **theme-default:** support page slot for Layout.vue ([a8de0a9](https://github.com/vuepress/vuepress-next/commit/a8de0a990711a2732f2f85b086e733fbd8a74110))
27+
28+
29+
### BREAKING CHANGES
30+
31+
* **core:** now `extendsPageData` hook is processed before `onInitialized` hook
32+
33+
34+
35+
36+
637
# [2.0.0-beta.22](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.21...v2.0.0-beta.22) (2021-07-11)
738

839

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"npmClient": "yarn",
33
"useWorkspaces": true,
4-
"version": "2.0.0-beta.22",
4+
"version": "2.0.0-beta.23",
55
"command": {
66
"version": {
77
"allowBranch": "main",

packages/@vuepress/bundler-vite/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.23](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2021-08-01)
7+
8+
**Note:** Version bump only for package @vuepress/bundler-vite
9+
10+
11+
12+
13+
614
# [2.0.0-beta.22](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.21...v2.0.0-beta.22) (2021-07-11)
715

816

packages/@vuepress/bundler-vite/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-vite",
3-
"version": "2.0.0-beta.22",
3+
"version": "2.0.0-beta.23",
44
"description": "Bundler vite package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -31,10 +31,10 @@
3131
"@vitejs/plugin-vue": "^1.3.0",
3232
"@vue/compiler-sfc": "^3.1.5",
3333
"@vue/server-renderer": "^3.1.5",
34-
"@vuepress/client": "2.0.0-beta.21",
35-
"@vuepress/core": "2.0.0-beta.22",
36-
"@vuepress/shared": "2.0.0-beta.21",
37-
"@vuepress/utils": "2.0.0-beta.21",
34+
"@vuepress/client": "2.0.0-beta.23",
35+
"@vuepress/core": "2.0.0-beta.23",
36+
"@vuepress/shared": "2.0.0-beta.23",
37+
"@vuepress/utils": "2.0.0-beta.23",
3838
"autoprefixer": "^10.3.1",
3939
"connect-history-api-fallback": "^1.6.0",
4040
"postcss": "^8.3.6",

packages/@vuepress/bundler-webpack/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.23](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2021-08-01)
7+
8+
9+
### Features
10+
11+
* **bundler-webpack:** bump webpack-dev-server to 4.0.0-rc.0 ([816da00](https://github.com/vuepress/vuepress-next/commit/816da009ea1597e170b754c54253c0797208db1b))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.22](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.21...v2.0.0-beta.22) (2021-07-11)
718

819
**Note:** Version bump only for package @vuepress/bundler-webpack

packages/@vuepress/bundler-webpack/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-webpack",
3-
"version": "2.0.0-beta.22",
3+
"version": "2.0.0-beta.23",
44
"description": "Bundler webpack package of VuePress",
55
"keywords": [
66
"vuepress-bundler",
@@ -32,10 +32,10 @@
3232
"@types/webpack-env": "^1.16.2",
3333
"@vue/compiler-sfc": "^3.1.5",
3434
"@vue/server-renderer": "^3.1.5",
35-
"@vuepress/client": "2.0.0-beta.21",
36-
"@vuepress/core": "2.0.0-beta.22",
37-
"@vuepress/shared": "2.0.0-beta.21",
38-
"@vuepress/utils": "2.0.0-beta.21",
35+
"@vuepress/client": "2.0.0-beta.23",
36+
"@vuepress/core": "2.0.0-beta.23",
37+
"@vuepress/shared": "2.0.0-beta.23",
38+
"@vuepress/utils": "2.0.0-beta.23",
3939
"autoprefixer": "^10.3.1",
4040
"chokidar": "^3.5.2",
4141
"copy-webpack-plugin": "^9.0.1",

packages/@vuepress/cli/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.23](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2021-08-01)
7+
8+
**Note:** Version bump only for package @vuepress/cli
9+
10+
11+
12+
13+
614
# [2.0.0-beta.22](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.21...v2.0.0-beta.22) (2021-07-11)
715

816
**Note:** Version bump only for package @vuepress/cli

packages/@vuepress/cli/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/cli",
3-
"version": "2.0.0-beta.22",
3+
"version": "2.0.0-beta.23",
44
"description": "CLI package of VuePress",
55
"keywords": [
66
"vuepress",
@@ -30,8 +30,8 @@
3030
"clean": "rimraf lib *.tsbuildinfo"
3131
},
3232
"dependencies": {
33-
"@vuepress/core": "2.0.0-beta.22",
34-
"@vuepress/utils": "2.0.0-beta.21",
33+
"@vuepress/core": "2.0.0-beta.23",
34+
"@vuepress/utils": "2.0.0-beta.23",
3535
"cac": "^6.7.3",
3636
"chokidar": "^3.5.2",
3737
"envinfo": "^7.8.1",

packages/@vuepress/client/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.0.0-beta.23](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.22...v2.0.0-beta.23) (2021-08-01)
7+
8+
**Note:** Version bump only for package @vuepress/client
9+
10+
11+
12+
13+
614
# [2.0.0-beta.21](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.20...v2.0.0-beta.21) (2021-07-03)
715

816

packages/@vuepress/client/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/client",
3-
"version": "2.0.0-beta.21",
3+
"version": "2.0.0-beta.23",
44
"description": "Client package of VuePress",
55
"keywords": [
66
"vuepress",
@@ -29,7 +29,7 @@
2929
"copy": "cpx \"src/**/*.{d.ts,css}\" lib"
3030
},
3131
"dependencies": {
32-
"@vuepress/shared": "2.0.0-beta.21",
32+
"@vuepress/shared": "2.0.0-beta.23",
3333
"vue": "^3.1.5",
3434
"vue-router": "^4.0.10"
3535
},

0 commit comments

Comments
 (0)