Skip to content

Commit 0dbfa5a

Browse files
committed
v3.7.0
1 parent 6e6484e commit 0dbfa5a

File tree

23 files changed

+110
-72
lines changed

23 files changed

+110
-72
lines changed

CHANGELOG.md

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

2+
## 3.7.0 (2019-04-28)
3+
4+
#### :rocket: New Feature
5+
* `@vue/cli-service`
6+
* [#3861](https://github.com/vuejs/vue-cli/pull/3861) feat: add `.version` field and `assertVersion` helper to plugin api ([@sodatea](https://github.com/sodatea))
7+
* [#3847](https://github.com/vuejs/vue-cli/pull/3847) feat: add types for new `lintOnSave` options and multi-page entries ([@sodatea](https://github.com/sodatea))
8+
* [#3844](https://github.com/vuejs/vue-cli/pull/3844) feat: syntax highlight inspect output ([@Akryum](https://github.com/Akryum))
9+
* `@vue/cli-plugin-babel`, `@vue/cli-plugin-typescript`, `@vue/cli-service`
10+
* [#3864](https://github.com/vuejs/vue-cli/pull/3864) feat: allow `parallel` option to be an integer ([@sodatea](https://github.com/sodatea))
11+
* `@vue/cli`
12+
* [#3848](https://github.com/vuejs/vue-cli/pull/3848) feat: should support `bare` option in `preset.json` ([@sodatea](https://github.com/sodatea))
13+
14+
#### :bug: Bug Fix
15+
* `@vue/cli-service`
16+
* [#3865](https://github.com/vuejs/vue-cli/pull/3865) fix: should invalidate cache when lockfiles have updated ([@sodatea](https://github.com/sodatea))
17+
* `@vue/cli-plugin-unit-jest`
18+
* [#3867](https://github.com/vuejs/vue-cli/pull/3867) fix: pin jest-watch-typeahead to 0.2.1, avoid introducing jest 24 deps ([@sodatea](https://github.com/sodatea))
19+
* `@vue/cli-ui`
20+
* [#3871](https://github.com/vuejs/vue-cli/pull/3871) fix: vue-virtual-scroller should be in devDependencies as it's client-side only ([@sodatea](https://github.com/sodatea))
21+
* `@vue/cli-shared-utils`
22+
* [#3826](https://github.com/vuejs/vue-cli/pull/3826) fix: should not show error message when pnpm is not installed ([@sodatea](https://github.com/sodatea))
23+
24+
#### :house: Internal
25+
* `@vue/babel-preset-app`
26+
* [#3899](https://github.com/vuejs/vue-cli/pull/3899) fix: should not add polyfills from transform-runtime plugin ([@sodatea](https://github.com/sodatea))
27+
* `@vue/cli-service`
28+
* [#3878](https://github.com/vuejs/vue-cli/pull/3878) fix: `process` should be polyfilled rather than mocked ([@sodatea](https://github.com/sodatea))
29+
* `@vue/cli-service`, `@vue/cli-ui-addon-widgets`
30+
* [#3851](https://github.com/vuejs/vue-cli/pull/3851) Remove redundant <= IE8 rule ([@MartijnCuppens](https://github.com/MartijnCuppens))
31+
32+
#### Committers: 4
33+
- Guillaume Chau ([@Akryum](https://github.com/Akryum))
34+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
35+
- Martijn Cuppens ([@MartijnCuppens](https://github.com/MartijnCuppens))
36+
- Natalia Tepluhina ([@NataliaTepluhina](https://github.com/NataliaTepluhina))
37+
38+
39+
240
## 3.6.3 (2019-04-16)
341

442
#### :bug: Bug Fix

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": "3.6.3",
4+
"version": "3.7.0",
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": "3.6.0",
3+
"version": "3.7.0",
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": "3.6.0",
3+
"version": "3.7.0",
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": "3.6.0",
3+
"version": "3.7.0",
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": "3.6.0",
3+
"version": "3.7.0",
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.0.0",
24-
"@vue/babel-preset-app": "^3.6.0",
25-
"@vue/cli-shared-utils": "^3.6.0",
24+
"@vue/babel-preset-app": "^3.7.0",
25+
"@vue/cli-shared-utils": "^3.7.0",
2626
"babel-loader": "^8.0.5",
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": "3.6.0",
3+
"version": "3.7.0",
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": "^3.6.0",
26+
"@vue/cli-shared-utils": "^3.7.0",
2727
"cypress": "^3.2.0",
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": "3.6.0",
3+
"version": "3.7.0",
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": "^3.6.0",
26+
"@vue/cli-shared-utils": "^3.7.0",
2727
"chromedriver": "^2.46.0",
2828
"deepmerge": "^3.2.0",
2929
"execa": "^1.0.0",

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": "3.6.0",
3+
"version": "3.7.0",
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": "^3.6.0",
26+
"@vue/cli-shared-utils": "^3.7.0",
2727
"babel-eslint": "^10.0.1",
2828
"eslint-loader": "^2.1.2",
2929
"globby": "^9.2.0",

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": "3.6.0",
3+
"version": "3.7.0",
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": "^3.6.0",
26+
"@vue/cli-shared-utils": "^3.7.0",
2727
"webpack": ">=4 < 4.29",
2828
"workbox-webpack-plugin": "^3.6.3"
2929
},

0 commit comments

Comments
 (0)