Skip to content

Commit 48d6afd

Browse files
committed
v5.0.0-alpha.2
1 parent 60c0004 commit 48d6afd

File tree

25 files changed

+102
-58
lines changed

25 files changed

+102
-58
lines changed

CHANGELOG.md

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

2+
## 5.0.0-alpha.2 (2021-01-06)
3+
4+
#### :rocket: New Features
5+
* `@vue/cli`
6+
* [#5537](https://github.com/vuejs/vue-cli/pull/5537) feat(cli): make globby includes dot files ([@fxxjdedd](https://github.com/fxxjdedd))
7+
8+
#### :bug: Bug Fix
9+
* `@vue/cli-plugin-pwa`
10+
* [#5327](https://github.com/vuejs/vue-cli/pull/5327) fix pwa installability when using noopServiceWorker "Page does not work offline" ([@kubenstein](https://github.com/kubenstein))
11+
* `@vue/cli-plugin-unit-mocha`
12+
* [#6186](https://github.com/vuejs/vue-cli/pull/6186) fix(mocha): workaround the ShadowRoot issue in Vue 3.0.5 ([@sodatea](https://github.com/sodatea))
13+
* `@vue/cli-service`
14+
* [#6162](https://github.com/vuejs/vue-cli/pull/6162) fix(cli-service): restrict request headers of historyApiFallback in WebpackDevServer ([@githoniel](https://github.com/githoniel))
15+
* `@vue/cli-plugin-unit-jest`
16+
* [#6170](https://github.com/vuejs/vue-cli/pull/6170) fix: add missing jest-transform-stub media types (#6169) ([@raineorshine](https://github.com/raineorshine))
17+
* `@vue/cli`
18+
* [#6011](https://github.com/vuejs/vue-cli/pull/6011) fix(generator): avoid doing redundant write operations ([@fangbinwei](https://github.com/fangbinwei))
19+
20+
#### :memo: Documentation
21+
* [#6176](https://github.com/vuejs/vue-cli/pull/6176) Fixed some typos on deployment.md ([@black-fyre](https://github.com/black-fyre))
22+
* [#5927](https://github.com/vuejs/vue-cli/pull/5927) Update skip plugins section of cli-service ([@markjszy](https://github.com/markjszy))
23+
* [#6093](https://github.com/vuejs/vue-cli/pull/6093) Easier Netlify setup ([@mauriciabad](https://github.com/mauriciabad))
24+
* [#6050](https://github.com/vuejs/vue-cli/pull/6050) mode-and-env doc need be updated ([@theniceangel](https://github.com/theniceangel))
25+
* [#6050](https://github.com/vuejs/vue-cli/pull/6050) mode-and-env doc need be updated ([@theniceangel](https://github.com/theniceangel))
26+
27+
#### :house: Internal
28+
* `@vue/cli-plugin-eslint`, `@vue/cli-plugin-typescript`, `@vue/cli-plugin-unit-jest`, `@vue/cli-service`, `@vue/cli-test-utils`, `@vue/cli-ui`, `@vue/cli`
29+
* [#6152](https://github.com/vuejs/vue-cli/pull/6152) chore: some trivial dependency version bumps ([@sodatea](https://github.com/sodatea))
30+
31+
#### Committers: 11
32+
- Binwei Fang ([@fangbinwei](https://github.com/fangbinwei))
33+
- Cédric Exbrayat ([@cexbrayat](https://github.com/cexbrayat))
34+
- Dahunsi Fehintoluwa ([@black-fyre](https://github.com/black-fyre))
35+
- Githoniel ([@githoniel](https://github.com/githoniel))
36+
- Haoqun Jiang ([@sodatea](https://github.com/sodatea))
37+
- Jakub Niewczas ([@kubenstein](https://github.com/kubenstein))
38+
- JiZhi ([@theniceangel](https://github.com/theniceangel))
39+
- Mark Szymanski ([@markjszy](https://github.com/markjszy))
40+
- Maurici Abad Gutierrez ([@mauriciabad](https://github.com/mauriciabad))
41+
- Raine Revere ([@raineorshine](https://github.com/raineorshine))
42+
- fxxjdedd ([@fxxjdedd](https://github.com/fxxjdedd))
43+
44+
45+
246
## 5.0.0-alpha.1 (2021-01-06)
347

448
#### :memo: Documentation

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": "5.0.0-alpha.1",
4+
"version": "5.0.0-alpha.2",
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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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.12.10",
24-
"@vue/babel-preset-app": "^5.0.0-alpha.1",
25-
"@vue/cli-shared-utils": "^5.0.0-alpha.1",
24+
"@vue/babel-preset-app": "^5.0.0-alpha.2",
25+
"@vue/cli-shared-utils": "^5.0.0-alpha.2",
2626
"babel-loader": "^8.2.2",
2727
"thread-loader": "^3.0.0",
2828
"webpack": "^5.10.0"

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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "^5.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^5.0.0-alpha.2",
2727
"cypress": "^6.1.0",
2828
"eslint-plugin-cypress": "^2.11.2"
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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "^5.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^5.0.0-alpha.2",
2727
"deepmerge": "^4.2.2",
2828
"nightwatch": "^1.4.1"
2929
},

packages/@vue/cli-plugin-e2e-webdriverio/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-webdriverio",
3-
"version": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
44
"description": "e2e-webdriverio plugin for vue-cli",
55
"main": "index.js",
66
"repository": {
@@ -26,7 +26,7 @@
2626
},
2727
"dependencies": {
2828
"@types/mocha": "^8.0.4",
29-
"@vue/cli-shared-utils": "^5.0.0-alpha.1",
29+
"@vue/cli-shared-utils": "^5.0.0-alpha.2",
3030
"@wdio/cli": "^6.10.5",
3131
"@wdio/local-runner": "^6.10.5",
3232
"@wdio/mocha-framework": "^6.10.4",

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": "5.0.0-alpha.1",
3+
"version": "5.0.0-alpha.2",
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": "^5.0.0-alpha.1",
26+
"@vue/cli-shared-utils": "^5.0.0-alpha.2",
2727
"eslint-webpack-plugin": "^2.4.1",
2828
"globby": "^11.0.1",
2929
"inquirer": "^7.1.0",

0 commit comments

Comments
 (0)