Skip to content

Commit b94da37

Browse files
committed
chore: Merge branch 'dev' into master
2 parents 94f6e89 + f77b4d3 commit b94da37

File tree

54 files changed

+600
-157
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+600
-157
lines changed

CHANGELOG.md

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

2+
## 4.5.5 (2020-09-10)
3+
4+
#### :bug: Bug Fix
5+
* `@vue/cli-service`
6+
* [#5868](https://github.com/vuejs/vue-cli/pull/5868) fix: enable some syntax extensions by default for vue script compiler ([@sodatea](https://github.com/sodatea))
7+
* `@vue/cli-plugin-router`, `@vue/cli-service`
8+
* [#5852](https://github.com/vuejs/vue-cli/pull/5852) fix: fix duplicate id="app" in Vue 3 project template ([@sodatea](https://github.com/sodatea))
9+
* `@vue/cli-plugin-unit-jest`, `@vue/cli-plugin-unit-mocha`
10+
* [#5591](https://github.com/vuejs/vue-cli/pull/5591) fix(unit-jest, unit-mocha): generate passing tests when `bare` option is used with router enabled (#3544) ([@IwalkAlone](https://github.com/IwalkAlone))
11+
* `@vue/cli-plugin-pwa`
12+
* [#5820](https://github.com/vuejs/vue-cli/pull/5820) fix: allow turning off theme color tags ([@GabrielGMartinsBr](https://github.com/GabrielGMartinsBr))
13+
* `@vue/cli`
14+
* [#5827](https://github.com/vuejs/vue-cli/pull/5827) fix: fix support for Node.js v8 and deprecate it ([@sodatea](https://github.com/sodatea))
15+
* [#5823](https://github.com/vuejs/vue-cli/pull/5823) Handle GPG sign git config for initial commit ([@spenserblack](https://github.com/spenserblack))
16+
* [#5808](https://github.com/vuejs/vue-cli/pull/5808) fix: strip non-ansi characters from registry config ([@sodatea](https://github.com/sodatea))
17+
* [#5801](https://github.com/vuejs/vue-cli/pull/5801) fix: do not throw when api.render is called from an anonymous function ([@sodatea](https://github.com/sodatea))
18+
19+
#### :house: Internal
20+
* `@vue/cli-ui`
21+
* [#3687](https://github.com/vuejs/vue-cli/pull/3687) perf(ui): improve get folder list to use Promises instead of sync ([@pikax](https://github.com/pikax))
22+
23+
#### :hammer: Underlying Tools
24+
* `@vue/babel-preset-app`
25+
* [#5831](https://github.com/vuejs/vue-cli/pull/5831) chore: rename jsx package scope from ant-design-vue to vue ([@Amour1688](https://github.com/Amour1688))
26+
27+
#### Committers: 8
28+
- Booker Zhao ([@binggg](https://github.com/binggg))
29+
- Carlos Rodrigues ([@pikax](https://github.com/pikax))
30+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
31+
- Renan Cidale Assumpcao ([@rcidaleassumpo](https://github.com/rcidaleassumpo))
32+
- Sergey Skrynnikov ([@IwalkAlone](https://github.com/IwalkAlone))
33+
- Spenser Black ([@spenserblack](https://github.com/spenserblack))
34+
- [@GabrielGMartinsBr](https://github.com/GabrielGMartinsBr)
35+
- 天泽 ([@Amour1688](https://github.com/Amour1688))
36+
37+
38+
239
## 4.5.4 (2020-08-18)
340

441
#### :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": true,
4-
"version": "4.5.4",
4+
"version": "4.5.5",
55
"packages": [
66
"packages/@vue/babel-preset-app",
77
"packages/@vue/cli*",

packages/@vue/babel-preset-app/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Use this option when you have 3rd party dependencies that are not processed by B
8888

8989
- Default: `true`.
9090

91-
Set to `false` to disable JSX support. Or you can toggle [@vue/babel-preset-jsx](https://github.com/vuejs/jsx/tree/dev/packages/babel-preset-jsx) (or [@ant-design-vue/babel-plugin-jsx](https://github.com/vueComponent/jsx) for Vue 3 projects) features here.
91+
Set to `false` to disable JSX support. Or you can toggle [@vue/babel-preset-jsx](https://github.com/vuejs/jsx/tree/dev/packages/babel-preset-jsx) (or [@vue/babel-plugin-jsx](https://github.com/vuejs/jsx-next) for Vue 3 projects) features here.
9292

9393
### loose
9494

packages/@vue/babel-preset-app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ module.exports = (context, options = {}) => {
126126
if (vueVersion === 2) {
127127
presets.push([require('@vue/babel-preset-jsx'), jsxOptions])
128128
} else if (vueVersion === 3) {
129-
plugins.push([require('@ant-design-vue/babel-plugin-jsx'), jsxOptions])
129+
plugins.push([require('@vue/babel-plugin-jsx'), jsxOptions])
130130
}
131131
}
132132

packages/@vue/babel-preset-app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/babel-preset-app",
3-
"version": "4.5.4",
3+
"version": "4.5.5",
44
"description": "babel-preset-app for vue-cli",
55
"main": "index.js",
66
"publishConfig": {
@@ -22,7 +22,6 @@
2222
},
2323
"homepage": "https://github.com/vuejs/vue-cli/tree/dev/packages/@vue/babel-preset-app#readme",
2424
"dependencies": {
25-
"@ant-design-vue/babel-plugin-jsx": "^1.0.0-0",
2625
"@babel/core": "^7.11.0",
2726
"@babel/helper-compilation-targets": "^7.9.6",
2827
"@babel/helper-module-imports": "^7.8.3",
@@ -33,6 +32,7 @@
3332
"@babel/plugin-transform-runtime": "^7.11.0",
3433
"@babel/preset-env": "^7.11.0",
3534
"@babel/runtime": "^7.11.0",
35+
"@vue/babel-plugin-jsx": "^1.0.0-0",
3636
"@vue/babel-preset-jsx": "^1.1.2",
3737
"babel-plugin-dynamic-import-node": "^2.3.3",
3838
"core-js": "^3.6.5",

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.5.4",
3+
"version": "4.5.5",
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.5.4",
3+
"version": "4.5.5",
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.5.4",
3+
"version": "4.5.5",
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.11.0",
24-
"@vue/babel-preset-app": "^4.5.4",
25-
"@vue/cli-shared-utils": "^4.5.4",
24+
"@vue/babel-preset-app": "^4.5.5",
25+
"@vue/cli-shared-utils": "^4.5.5",
2626
"babel-loader": "^8.1.0",
2727
"cache-loader": "^4.1.0",
2828
"thread-loader": "^2.1.3",

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.5.4",
3+
"version": "4.5.5",
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.5.4",
26+
"@vue/cli-shared-utils": "^4.5.5",
2727
"cypress": "^3.8.3",
2828
"eslint-plugin-cypress": "^2.10.3"
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.5.4",
3+
"version": "4.5.5",
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.5.4",
26+
"@vue/cli-shared-utils": "^4.5.5",
2727
"deepmerge": "^4.2.2",
2828
"nightwatch": "^1.3.5"
2929
},

0 commit comments

Comments
 (0)