Skip to content

Commit 5cce80c

Browse files
committed
v4.0.0-rc.8
1 parent 3fcff02 commit 5cce80c

File tree

25 files changed

+95
-59
lines changed

25 files changed

+95
-59
lines changed

CHANGELOG.md

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

2+
## 4.0.0-rc.8 (2019-10-11)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli`
6+
* [#3926](https://github.com/vuejs/vue-cli/pull/3926) chore: better upgrade messages ([@phanan](https://github.com/phanan))
7+
* `@vue/babel-preset-app`, `@vue/cli-plugin-unit-jest`, `@vue/cli-plugin-unit-mocha`
8+
* [#4663](https://github.com/vuejs/vue-cli/pull/4663) feat(babel-preset): set target to node whenever NODE_ENV === 'test' ([@sodatea](https://github.com/sodatea))
9+
* `@vue/cli-plugin-pwa`
10+
* [#4664](https://github.com/vuejs/vue-cli/pull/4664) feat(pwa): improve compatibility with v3 plugin usage ([@sodatea](https://github.com/sodatea))
11+
* `@vue/cli-service`
12+
* [#4641](https://github.com/vuejs/vue-cli/pull/4641) feat: make the minimizer config available in all modes ([@sodatea](https://github.com/sodatea))
13+
* [#4644](https://github.com/vuejs/vue-cli/pull/4644) feat: add webdriver log files to gitignore ([@sodatea](https://github.com/sodatea))
14+
15+
#### :boom: Breaking Changes
16+
* `@vue/cli-service`
17+
* [#4676](https://github.com/vuejs/vue-cli/pull/4676) chore!: upgrade terser-webpack-plugin to 2.x ([@sodatea](https://github.com/sodatea))
18+
* [#4673](https://github.com/vuejs/vue-cli/pull/4673) refactor!: use DefinePlugin (again) instead of EnvironmentPlugin ([@sodatea](https://github.com/sodatea))
19+
20+
#### :bug: Bug Fix
21+
* `@vue/cli-service`
22+
* [#4666](https://github.com/vuejs/vue-cli/pull/4666) fix: fix redundant log messages from webpack-dev-server ([@sodatea](https://github.com/sodatea))
23+
24+
#### :house: Internal
25+
* `@vue/cli-service`
26+
* [#4673](https://github.com/vuejs/vue-cli/pull/4673) refactor!: use DefinePlugin (again) instead of EnvironmentPlugin ([@sodatea](https://github.com/sodatea))
27+
28+
#### :hammer: Underlying Tools
29+
* `@vue/cli-service`
30+
* [#4676](https://github.com/vuejs/vue-cli/pull/4676) chore!: upgrade terser-webpack-plugin to 2.x ([@sodatea](https://github.com/sodatea))
31+
32+
#### Committers: 2
33+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
34+
- Phan An ([@phanan](https://github.com/phanan))
35+
36+
37+
238
## 4.0.0-rc.7 (2019-10-01)
339

440
#### :bug: Bug Fix

docs/core-plugins/unit-mocha.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- **`vue-cli-service test:unit`**
88

9-
Run unit tests with [mocha-webpack](https://github.com/zinserjan/mocha-webpack) + [chai](http://chaijs.com/).
9+
Run unit tests with [mochapack](https://github.com/sysgears/mochapack) + [chai](http://chaijs.com/).
1010

1111
**Note the tests are run inside Node.js with browser environment simulated with JSDOM.**
1212

@@ -27,7 +27,7 @@
2727

2828
Default files matches are: any files in `tests/unit` that end in `.spec.(ts|js)`.
2929

30-
All [mocha-webpack command line options](http://zinserjan.github.io/mocha-webpack/docs/installation/cli-usage.html) are also supported.
30+
All [mochapack command line options](https://sysgears.github.io/mochapack/docs/installation/cli-usage.html) are also supported.
3131

3232
## Installing in an Already Created Project
3333

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-rc.7",
4+
"version": "4.0.0-rc.8",
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
25-
"@vue/cli-shared-utils": "^4.0.0-rc.7",
24+
"@vue/babel-preset-app": "^4.0.0-rc.8",
25+
"@vue/cli-shared-utils": "^4.0.0-rc.8",
2626
"babel-loader": "^8.0.6",
2727
"webpack": "^4.0.0"
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
26+
"@vue/cli-shared-utils": "^4.0.0-rc.8",
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-rc.7",
3+
"version": "4.0.0-rc.8",
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-rc.7",
26+
"@vue/cli-shared-utils": "^4.0.0-rc.8",
2727
"deepmerge": "^3.2.0",
2828
"execa": "^1.0.0",
2929
"nightwatch": "^1.2.2"

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

0 commit comments

Comments
 (0)