Skip to content

Commit 1bb1271

Browse files
committed
release: v3.0.0-alpha.1
1 parent cee5363 commit 1bb1271

File tree

14 files changed

+45
-22
lines changed

14 files changed

+45
-22
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# [3.0.0-alpha.1](https://github.com/vuejs/vue-next/compare/v3.0.0-alpha.0...v3.0.0-alpha.1) (2020-01-02)
2+
3+
4+
### Bug Fixes
5+
6+
* **runtime-core:** pass options to plugins ([#561](https://github.com/vuejs/vue-next/issues/561)) ([4d20981](https://github.com/vuejs/vue-next/commit/4d20981eb069b20e1627916b977aedb2d68eca86))
7+
* **sfc:** treat custom block content as raw text ([d6275a3](https://github.com/vuejs/vue-next/commit/d6275a3c310e6e9426f897afe35ff6cdb125c023))
8+
* mounting new children ([7d436ab](https://github.com/vuejs/vue-next/commit/7d436ab59a30562a049e199ae579df7ac8066829))
9+
* **core:** clone mounted hoisted vnodes on patch ([47a6a84](https://github.com/vuejs/vue-next/commit/47a6a846311203fa59584486265f5da387afa51d))
10+
* **fragment:** perform direct remove when removing fragments ([2fdb499](https://github.com/vuejs/vue-next/commit/2fdb499bd96b4d1a8a7a1964d59e8dc5dacd9d22))
11+
12+
13+
### Features
14+
15+
* **hmr:** root instance reload ([eda495e](https://github.com/vuejs/vue-next/commit/eda495efd824f17095728a4d2a6db85ca874e5ca))
16+
17+
18+
### Performance Improvements
19+
20+
* **compiler-core:** simplify `advancePositionWithMutation` ([#564](https://github.com/vuejs/vue-next/issues/564)) ([ad2a0bd](https://github.com/vuejs/vue-next/commit/ad2a0bde988de743d4abc62b681b6a4888545a51))
21+
22+
23+
124
# [3.0.0-alpha.0](https://github.com/vuejs/vue-next/compare/a8522cf48c09efbb2063f129cf1bea0dae09f10a...v3.0.0-alpha.0) (2019-12-20)
225

326
For changes between 2.x and 3.0 up to this release, please refer to merged RFCs [here](https://github.com/vuejs/rfcs/pulls?q=is%3Apr+is%3Amerged+label%3A3.x).

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"workspaces": [
55
"packages/*"
66
],

packages/compiler-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",

packages/compiler-dom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -34,6 +34,6 @@
3434
},
3535
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-dom#readme",
3636
"dependencies": {
37-
"@vue/compiler-core": "3.0.0-alpha.0"
37+
"@vue/compiler-core": "3.0.0-alpha.1"
3838
}
3939
}

packages/compiler-sfc/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"types": "dist/compiler-sfc.d.ts",
@@ -27,11 +27,11 @@
2727
},
2828
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/compiler-sfc#readme",
2929
"peerDependencies": {
30-
"vue": "3.0.0-alpha.0"
30+
"vue": "3.0.0-alpha.1"
3131
},
3232
"dependencies": {
33-
"@vue/compiler-core": "3.0.0-alpha.0",
34-
"@vue/compiler-dom": "3.0.0-alpha.0",
33+
"@vue/compiler-core": "3.0.0-alpha.1",
34+
"@vue/compiler-dom": "3.0.0-alpha.1",
3535
"consolidate": "^0.15.1",
3636
"hash-sum": "^2.0.0",
3737
"lru-cache": "^5.1.1",

packages/reactivity/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",

packages/runtime-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -31,6 +31,6 @@
3131
},
3232
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/runtime-core#readme",
3333
"dependencies": {
34-
"@vue/reactivity": "3.0.0-alpha.0"
34+
"@vue/reactivity": "3.0.0-alpha.1"
3535
}
3636
}

packages/runtime-dom/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-dom",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -37,6 +37,6 @@
3737
},
3838
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/runtime-dom#readme",
3939
"dependencies": {
40-
"@vue/runtime-core": "3.0.0-alpha.0"
40+
"@vue/runtime-core": "3.0.0-alpha.1"
4141
}
4242
}

packages/runtime-test/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-test",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -30,6 +30,6 @@
3030
},
3131
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/runtime-test#readme",
3232
"dependencies": {
33-
"@vue/runtime-core": "3.0.0-alpha.0"
33+
"@vue/runtime-core": "3.0.0-alpha.1"
3434
}
3535
}

packages/server-renderer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/server-renderer",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"types": "dist/server-renderer.d.ts",

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"name": "@vue/shared",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"private": true
55
}

packages/size-check/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/size-check",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"private": true,
55
"buildOptions": {
66
"name": "Vue",

packages/template-explorer/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/template-explorer",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.0.0-alpha.0",
3+
"version": "3.0.0-alpha.1",
44
"description": "vue",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -34,8 +34,8 @@
3434
},
3535
"homepage": "https://github.com/vuejs/vue/tree/dev/packages/vue#readme",
3636
"dependencies": {
37-
"@vue/compiler-dom": "3.0.0-alpha.0",
38-
"@vue/runtime-dom": "3.0.0-alpha.0"
37+
"@vue/compiler-dom": "3.0.0-alpha.1",
38+
"@vue/runtime-dom": "3.0.0-alpha.1"
3939
},
4040
"devDependencies": {
4141
"lodash": "^4.17.15",

0 commit comments

Comments
 (0)