Skip to content

Commit b39bb4b

Browse files
committed
build: publish v2.0.0-beta.30
1 parent f04b294 commit b39bb4b

File tree

16 files changed

+108
-14
lines changed

16 files changed

+108
-14
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
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.30](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.29...v2.0.0-beta.30) (2021-12-23)
7+
8+
9+
### Bug Fixes
10+
11+
* **plugin-back-to-top:** fix regression when upgrading ts-debounce (close [#579](https://github.com/vuepress/vuepress-next/issues/579)) ([7a6a45b](https://github.com/vuepress/vuepress-next/commit/7a6a45be5aec933c0bfd983a1e9d35ee1231761d))
12+
* **theme-default:** arrows not displaying in page nav ([#573](https://github.com/vuepress/vuepress-next/issues/573)) ([2d5b084](https://github.com/vuepress/vuepress-next/commit/2d5b08400316a1734ddc6451f390ebcd9db3faa3))
13+
* **theme-default:** do not always wrap logo and hero image with client-only ([6b4ee45](https://github.com/vuepress/vuepress-next/commit/6b4ee45fdba81705af02ed6a55d9c1314ddf360a))
14+
15+
16+
### Features
17+
18+
* **bundler-webpack:** add devServerSetupMiddlewares option ([4a042a4](https://github.com/vuepress/vuepress-next/commit/4a042a4abc96fc208b6da658782ad3e99fd7af7b))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* **bundler-webpack:** `beforeDevServer` and `afterDevServer` options are removed, use `devServerSetupMiddlewares` instead
24+
25+
26+
27+
28+
629
# [2.0.0-beta.29](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.28...v2.0.0-beta.29) (2021-12-18)
730

831

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.29",
4+
"version": "2.0.0-beta.30",
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.30](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.29...v2.0.0-beta.30) (2021-12-23)
7+
8+
**Note:** Version bump only for package @vuepress/bundler-vite
9+
10+
11+
12+
13+
614
# [2.0.0-beta.29](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.28...v2.0.0-beta.29) (2021-12-18)
715

816
**Note:** Version bump only for package @vuepress/bundler-vite

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-vite",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"description": "Bundler vite package of VuePress",
55
"keywords": [
66
"vuepress-bundler",

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

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.30](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.29...v2.0.0-beta.30) (2021-12-23)
7+
8+
9+
### Features
10+
11+
* **bundler-webpack:** add devServerSetupMiddlewares option ([4a042a4](https://github.com/vuepress/vuepress-next/commit/4a042a4abc96fc208b6da658782ad3e99fd7af7b))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* **bundler-webpack:** `beforeDevServer` and `afterDevServer` options are removed, use `devServerSetupMiddlewares` instead
17+
18+
19+
20+
21+
622
# [2.0.0-beta.29](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.28...v2.0.0-beta.29) (2021-12-18)
723

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/bundler-webpack",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"description": "Bundler webpack package of VuePress",
55
"keywords": [
66
"vuepress-bundler",

packages/@vuepress/plugin-back-to-top/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.30](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.29...v2.0.0-beta.30) (2021-12-23)
7+
8+
9+
### Bug Fixes
10+
11+
* **plugin-back-to-top:** fix regression when upgrading ts-debounce (close [#579](https://github.com/vuepress/vuepress-next/issues/579)) ([7a6a45b](https://github.com/vuepress/vuepress-next/commit/7a6a45be5aec933c0bfd983a1e9d35ee1231761d))
12+
13+
14+
15+
16+
617
# [2.0.0-beta.29](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.28...v2.0.0-beta.29) (2021-12-18)
718

819
**Note:** Version bump only for package @vuepress/plugin-back-to-top

packages/@vuepress/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.29",
3+
"version": "2.0.0-beta.30",
44
"description": "VuePress plugin - back to top",
55
"keywords": [
66
"vuepress-plugin",

packages/@vuepress/theme-default/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.30](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.29...v2.0.0-beta.30) (2021-12-23)
7+
8+
9+
### Bug Fixes
10+
11+
* **theme-default:** arrows not displaying in page nav ([#573](https://github.com/vuepress/vuepress-next/issues/573)) ([2d5b084](https://github.com/vuepress/vuepress-next/commit/2d5b08400316a1734ddc6451f390ebcd9db3faa3))
12+
* **theme-default:** do not always wrap logo and hero image with client-only ([6b4ee45](https://github.com/vuepress/vuepress-next/commit/6b4ee45fdba81705af02ed6a55d9c1314ddf360a))
13+
14+
15+
16+
17+
618
# [2.0.0-beta.29](https://github.com/vuepress/vuepress-next/compare/v2.0.0-beta.28...v2.0.0-beta.29) (2021-12-18)
719

820

packages/@vuepress/theme-default/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vuepress/theme-default",
3-
"version": "2.0.0-beta.29",
3+
"version": "2.0.0-beta.30",
44
"description": "Default theme of VuePress",
55
"keywords": [
66
"vuepress-theme",
@@ -32,7 +32,7 @@
3232
"@vuepress/client": "2.0.0-beta.29",
3333
"@vuepress/core": "2.0.0-beta.29",
3434
"@vuepress/plugin-active-header-links": "2.0.0-beta.29",
35-
"@vuepress/plugin-back-to-top": "2.0.0-beta.29",
35+
"@vuepress/plugin-back-to-top": "2.0.0-beta.30",
3636
"@vuepress/plugin-container": "2.0.0-beta.29",
3737
"@vuepress/plugin-external-link-icon": "2.0.0-beta.29",
3838
"@vuepress/plugin-git": "2.0.0-beta.29",

0 commit comments

Comments
 (0)