Skip to content

Commit 8eb12d6

Browse files
committed
v5.0.0-rc.0
1 parent b0a6768 commit 8eb12d6

File tree

24 files changed

+94
-59
lines changed

24 files changed

+94
-59
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
11

2+
## 5.0.0-rc.0 (2021-11-06)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli`
6+
* [#6817](https://github.com/vuejs/vue-cli/pull/6817) feat: generate `vue.config.js` with `defineConfig` wrapper ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli-plugin-eslint`, `@vue/cli-ui-addon-webpack`, `@vue/cli-ui-addon-widgets`, `@vue/cli-ui`
8+
* [#6795](https://github.com/vuejs/vue-cli/pull/6795) feat(generator)!: bump eslint-plugin-vue to v8 ([@sodatea](https://github.com/sodatea))
9+
* `@vue/cli-service`
10+
* [#6790](https://github.com/vuejs/vue-cli/pull/6790) feat!: bump css-loader and mini-css-extract-plugin versions ([@sodatea](https://github.com/sodatea))
11+
* `@vue/cli-plugin-eslint`
12+
* [#6791](https://github.com/vuejs/vue-cli/pull/6791) feat: replace`@vue/eslint-config-prettier` with `eslint-config-prettier` ([@sodatea](https://github.com/sodatea))
13+
14+
#### :boom: Breaking Changes
15+
* `@vue/babel-preset-app`, `@vue/cli-plugin-typescript`, `@vue/cli-service`
16+
* [#6808](https://github.com/vuejs/vue-cli/pull/6808) feat!: remove `@vue/compiler-sfc` from peer dependencies ([@sodatea](https://github.com/sodatea))
17+
* `@vue/cli-service`
18+
* [#6790](https://github.com/vuejs/vue-cli/pull/6790) feat!: bump css-loader and mini-css-extract-plugin versions ([@sodatea](https://github.com/sodatea))
19+
20+
#### :bug: Bug Fix
21+
* `@vue/cli-plugin-unit-jest`
22+
* [#6794](https://github.com/vuejs/vue-cli/pull/6794) fix(migrator): be aware of the project's vue version ([@stefanlivens](https://github.com/stefanlivens))
23+
* `@vue/cli-plugin-eslint`
24+
* [#6787](https://github.com/vuejs/vue-cli/pull/6787) fix: bump eslint-webpack-plugin and fix lintOnError regressions ([@sodatea](https://github.com/sodatea))
25+
26+
#### :house: Internal
27+
* `@vue/cli-plugin-router`, `@vue/cli-plugin-typescript`, `@vue/cli-ui-addon-webpack`, `@vue/cli-ui-addon-widgets`, `@vue/cli-ui`
28+
* [#6809](https://github.com/vuejs/vue-cli/pull/6809) refactor: use multi-word names for router views ([@sodatea](https://github.com/sodatea))
29+
30+
#### Committers: 3
31+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
32+
- Simon Legner ([@simon04](https://github.com/simon04))
33+
- [@stefanlivens](https://github.com/stefanlivens)
34+
35+
36+
237
## 5.0.0-beta.7 (2021-10-26)
338

439
#### :rocket: New Features

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": "5.0.0-beta.7",
4+
"version": "5.0.0-rc.0",
55
"packages": [
66
"packages/@vue/babel-preset-app",
77
"packages/@vue/cli*",

packages/@vue/babel-preset-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/babel-preset-app",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "babel-preset-app for vue-cli",
55
"main": "index.js",
66
"publishConfig": {

packages/@vue/cli-init/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-init",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "init addon for vue-cli",
55
"main": "index.js",
66
"publishConfig": {

packages/@vue/cli-overlay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-overlay",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "error overlay & dev server middleware for vue-cli",
55
"main": "dist/client.js",
66
"files": [

packages/@vue/cli-plugin-babel/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-babel",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "babel plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -21,8 +21,8 @@
2121
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-babel#readme",
2222
"dependencies": {
2323
"@babel/core": "^7.12.16",
24-
"@vue/babel-preset-app": "^5.0.0-beta.7",
25-
"@vue/cli-shared-utils": "^5.0.0-beta.7",
24+
"@vue/babel-preset-app": "^5.0.0-rc.0",
25+
"@vue/cli-shared-utils": "^5.0.0-rc.0",
2626
"babel-loader": "^8.2.2",
2727
"thread-loader": "^3.0.0",
2828
"webpack": "^5.22.0"

packages/@vue/cli-plugin-e2e-cypress/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-e2e-cypress",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "e2e-cypress plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^5.0.0-beta.7",
26+
"@vue/cli-shared-utils": "^5.0.0-rc.0",
2727
"eslint-plugin-cypress": "^2.11.2"
2828
},
2929
"devDependencies": {

packages/@vue/cli-plugin-e2e-nightwatch/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-e2e-nightwatch",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "e2e-nightwatch plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^5.0.0-beta.7",
26+
"@vue/cli-shared-utils": "^5.0.0-rc.0",
2727
"deepmerge": "^4.2.2",
2828
"nightwatch": "^1.7.8"
2929
},

packages/@vue/cli-plugin-e2e-webdriverio/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-e2e-webdriverio",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "e2e-webdriverio plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@types/mocha": "^8.2.1",
29-
"@vue/cli-shared-utils": "^5.0.0-beta.7",
29+
"@vue/cli-shared-utils": "^5.0.0-rc.0",
3030
"@wdio/cli": "^7.0.7",
3131
"@wdio/local-runner": "^7.0.7",
3232
"@wdio/mocha-framework": "^7.0.7",

packages/@vue/cli-plugin-eslint/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/cli-plugin-eslint",
3-
"version": "5.0.0-beta.7",
3+
"version": "5.0.0-rc.0",
44
"description": "eslint plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -23,7 +23,7 @@
2323
"access": "public"
2424
},
2525
"dependencies": {
26-
"@vue/cli-shared-utils": "^5.0.0-beta.7",
26+
"@vue/cli-shared-utils": "^5.0.0-rc.0",
2727
"eslint-webpack-plugin": "^3.1.0",
2828
"globby": "^11.0.2",
2929
"webpack": "^5.22.0",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy