Skip to content

Commit 8fa6fa6

Browse files
committed
v4.0.0-alpha.1
1 parent 7bd8796 commit 8fa6fa6

File tree

23 files changed

+128
-73
lines changed

23 files changed

+128
-73
lines changed

CHANGELOG.md

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

2+
## 4.0.0-alpha.1 (2019-05-25)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli-plugin-pwa`, `@vue/cli-ui`
6+
* [#3939](https://github.com/vuejs/vue-cli/pull/3939) feat(HtmlPwaPlugin): adds 'manifestCrossorigin' option ([@BigsonLvrocha](https://github.com/BigsonLvrocha))
7+
* `@vue/cli-ui`
8+
* [#3929](https://github.com/vuejs/vue-cli/pull/3929) Feat prompt editor ([@Akryum](https://github.com/Akryum))
9+
* [#3955](https://github.com/vuejs/vue-cli/pull/3955) Feat rename project ([@Akryum](https://github.com/Akryum))
10+
* `@vue/cli-service`
11+
* [#4011](https://github.com/vuejs/vue-cli/pull/4011) Enable HMR when extracting CSS in dev ([@achretien](https://github.com/achretien))
12+
* `@vue/cli`
13+
* [#3860](https://github.com/vuejs/vue-cli/pull/3860) feat(cli): suggest matching commands if the user mistypes ([@jamesgeorge007](https://github.com/jamesgeorge007))
14+
15+
#### :boom: Breaking Changes
16+
* `@vue/cli-plugin-eslint`, `@vue/cli-service-global`, `@vue/cli-service`, `@vue/cli-ui-addon-widgets`, `@vue/cli`
17+
* [#3975](https://github.com/vuejs/vue-cli/pull/3975) chore!: change default value of `lintOnSave` option ([@sodatea](https://github.com/sodatea))
18+
* `@vue/cli-plugin-typescript`
19+
* [#3909](https://github.com/vuejs/vue-cli/pull/3909) chore: prefer .tsx? files over .jsx? file extensions ([@LinusBorg](https://github.com/LinusBorg))
20+
21+
#### :bug: Bug Fix
22+
* `@vue/cli-upgrade`
23+
* [#4036](https://github.com/vuejs/vue-cli/pull/4036) fix: add missing dependencies to @vue/cli-upgrade ([@sodatea](https://github.com/sodatea))
24+
* `@vue/cli-service`
25+
* [#4034](https://github.com/vuejs/vue-cli/pull/4034) fix: fix dev mode compatibility with workers ([@sodatea](https://github.com/sodatea))
26+
* [#4025](https://github.com/vuejs/vue-cli/pull/4025) fix: update the css-loader runtime path for css-loader v2 ([@sodatea](https://github.com/sodatea))
27+
* `@vue/cli-ui`
28+
* [#3992](https://github.com/vuejs/vue-cli/pull/3992) fix(cli-ui): update dependencies and fix peer dependency warnings ([@sodatea](https://github.com/sodatea))
29+
* [#3966](https://github.com/vuejs/vue-cli/pull/3966) fix(cli-ui): fix detectLanguage function ([@maple3142](https://github.com/maple3142))
30+
31+
#### :house: Internal
32+
* `@vue/cli-service`
33+
* [#4018](https://github.com/vuejs/vue-cli/pull/4018) hotfix for #4016 ([@svtfrancisco](https://github.com/svtfrancisco))
34+
* `@vue/cli`
35+
* [#4003](https://github.com/vuejs/vue-cli/pull/4003) refactor: replace recast with jscodeshift for `injectImportsAndOptions` ([@sodatea](https://github.com/sodatea))
36+
37+
#### :hammer: Underlying Tools
38+
* `@vue/cli-service`
39+
* [#4020](https://github.com/vuejs/vue-cli/pull/4020) chore: upgrade webpack-dev-server to 3.4.1 ([@beardedpayton](https://github.com/beardedpayton))
40+
* [#3943](https://github.com/vuejs/vue-cli/pull/3943) chore: upgrade webpack-chain to v6 ([@sodatea](https://github.com/sodatea))
41+
* `@vue/babel-preset-app`
42+
* [#3978](https://github.com/vuejs/vue-cli/pull/3978) feat(babel-preset-app): Bump jsx dependency version ([@LinusBorg](https://github.com/LinusBorg))
43+
44+
#### Committers: 9
45+
- Francisco ([@svtfrancisco](https://github.com/svtfrancisco))
46+
- Guillaume Chau ([@Akryum](https://github.com/Akryum))
47+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
48+
- James George ([@jamesgeorge007](https://github.com/jamesgeorge007))
49+
- Luiz Victor Linhares Rocha ([@BigsonLvrocha](https://github.com/BigsonLvrocha))
50+
- Payton Burdette ([@beardedpayton](https://github.com/beardedpayton))
51+
- Thorsten Lünborg ([@LinusBorg](https://github.com/LinusBorg))
52+
- [@achretien](https://github.com/achretien)
53+
- maple ([@maple3142](https://github.com/maple3142))
54+
55+
56+
257
## 4.0.0-alpha.0 (2019-05-01)
358

459
#### :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.0",
4+
"version": "4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
25-
"@vue/cli-shared-utils": "^4.0.0-alpha.0",
24+
"@vue/babel-preset-app": "^4.0.0-alpha.1",
25+
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
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.0",
3+
"version": "4.0.0-alpha.1",
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.0",
26+
"@vue/cli-shared-utils": "^4.0.0-alpha.1",
2727
"webpack": ">=4 < 4.29",
2828
"workbox-webpack-plugin": "^4.3.1"
2929
},

0 commit comments

Comments
 (0)