Skip to content

Commit 0c2ebc4

Browse files
committed
v4.0.0-alpha.2
1 parent 1939dfe commit 0c2ebc4

File tree

22 files changed

+108
-52
lines changed

22 files changed

+108
-52
lines changed

CHANGELOG.md

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

2+
## 4.0.0-alpha.2 (2019-07-03)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli-plugin-babel`, `@vue/cli-plugin-typescript`, `@vue/cli-shared-utils`, `@vue/cli-ui`, `@vue/cli-upgrade`, `@vue/cli`
6+
* [#4090](https://github.com/vuejs/vue-cli/pull/4090) feat!: redesigns `vue upgrade`, supports code migration ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli`
8+
* [#4188](https://github.com/vuejs/vue-cli/pull/4188) feat: add `transformScript` to GeneratorAPI ([@sodatea](https://github.com/sodatea))
9+
* [#4000](https://github.com/vuejs/vue-cli/pull/4000) feat: implement version-related APIs for `GeneratorAPI` ([@sodatea](https://github.com/sodatea))
10+
* [#4168](https://github.com/vuejs/vue-cli/pull/4168) feat: make `injectImports` & `injectRootOptions` work for `.vue` files ([@sodatea](https://github.com/sodatea))
11+
12+
#### :boom: Breaking Changes
13+
* `@vue/cli-plugin-babel`, `@vue/cli-plugin-typescript`, `@vue/cli-shared-utils`, `@vue/cli-ui`, `@vue/cli-upgrade`, `@vue/cli`
14+
* [#4090](https://github.com/vuejs/vue-cli/pull/4090) feat!: redesigns `vue upgrade`, supports code migration ([@sodatea](https://github.com/sodatea))
15+
16+
#### :bug: Bug Fix
17+
* `@vue/cli-service`
18+
* [#4169](https://github.com/vuejs/vue-cli/pull/4169) fix: prefer `devServer.public` as the custom url for browser to open (#4169) ([@Devil-Cong](https://github.com/Devil-Cong))
19+
* [#4150](https://github.com/vuejs/vue-cli/pull/4150) chore: upgrade default-gateway to 5.0.2 ([@zrh122](https://github.com/zrh122))
20+
* [#4083](https://github.com/vuejs/vue-cli/pull/4083) fix: display correct address when multiple network adapters present ([@sodatea](https://github.com/sodatea))
21+
* [#4095](https://github.com/vuejs/vue-cli/pull/4095) fix: fix resolve project local plugin's file path ([@sodatea](https://github.com/sodatea))
22+
* `@vue/cli`
23+
* [#4148](https://github.com/vuejs/vue-cli/pull/4148) fix: fix config merging during `vue invoke` in Node.js v12 ([@sodatea](https://github.com/sodatea))
24+
* `@vue/eslint-config-airbnb`
25+
* [#3961](https://github.com/vuejs/vue-cli/pull/3961) airbnb lint should not warn on vuex state mutation ([@LinusBorg](https://github.com/LinusBorg))
26+
27+
#### :memo: Documentation
28+
* Other
29+
* [#4217](https://github.com/vuejs/vue-cli/pull/4217) docs: add Render deployment guide ([@anurag](https://github.com/anurag))
30+
* [#3777](https://github.com/vuejs/vue-cli/pull/3777) Add heroku deployment guide ([@zigomir](https://github.com/zigomir))
31+
* [#3857](https://github.com/vuejs/vue-cli/pull/3857) docs: mention caveat about missing plugins when in legacy config ([@LinusBorg](https://github.com/LinusBorg))
32+
* [#4120](https://github.com/vuejs/vue-cli/pull/4120) Move core plugins docs to documentation website ([@NataliaTepluhina](https://github.com/NataliaTepluhina))
33+
* [#3924](https://github.com/vuejs/vue-cli/pull/3924) docs: add more explanation at prompts ([@kazupon](https://github.com/kazupon))
34+
* `@vue/cli-plugin-typescript`, `@vue/cli`
35+
* [#4046](https://github.com/vuejs/vue-cli/pull/4046) docs: add description of babel plugin usage in TS plugin prompt ([@sodatea](https://github.com/sodatea))
36+
37+
#### :house: Internal
38+
* `@vue/cli`
39+
* [#4205](https://github.com/vuejs/vue-cli/pull/4205) Minor refactor to eliminate redundant code ([@jamesgeorge007](https://github.com/jamesgeorge007))
40+
* `@vue/cli-plugin-eslint`, `@vue/cli-plugin-typescript`, `@vue/cli-service`
41+
* [#4153](https://github.com/vuejs/vue-cli/pull/4153) chore: move yorkie from cli-service to plugin-eslint & plugin-typescript ([@sodatea](https://github.com/sodatea))
42+
43+
#### Committers: 11
44+
- Anurag Goel ([@anurag](https://github.com/anurag))
45+
- Cédric Exbrayat ([@cexbrayat](https://github.com/cexbrayat))
46+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
47+
- James George ([@jamesgeorge007](https://github.com/jamesgeorge007))
48+
- Leon Liu ([@Devil-Cong](https://github.com/Devil-Cong))
49+
- Natalia Tepluhina ([@NataliaTepluhina](https://github.com/NataliaTepluhina))
50+
- Thorsten Lünborg ([@LinusBorg](https://github.com/LinusBorg))
51+
- [@aruseni](https://github.com/aruseni)
52+
- [@zrh122](https://github.com/zrh122)
53+
- kazuya kawaguchi ([@kazupon](https://github.com/kazupon))
54+
- ziga ([@zigomir](https://github.com/zigomir))
55+
56+
57+
258
## 4.0.0-alpha.1 (2019-05-25)
359

460
#### :boom: Breaking Changes

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": false,
4-
"version": "4.0.0-alpha.1",
4+
"version": "4.0.0-alpha.2",
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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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.4.5",
24-
"@vue/babel-preset-app": "^4.0.0-alpha.1",
25-
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
24+
"@vue/babel-preset-app": "^4.0.0-alpha.2",
25+
"@vue/cli-shared-utils": "^4.0.0-alpha.2",
2626
"babel-loader": "^8.0.6",
2727
"webpack": ">=4 < 4.29"
2828
},

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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "^4.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.2",
2727
"cypress": "^3.3.1",
2828
"eslint-plugin-cypress": "^2.2.1"
2929
}

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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "^4.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.2",
2727
"deepmerge": "^3.2.0",
2828
"execa": "^1.0.0",
2929
"nightwatch": "^1.1.11",

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": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
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": "^4.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.2",
2727
"eslint-loader": "^2.1.2",
2828
"globby": "^9.2.0",
2929
"webpack": ">=4 < 4.29",

packages/@vue/cli-plugin-pwa/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-pwa",
3-
"version": "4.0.0-alpha.1",
3+
"version": "4.0.0-alpha.2",
44
"description": "pwa 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": "^4.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.2",
2727
"webpack": ">=4 < 4.29",
2828
"workbox-webpack-plugin": "^4.3.1"
2929
},

0 commit comments

Comments
 (0)