diff --git a/CHANGELOG.md b/CHANGELOG.md index fd99ebaecb..1278f815d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# [2.0.0-rc.12](https://github.com/vuepress/core/compare/v2.0.0-rc.11...v2.0.0-rc.12) (2024-05-27) + + +### Bug Fixes + +* **bundler-webpack:** keep the default minimizer ([e08e81f](https://github.com/vuepress/core/commit/e08e81f9bc8f6801d6d9140bf893bb296aa04ab6)) +* **client:** support non-ascii locale path ([01ee546](https://github.com/vuepress/core/commit/01ee546167c5b2b781efca4c49d197593c79193e)) +* **core:** fix page redirects comparison ([#1563](https://github.com/vuepress/core/issues/1563)) ([90a11d9](https://github.com/vuepress/core/commit/90a11d9fb9b2701145ca1717c7d67da7b1e3e0ed)) +* fix route resolving error with hash and queries (close [#1561](https://github.com/vuepress/core/issues/1561)) ([#1562](https://github.com/vuepress/core/issues/1562)) ([4df59d4](https://github.com/vuepress/core/commit/4df59d4a6c8ae590cf976727f6b872436320df73)) + + +### Code Refactoring + +* **markdown:** remove codePlugin and add vPrePlugin (close [#1550](https://github.com/vuepress/core/issues/1550)) ([#1556](https://github.com/vuepress/core/issues/1556)) ([385577c](https://github.com/vuepress/core/commit/385577ce62da060eee787845398a9c23cfbb32c7)) + + +### Features + +* **bundler-webpack:** enable css-modules for .module.css files (close [#1557](https://github.com/vuepress/core/issues/1557)) ([#1560](https://github.com/vuepress/core/issues/1560)) ([10378e1](https://github.com/vuepress/core/commit/10378e10f090f834daf25ca32fb6142b7b1c0da2)) +* **bundler-webpack:** replace postcss-csso with lightningcss (close [#1349](https://github.com/vuepress/core/issues/1349)) ([c854b19](https://github.com/vuepress/core/commit/c854b19c1c71251326cf44208ee8400fce0f33b4)) +* **bundler-webpack:** replace webpack-chain with webpack-5-chain (close [#1503](https://github.com/vuepress/core/issues/1503)) ([#1566](https://github.com/vuepress/core/issues/1566)) ([21ae915](https://github.com/vuepress/core/commit/21ae9154b4a7fc379fc5f7d67043c15ebc81bcf1)) +* **core:** allow non-default-export client config file ([#1564](https://github.com/vuepress/core/issues/1564)) ([d3b3cc4](https://github.com/vuepress/core/commit/d3b3cc415bb24b2434d4c509b34b6c7cc3326d60)) + + +### BREAKING CHANGES + +* **markdown:** `markdown.code` option is remove. Please use `@vuepress/plugin-shiki` and `@vuepress/plugin-prismjs` instead. +* **bundler-webpack:** For webpack bundler, css-modules will be enabled for `*.module.[ext]` files. The previous `*.[ext]?module` usage is no longer supported. + + + # [2.0.0-rc.11](https://github.com/vuepress/core/compare/v2.0.0-rc.10...v2.0.0-rc.11) (2024-05-16) diff --git a/e2e/package.json b/e2e/package.json index ea756c6d81..fcb6fd7953 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/e2e", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "private": true, "type": "module", "scripts": { diff --git a/package.json b/package.json index 0853638494..32440ae854 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/monorepo", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "private": true, "type": "module", "scripts": { diff --git a/packages/bundler-vite/package.json b/packages/bundler-vite/package.json index 296b3f7f98..368877a327 100644 --- a/packages/bundler-vite/package.json +++ b/packages/bundler-vite/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/bundler-vite", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Bundler vite package of VuePress", "keywords": [ "vuepress-bundler", diff --git a/packages/bundler-webpack/package.json b/packages/bundler-webpack/package.json index 4a62b6a5c7..47fe2e29f7 100644 --- a/packages/bundler-webpack/package.json +++ b/packages/bundler-webpack/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/bundler-webpack", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Bundler webpack package of VuePress", "keywords": [ "vuepress-bundler", diff --git a/packages/cli/package.json b/packages/cli/package.json index 3e3ea3553f..98cf6344b3 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/cli", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "CLI package of VuePress", "keywords": [ "vuepress", diff --git a/packages/client/package.json b/packages/client/package.json index f656e46ddd..212ffd181d 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/client", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Client package of VuePress", "keywords": [ "vuepress", diff --git a/packages/core/package.json b/packages/core/package.json index b2ec7c74a8..42d105cddf 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/core", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Core package of VuePress", "keywords": [ "vuepress", diff --git a/packages/markdown/package.json b/packages/markdown/package.json index 4a5f135c6b..b2d8d6e17d 100644 --- a/packages/markdown/package.json +++ b/packages/markdown/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/markdown", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Markdown package of VuePress", "keywords": [ "vuepress", diff --git a/packages/shared/package.json b/packages/shared/package.json index d3e1112004..839ca36e47 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/shared", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Utils that shared between VuePress node and client", "keywords": [ "vuepress", diff --git a/packages/utils/package.json b/packages/utils/package.json index 712108fbc7..66ef9a992e 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@vuepress/utils", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Utils package of VuePress", "keywords": [ "vuepress", diff --git a/packages/vuepress/package.json b/packages/vuepress/package.json index 37d9860996..dfe8610eca 100644 --- a/packages/vuepress/package.json +++ b/packages/vuepress/package.json @@ -1,6 +1,6 @@ { "name": "vuepress", - "version": "2.0.0-rc.11", + "version": "2.0.0-rc.12", "description": "Vue-powered Static Site Generator", "keywords": [ "documentation",