Skip to content

Commit f2d03a5

Browse files
committed
release: v3.0.2
1 parent 1f2a652 commit f2d03a5

File tree

15 files changed

+61
-37
lines changed

15 files changed

+61
-37
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## [3.0.2](https://github.com/vuejs/vue-next/compare/v3.0.1...v3.0.2) (2020-10-20)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler:** stringify values on v-text ([#2432](https://github.com/vuejs/vue-next/issues/2432)) ([314ab2c](https://github.com/vuejs/vue-next/commit/314ab2c7c5dec56d9b117ac3bb988f19d92cf126)), closes [#2430](https://github.com/vuejs/vue-next/issues/2430)
7+
* **compiler-core:** fix multiline member expression check ([#2436](https://github.com/vuejs/vue-next/issues/2436)) ([6d2a1cb](https://github.com/vuejs/vue-next/commit/6d2a1cb64d090c482ed2cde7311f81b33e0f8d90)), closes [#2426](https://github.com/vuejs/vue-next/issues/2426)
8+
* **reactivity:** track length on for in iteration on Array ([0e5a3c4](https://github.com/vuejs/vue-next/commit/0e5a3c47a7398dfd0107fccf9b615772dd01aa74)), closes [#2427](https://github.com/vuejs/vue-next/issues/2427)
9+
* **runtime-core:** avoid mutating EMPTY_ARR when setting dev root ([#2419](https://github.com/vuejs/vue-next/issues/2419)) ([edd49dc](https://github.com/vuejs/vue-next/commit/edd49dcab40eb3faa44248772b176d5eebfd30fe)), closes [#2413](https://github.com/vuejs/vue-next/issues/2413)
10+
* **runtime-core:** avoid object prototype keys in property access cache ([#2416](https://github.com/vuejs/vue-next/issues/2416)) ([ba881f9](https://github.com/vuejs/vue-next/commit/ba881f9190510c613f04950b69d78f6af1a90e06))
11+
* **runtime-core:** fix component .once listener logic ([4bbb2b2](https://github.com/vuejs/vue-next/commit/4bbb2b2ee6866ed80cb542c2ff24207b4bd09bda))
12+
* **runtime-core:** non-stable Fragment should always unmount its children ([#2445](https://github.com/vuejs/vue-next/issues/2445)) ([fff62e2](https://github.com/vuejs/vue-next/commit/fff62e2ee8accf31bb5ac5abdb4c0636216cfd0e)), closes [#2444](https://github.com/vuejs/vue-next/issues/2444)
13+
* **runtime-core:** prevent self-injection ([#2424](https://github.com/vuejs/vue-next/issues/2424)) ([111d04f](https://github.com/vuejs/vue-next/commit/111d04f119a2b2d0b1a1790a063b152c17787943)), closes [#2400](https://github.com/vuejs/vue-next/issues/2400)
14+
* **suspense:** fix suspense nested child updates in template mode ([0227b4a](https://github.com/vuejs/vue-next/commit/0227b4a697afd598f6fa279a1a7ce84242e68f43)), closes [#2214](https://github.com/vuejs/vue-next/issues/2214)
15+
* **types:** h support for resolveComponent ([#2402](https://github.com/vuejs/vue-next/issues/2402)) ([1f2a652](https://github.com/vuejs/vue-next/commit/1f2a652a9d2e3bec472fb1786a4c16d6ccfa1fb1)), closes [#2357](https://github.com/vuejs/vue-next/issues/2357)
16+
* **v-model:** built in modifiers support on component ([#2348](https://github.com/vuejs/vue-next/issues/2348)) ([128ec46](https://github.com/vuejs/vue-next/commit/128ec460ec00ca8672352d019b264c80dfd0c3b0)), closes [#2326](https://github.com/vuejs/vue-next/issues/2326)
17+
18+
19+
### Features
20+
21+
* **compile-core:** handle falsy dynamic args for v-on and v-bind ([#2393](https://github.com/vuejs/vue-next/issues/2393)) ([052a621](https://github.com/vuejs/vue-next/commit/052a621762c5f7c420464747ebbbed27c7350593)), closes [#2388](https://github.com/vuejs/vue-next/issues/2388)
22+
23+
24+
125
## [3.0.1](https://github.com/vuejs/vue-next/compare/v3.0.0...v3.0.1) (2020-10-15)
226

327

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"workspaces": [
55
"packages/*"
66
],

packages/compiler-core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -31,7 +31,7 @@
3131
},
3232
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-core#readme",
3333
"dependencies": {
34-
"@vue/shared": "3.0.1",
34+
"@vue/shared": "3.0.2",
3535
"@babel/parser": "^7.12.0",
3636
"@babel/types": "^7.12.0",
3737
"estree-walker": "^2.0.1",

packages/compiler-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -36,7 +36,7 @@
3636
},
3737
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-dom#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.0.1",
40-
"@vue/compiler-core": "3.0.1"
39+
"@vue/shared": "3.0.2",
40+
"@vue/compiler-core": "3.0.2"
4141
}
4242
}

packages/compiler-sfc/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-sfc",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"types": "dist/compiler-sfc.d.ts",
@@ -32,15 +32,15 @@
3232
},
3333
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-sfc#readme",
3434
"peerDependencies": {
35-
"vue": "3.0.1"
35+
"vue": "3.0.2"
3636
},
3737
"dependencies": {
3838
"@babel/parser": "^7.12.0",
3939
"@babel/types": "^7.12.0",
40-
"@vue/compiler-core": "3.0.1",
41-
"@vue/compiler-dom": "3.0.1",
42-
"@vue/compiler-ssr": "3.0.1",
43-
"@vue/shared": "3.0.1",
40+
"@vue/compiler-core": "3.0.2",
41+
"@vue/compiler-dom": "3.0.2",
42+
"@vue/compiler-ssr": "3.0.2",
43+
"@vue/shared": "3.0.2",
4444
"consolidate": "^0.16.0",
4545
"estree-walker": "^2.0.1",
4646
"hash-sum": "^2.0.0",

packages/compiler-ssr/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/compiler-ssr",
55
"main": "dist/compiler-ssr.cjs.js",
66
"types": "dist/compiler-ssr.d.ts",
@@ -28,7 +28,7 @@
2828
},
2929
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/compiler-ssr#readme",
3030
"dependencies": {
31-
"@vue/shared": "3.0.1",
32-
"@vue/compiler-dom": "3.0.1"
31+
"@vue/shared": "3.0.2",
32+
"@vue/compiler-dom": "3.0.2"
3333
}
3434
}

packages/reactivity/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/reactivity",
55
"main": "index.js",
66
"module": "dist/reactivity.esm-bundler.js",
@@ -36,6 +36,6 @@
3636
},
3737
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/reactivity#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.0.1"
39+
"@vue/shared": "3.0.2"
4040
}
4141
}

packages/runtime-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/runtime-core",
55
"main": "index.js",
66
"module": "dist/runtime-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.0.1",
36-
"@vue/reactivity": "3.0.1"
35+
"@vue/shared": "3.0.2",
36+
"@vue/reactivity": "3.0.2"
3737
}
3838
}

packages/runtime-dom/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-dom",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/runtime-dom",
55
"main": "index.js",
66
"module": "dist/runtime-dom.esm-bundler.js",
@@ -35,8 +35,8 @@
3535
},
3636
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-dom#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.0.1",
39-
"@vue/runtime-core": "3.0.1",
38+
"@vue/shared": "3.0.2",
39+
"@vue/runtime-core": "3.0.2",
4040
"csstype": "^2.6.8"
4141
}
4242
}

packages/runtime-test/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-test",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/runtime-test#readme",
2727
"dependencies": {
28-
"@vue/shared": "3.0.1",
29-
"@vue/runtime-core": "3.0.1"
28+
"@vue/shared": "3.0.2",
29+
"@vue/runtime-core": "3.0.2"
3030
}
3131
}

0 commit comments

Comments
 (0)