Skip to content

Commit bd6e211

Browse files
committed
release: v3.0.3
1 parent ccd4d40 commit bd6e211

File tree

15 files changed

+68
-37
lines changed

15 files changed

+68
-37
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,34 @@
1+
## [3.0.3](https://github.com/vuejs/vue-next/compare/v3.0.2...v3.0.3) (2020-11-25)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-core/compiler-sfc:** handle destructure assignment expressions ([4c6078c](https://github.com/vuejs/vue-next/commit/4c6078ce25226ab9e10ec4eba5c745058f670b3d))
7+
* **compiler-sfc:** fix script setup ts helpers ([6e3abc8](https://github.com/vuejs/vue-next/commit/6e3abc86058f967bcf6fad94c62572989d4dbcbc))
8+
* **hmr:** fix updates for imported but not yet rendered components ([9c23ddf](https://github.com/vuejs/vue-next/commit/9c23ddf9c593dcf6d20bc911ec95d9b674f23dc8))
9+
* **runtime-core:** components with static props and slots should not be force updated ([51e43e0](https://github.com/vuejs/vue-next/commit/51e43e07998eeade153c42a9a9b3eda8fe885c88))
10+
* **runtime-core:** ensure scheduler queue is always non-null ([#2567](https://github.com/vuejs/vue-next/issues/2567)) ([af95604](https://github.com/vuejs/vue-next/commit/af9560455d9719a4c5f0d6588d04bfb4c06c8654))
11+
* **runtime-dom:** use correct import source ([f28ca55](https://github.com/vuejs/vue-next/commit/f28ca556925147bb109d5ba77c5dafaf17d57322))
12+
* **style-vars:** apply css vars in post flush effect ([3a6b120](https://github.com/vuejs/vue-next/commit/3a6b1207fa39cb35eed5bae0b5fdcdb465926bca))
13+
* handle case of ref declaration without initial value ([8485cd4](https://github.com/vuejs/vue-next/commit/8485cd48437bf47880a61b03c57090e8bfdf527b))
14+
* **types:** ensure correct type for toRef and toRefs on existing refs ([8e20375](https://github.com/vuejs/vue-next/commit/8e2037537219219d5ab6456e8a29bd0235eac311))
15+
16+
17+
### Features
18+
19+
* **compiler-sfc:** compileScript inline render function mode ([886ed76](https://github.com/vuejs/vue-next/commit/886ed7681dd203c07ff3b504538328f43e14d9b0))
20+
* **compiler-sfc:** new script setup implementation ([556560f](https://github.com/vuejs/vue-next/commit/556560fae31d9e406cfae656089657b6332686c1))
21+
* **compiler-sfc:** new SFC css varaible injection implementation ([41bb7fa](https://github.com/vuejs/vue-next/commit/41bb7fa330e78c4a354a2e67742bd13bee2f4293))
22+
* **compiler-sfc:** support kebab-case components in `<script setup>` sfc template ([3f99e23](https://github.com/vuejs/vue-next/commit/3f99e239e03a8861c462d4ee91feb82066ab3e28))
23+
* **runtime-core:** explicit expose API ([0e59770](https://github.com/vuejs/vue-next/commit/0e59770b9282992f6a5af4d8fef33dafb948fc8b))
24+
25+
26+
### Reverts
27+
28+
* Revert "wip: allow scriptCompiled to be cached on sfc descriptor" ([9db4288](https://github.com/vuejs/vue-next/commit/9db42889e65a0e80cdbae5c19d76dab4f9fadb6d))
29+
30+
31+
132
## [3.0.2](https://github.com/vuejs/vue-next/compare/v3.0.1...v3.0.2) (2020-10-20)
233

334

package.json

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

packages/compiler-core/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-core",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
34+
"@vue/shared": "3.0.3",
3535
"@babel/parser": "^7.12.0",
3636
"@babel/types": "^7.12.0",
3737
"estree-walker": "^2.0.1",

packages/compiler-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-dom",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
40-
"@vue/compiler-core": "3.0.2"
39+
"@vue/shared": "3.0.3",
40+
"@vue/compiler-core": "3.0.3"
4141
}
4242
}

packages/compiler-sfc/package.json

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

packages/compiler-ssr/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compiler-ssr",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
32-
"@vue/compiler-dom": "3.0.2"
31+
"@vue/shared": "3.0.3",
32+
"@vue/compiler-dom": "3.0.3"
3333
}
3434
}

packages/reactivity/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2"
39+
"@vue/shared": "3.0.3"
4040
}
4141
}

packages/runtime-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-core",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
36-
"@vue/reactivity": "3.0.2"
35+
"@vue/shared": "3.0.3",
36+
"@vue/reactivity": "3.0.3"
3737
}
3838
}

packages/runtime-dom/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-dom",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
39-
"@vue/runtime-core": "3.0.2",
38+
"@vue/shared": "3.0.3",
39+
"@vue/runtime-core": "3.0.3",
4040
"csstype": "^2.6.8"
4141
}
4242
}

packages/runtime-test/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/runtime-test",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
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.2",
29-
"@vue/runtime-core": "3.0.2"
28+
"@vue/shared": "3.0.3",
29+
"@vue/runtime-core": "3.0.3"
3030
}
3131
}

packages/server-renderer/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/server-renderer",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"types": "dist/server-renderer.d.ts",
@@ -28,10 +28,10 @@
2828
},
2929
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/server-renderer#readme",
3030
"peerDependencies": {
31-
"vue": "3.0.2"
31+
"vue": "3.0.3"
3232
},
3333
"dependencies": {
34-
"@vue/shared": "3.0.2",
35-
"@vue/compiler-ssr": "3.0.2"
34+
"@vue/shared": "3.0.3",
35+
"@vue/compiler-ssr": "3.0.3"
3636
}
3737
}

packages/shared/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/shared",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "internal utils shared across @vue packages",
55
"main": "index.js",
66
"module": "dist/shared.esm-bundler.js",

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.2",
3+
"version": "3.0.3",
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.2",
3+
"version": "3.0.3",
44
"private": true,
55
"buildOptions": {
66
"formats": [

packages/vue/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"description": "vue",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -37,9 +37,9 @@
3737
},
3838
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/vue#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.0.2",
41-
"@vue/compiler-dom": "3.0.2",
42-
"@vue/runtime-dom": "3.0.2"
40+
"@vue/shared": "3.0.3",
41+
"@vue/compiler-dom": "3.0.3",
42+
"@vue/runtime-dom": "3.0.3"
4343
},
4444
"devDependencies": {
4545
"lodash": "^4.17.15",

0 commit comments

Comments
 (0)