Skip to content

Commit f9a9880

Browse files
committed
v4.0.0-beta.3
1 parent 14bd985 commit f9a9880

File tree

24 files changed

+98
-57
lines changed

24 files changed

+98
-57
lines changed

CHANGELOG.md

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

2+
## 4.0.0-beta.3 (2019-08-08)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli`
6+
* [#4404](https://github.com/vuejs/vue-cli/pull/4404) feat: add `--next` flag to `vue upgrade` to check for beta versions ([@sodatea](https://github.com/sodatea))
7+
* [#4404](https://github.com/vuejs/vue-cli/pull/4404) feat: add `--next` flag to `vue upgrade` to check for beta versions ([@sodatea](https://github.com/sodatea))
8+
* `@vue/cli-service`
9+
* [#4387](https://github.com/vuejs/vue-cli/pull/4387) feat!: deprecate `css.modules` in favor of `css.requireModuleExtension` ([@sodatea](https://github.com/sodatea))
10+
* [#4386](https://github.com/vuejs/vue-cli/pull/4386) feat: allow configuring scss options separately from sass ([@sodatea](https://github.com/sodatea))
11+
12+
#### :boom: Breaking Changes
13+
* `@vue/cli-service`
14+
* [#4387](https://github.com/vuejs/vue-cli/pull/4387) feat!: deprecate `css.modules` in favor of `css.requireModuleExtension` ([@sodatea](https://github.com/sodatea))
15+
* `@vue/cli-service`, `@vue/cli-ui`
16+
* [#4388](https://github.com/vuejs/vue-cli/pull/4388) chore!: remove the already-deprecated `baseUrl` option ([@sodatea](https://github.com/sodatea))
17+
* `@vue/cli-plugin-e2e-cypress`
18+
* [#3774](https://github.com/vuejs/vue-cli/pull/3774) chore: remove support for legacy `vue-cli-service e2e` command ([@sodatea](https://github.com/sodatea))
19+
20+
#### :bug: Bug Fix
21+
* `@vue/cli-shared-utils`
22+
* [#4405](https://github.com/vuejs/vue-cli/pull/4405) fix: `resolvePluginId` should correctly resolve `@vue/cli-service` ([@sodatea](https://github.com/sodatea))
23+
* `@vue/cli-plugin-typescript`, `@vue/cli`
24+
* [#4374](https://github.com/vuejs/vue-cli/pull/4374) fix: do not generate empty file when adding ts plugin without router ([@cexbrayat](https://github.com/cexbrayat))
25+
* `@vue/cli`
26+
* [#4377](https://github.com/vuejs/vue-cli/pull/4377) fix: Make sure afterInvoke hook doesn't get run from other plugins ([@pksunkara](https://github.com/pksunkara))
27+
28+
#### :memo: Documentation
29+
* [#4395](https://github.com/vuejs/vue-cli/pull/4395) docs: update Now deployment guide ([@kidonng](https://github.com/kidonng))
30+
31+
#### :house: Internal
32+
* `@vue/cli-plugin-e2e-cypress`, `@vue/cli-plugin-e2e-nightwatch`, `@vue/cli-plugin-eslint`, `@vue/cli-plugin-pwa`, `@vue/cli-plugin-typescript`, `@vue/cli-service-global`, `@vue/cli-service`, `@vue/cli-shared-utils`, `@vue/cli-test-utils`, `@vue/cli`
33+
* [#4385](https://github.com/vuejs/vue-cli/pull/4385) style: add a "no-shadow" linter rule ([@sodatea](https://github.com/sodatea))
34+
35+
#### Committers: 4
36+
- Cédric Exbrayat ([@cexbrayat](https://github.com/cexbrayat))
37+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
38+
- Kid ([@kidonng](https://github.com/kidonng))
39+
- Pavan Kumar Sunkara ([@pksunkara](https://github.com/pksunkara))
40+
41+
42+
243
## 4.0.0-beta.2 (2019-07-29)
344

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

0 commit comments

Comments
 (0)