Skip to content

Commit

Permalink
v5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sodatea committed Feb 17, 2022
1 parent e75a288 commit c913cdc
Show file tree
Hide file tree
Showing 25 changed files with 93 additions and 58 deletions.
35 changes: 35 additions & 0 deletions CHANGELOG.md
@@ -1,4 +1,39 @@

## 5.0.0 (2022-02-17)

#### :bug: Bug Fix
* `@vue/cli-service`
* [#6972](https://github.com/vuejs/vue-cli/pull/6972) Remove --skip-plugin from arguments ([@MatthijsBurgh](https://github.com/MatthijsBurgh))
* [#6987](https://github.com/vuejs/vue-cli/pull/6987) fix: update mini-css-extract-plugin to ^2.5.3 ([@darrinmn9](https://github.com/darrinmn9))

#### :memo: Documentation
* [#6706](https://github.com/vuejs/vue-cli/pull/6706) docs: update vue create --help output in "Basics/Creating a Project" ([@Lalaluka](https://github.com/Lalaluka))
* [#6642](https://github.com/vuejs/vue-cli/pull/6642) docs: Update README.md ([@wxsms](https://github.com/wxsms))
* [#6620](https://github.com/vuejs/vue-cli/pull/6620) Fix typo in deployment guide ([@Klikini](https://github.com/Klikini))
* [#6623](https://github.com/vuejs/vue-cli/pull/6623) fix(docs): the plugin-dev in zh has a regexp lose the end / ([@HelloJiya](https://github.com/HelloJiya))
* [#6377](https://github.com/vuejs/vue-cli/pull/6377) replace master with main to reflect GH default ([@anbnyc](https://github.com/anbnyc))
* [#6359](https://github.com/vuejs/vue-cli/pull/6359) Fix master to main in heroku deployment ([@MowlCoder](https://github.com/MowlCoder))
* [#6266](https://github.com/vuejs/vue-cli/pull/6266) Add note about loader incompatible with webpack 4 ([@JarnoRFB](https://github.com/JarnoRFB))
* [#6239](https://github.com/vuejs/vue-cli/pull/6239) Update deployment.md ([@anzuj](https://github.com/anzuj))
* [#6237](https://github.com/vuejs/vue-cli/pull/6237) fix code demo ([@yyzclyang](https://github.com/yyzclyang))

#### Committers: 13
- Alec Barrett ([@anbnyc](https://github.com/anbnyc))
- Alexander Sokolov ([@Alex-Sokolov](https://github.com/Alex-Sokolov))
- Andy Castille ([@Klikini](https://github.com/Klikini))
- Anzelika ([@anzuj](https://github.com/anzuj))
- Ben Hutton ([@Relequestual](https://github.com/Relequestual))
- Calvin Schröder ([@Lalaluka](https://github.com/Lalaluka))
- Darrin Nagengast ([@darrinmn9](https://github.com/darrinmn9))
- Matthijs van der Burgh ([@MatthijsBurgh](https://github.com/MatthijsBurgh))
- Rüdiger Busche ([@JarnoRFB](https://github.com/JarnoRFB))
- [@HelloJiya](https://github.com/HelloJiya)
- [@MowlCoder](https://github.com/MowlCoder)
- wxsm ([@wxsms](https://github.com/wxsms))
- 鱼依藻常乐 ([@yyzclyang](https://github.com/yyzclyang))



## 5.0.0-rc.3 (2022-02-10)

#### :rocket: New Features
Expand Down
2 changes: 1 addition & 1 deletion docs/core-plugins/unit-jest.md
Expand Up @@ -60,7 +60,7 @@ transformIgnorePatterns: ['/node_modules/']
We have to add exceptions to this pattern with a RegExp negative lookahead:

```javascript
transformIgnorePatterns: ['/node_modules/(?!name-of-lib-to-transform)']
transformIgnorePatterns: ['/node_modules/(?!name-of-lib-o-transform)']
```

To exclude multiple libraries:
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "5.0.0-rc.3",
"version": "5.0.0",
"packages": [
"packages/@vue/babel-preset-app",
"packages/@vue/cli*",
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/babel-preset-app/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/babel-preset-app",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "babel-preset-app for vue-cli",
"main": "index.js",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-init/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-init",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "init addon for vue-cli",
"main": "index.js",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-overlay/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-overlay",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "error overlay & dev server middleware for vue-cli",
"main": "dist/client.js",
"files": [
Expand Down
6 changes: 3 additions & 3 deletions packages/@vue/cli-plugin-babel/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-babel",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "babel plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -21,8 +21,8 @@
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-babel#readme",
"dependencies": {
"@babel/core": "^7.12.16",
"@vue/babel-preset-app": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/babel-preset-app": "^5.0.0",
"@vue/cli-shared-utils": "^5.0.0",
"babel-loader": "^8.2.2",
"thread-loader": "^3.0.0",
"webpack": "^5.54.0"
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-e2e-cypress/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-e2e-cypress",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "e2e-cypress plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"access": "public"
},
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"eslint-plugin-cypress": "^2.11.2"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-e2e-nightwatch/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-e2e-nightwatch",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "e2e-nightwatch plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"access": "public"
},
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"deepmerge": "^4.2.2",
"nightwatch": "^2.0.5"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-e2e-webdriverio/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-e2e-webdriverio",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "e2e-webdriverio plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@types/mocha": "^8.2.1",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"@wdio/cli": "^7.0.7",
"@wdio/local-runner": "^7.0.7",
"@wdio/mocha-framework": "^7.0.7",
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-eslint/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-eslint",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "eslint plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"access": "public"
},
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"eslint-webpack-plugin": "^3.1.0",
"globby": "^11.0.2",
"webpack": "^5.54.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-pwa/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-pwa",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "pwa plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"access": "public"
},
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"html-webpack-plugin": "^5.1.0",
"webpack": "^5.54.0",
"workbox-webpack-plugin": "^6.1.0"
Expand Down
6 changes: 3 additions & 3 deletions packages/@vue/cli-plugin-router/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-router",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "router plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,10 +23,10 @@
"access": "public"
},
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3"
"@vue/cli-shared-utils": "^5.0.0"
},
"devDependencies": {
"@vue/cli-test-utils": "^5.0.0-rc.3"
"@vue/cli-test-utils": "^5.0.0"
},
"peerDependencies": {
"@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0"
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-typescript/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-typescript",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "typescript plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -25,7 +25,7 @@
"dependencies": {
"@babel/core": "^7.12.16",
"@types/webpack-env": "^1.15.2",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"babel-loader": "^8.2.2",
"fork-ts-checker-webpack-plugin": "^6.4.0",
"globby": "^11.0.2",
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-unit-jest/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-unit-jest",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "unit-jest plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -26,7 +26,7 @@
"@babel/core": "^7.12.16",
"@babel/plugin-transform-modules-commonjs": "^7.15.0",
"@types/jest": "^27.0.1",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"babel-jest": "^27.1.0",
"deepmerge": "^4.2.2",
"jest": "^27.1.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-unit-mocha/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-unit-mocha",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "mocha unit testing plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -22,7 +22,7 @@
},
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/cli-plugin-unit-mocha#readme",
"dependencies": {
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"jsdom": "^18.0.1",
"jsdom-global": "^3.0.2",
"mocha": "^8.3.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/@vue/cli-plugin-vuex/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-plugin-vuex",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "Vuex plugin for vue-cli",
"main": "index.js",
"repository": {
Expand All @@ -23,7 +23,7 @@
"access": "public"
},
"devDependencies": {
"@vue/cli-test-utils": "^5.0.0-rc.3"
"@vue/cli-test-utils": "^5.0.0"
},
"peerDependencies": {
"@vue/cli-service": "^3.0.0 || ^4.0.0 || ^5.0.0-0"
Expand Down
10 changes: 5 additions & 5 deletions packages/@vue/cli-service/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-service",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "local service for vue-cli projects",
"main": "lib/Service.js",
"typings": "types/index.d.ts",
Expand All @@ -27,10 +27,10 @@
"@soda/friendly-errors-webpack-plugin": "^1.8.0",
"@soda/get-current-script": "^1.0.2",
"@types/minimist": "^1.2.0",
"@vue/cli-overlay": "^5.0.0-rc.3",
"@vue/cli-plugin-router": "^5.0.0-rc.3",
"@vue/cli-plugin-vuex": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-overlay": "^5.0.0",
"@vue/cli-plugin-router": "^5.0.0",
"@vue/cli-plugin-vuex": "^5.0.0",
"@vue/cli-shared-utils": "^5.0.0",
"@vue/component-compiler-utils": "^3.3.0",
"@vue/vue-loader-v15": "npm:vue-loader@^15.9.7",
"@vue/web-component-wrapper": "^1.3.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-shared-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-shared-utils",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "shared utilities for vue-cli packages",
"main": "index.js",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/@vue/cli-test-utils/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-test-utils",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"description": "test utilities for vue-cli packages",
"repository": {
"type": "git",
Expand Down
8 changes: 4 additions & 4 deletions packages/@vue/cli-ui-addon-webpack/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-ui-addon-webpack",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-cli.git",
Expand All @@ -20,9 +20,9 @@
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "^5.0.0-rc.3",
"@vue/cli-plugin-eslint": "^5.0.0-rc.3",
"@vue/cli-service": "^5.0.0-rc.3",
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"core-js": "^3.8.3",
"eslint": "^7.32.0",
Expand Down
8 changes: 4 additions & 4 deletions packages/@vue/cli-ui-addon-widgets/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-ui-addon-widgets",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-cli.git",
Expand All @@ -20,9 +20,9 @@
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@vue/cli-plugin-babel": "^5.0.0-rc.3",
"@vue/cli-plugin-eslint": "^5.0.0-rc.3",
"@vue/cli-service": "^5.0.0-rc.3",
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"core-js": "^3.8.3",
"eslint": "^7.32.0",
Expand Down
12 changes: 6 additions & 6 deletions packages/@vue/cli-ui/package.json
@@ -1,6 +1,6 @@
{
"name": "@vue/cli-ui",
"version": "5.0.0-rc.3",
"version": "5.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/vue-cli.git",
Expand Down Expand Up @@ -35,7 +35,7 @@
],
"dependencies": {
"@akryum/winattr": "^3.0.0",
"@vue/cli-shared-utils": "^5.0.0-rc.3",
"@vue/cli-shared-utils": "^5.0.0",
"apollo-server-express": "^2.21.0",
"clone": "^2.1.1",
"deepmerge": "^4.2.2",
Expand Down Expand Up @@ -66,10 +66,10 @@
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@graphql-eslint/eslint-plugin": "^3.8.0",
"@vue/cli-plugin-babel": "^5.0.0-rc.3",
"@vue/cli-plugin-e2e-cypress": "^5.0.0-rc.3",
"@vue/cli-plugin-eslint": "^5.0.0-rc.3",
"@vue/cli-service": "^5.0.0-rc.3",
"@vue/cli-plugin-babel": "^5.0.0",
"@vue/cli-plugin-e2e-cypress": "^5.0.0",
"@vue/cli-plugin-eslint": "^5.0.0",
"@vue/cli-service": "^5.0.0",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/ui": "^0.12.2",
"ansi_up": "^5.0.0",
Expand Down

0 comments on commit c913cdc

Please sign in to comment.