Skip to content

Commit 2e96b39

Browse files
authored
Merge branch 'main' into main
2 parents ee73fc7 + 1789c1c commit 2e96b39

File tree

20 files changed

+93
-74
lines changed

20 files changed

+93
-74
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## [3.3.7](https://github.com/vuejs/core/compare/v3.3.6...v3.3.7) (2023-10-24)
2+
3+
4+
### Bug Fixes
5+
6+
* **compiler-sfc:** avoid gen useCssVars when targeting SSR ([#6979](https://github.com/vuejs/core/issues/6979)) ([c568778](https://github.com/vuejs/core/commit/c568778ea3265d8e57f788b00864c9509bf88a4e)), closes [#6926](https://github.com/vuejs/core/issues/6926)
7+
* **compiler-ssr:** proper scope analysis for ssr vnode slot fallback ([#7184](https://github.com/vuejs/core/issues/7184)) ([e09c26b](https://github.com/vuejs/core/commit/e09c26bc9bc4394c2c2d928806d382515c2676f3)), closes [#7095](https://github.com/vuejs/core/issues/7095)
8+
* correctly resolve types from relative paths on Windows ([#9446](https://github.com/vuejs/core/issues/9446)) ([089d36d](https://github.com/vuejs/core/commit/089d36d167dc7834065b03ca689f9b6a44eead8a)), closes [#8671](https://github.com/vuejs/core/issues/8671)
9+
* **hmr:** fix hmr error for hoisted children array in v-for ([7334376](https://github.com/vuejs/core/commit/733437691f70ebca8dd6cc3bc8356f5b57d4d5d8)), closes [#6978](https://github.com/vuejs/core/issues/6978) [#7114](https://github.com/vuejs/core/issues/7114)
10+
* **reactivity:** assigning array.length while observing a symbol property ([#7568](https://github.com/vuejs/core/issues/7568)) ([e9e2778](https://github.com/vuejs/core/commit/e9e2778e9ec5cca07c1df5f0c9b7b3595a1a3244))
11+
* **scheduler:** ensure jobs are in the correct order ([#7748](https://github.com/vuejs/core/issues/7748)) ([a8f6638](https://github.com/vuejs/core/commit/a8f663867b8cd2736b82204bc58756ef02441276)), closes [#7576](https://github.com/vuejs/core/issues/7576)
12+
* **ssr:** fix hydration mismatch for disabled teleport at component root ([#9399](https://github.com/vuejs/core/issues/9399)) ([d8990fc](https://github.com/vuejs/core/commit/d8990fc6182d1c2cf0a8eab7b35a9d04df668507)), closes [#6152](https://github.com/vuejs/core/issues/6152)
13+
* **Suspense:** calling hooks before the transition finishes ([#9388](https://github.com/vuejs/core/issues/9388)) ([00de3e6](https://github.com/vuejs/core/commit/00de3e61ed7a55e7d6c2e1987551d66ad0f909ff)), closes [#5844](https://github.com/vuejs/core/issues/5844) [#5952](https://github.com/vuejs/core/issues/5952)
14+
* **transition/ssr:** make transition appear work with SSR ([#8859](https://github.com/vuejs/core/issues/8859)) ([5ea8a8a](https://github.com/vuejs/core/commit/5ea8a8a4fab4e19a71e123e4d27d051f5e927172)), closes [#6951](https://github.com/vuejs/core/issues/6951)
15+
* **types:** fix ComponentCustomProps augmentation ([#9468](https://github.com/vuejs/core/issues/9468)) ([7374e93](https://github.com/vuejs/core/commit/7374e93f0281f273b90ab5a6724cc47332a01d6c)), closes [#8376](https://github.com/vuejs/core/issues/8376)
16+
* **types:** improve `h` overload to support union of string and component ([#5432](https://github.com/vuejs/core/issues/5432)) ([16ecb44](https://github.com/vuejs/core/commit/16ecb44c89cd8299a3b8de33cccc2e2cc36f065b)), closes [#5431](https://github.com/vuejs/core/issues/5431)
17+
18+
19+
120
## [3.3.6](https://github.com/vuejs/core/compare/v3.3.5...v3.3.6) (2023-10-20)
221

322

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"private": true,
3-
"version": "3.3.6",
3+
"version": "3.3.7",
44
"packageManager": "[email protected]",
55
"type": "module",
66
"scripts": {

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.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -33,7 +33,7 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.23.0",
36-
"@vue/shared": "3.3.6",
36+
"@vue/shared": "3.3.7",
3737
"estree-walker": "^2.0.2",
3838
"source-map-js": "^1.0.2"
3939
},

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.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/compiler-dom",
55
"main": "index.js",
66
"module": "dist/compiler-dom.esm-bundler.js",
@@ -37,7 +37,7 @@
3737
},
3838
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
3939
"dependencies": {
40-
"@vue/shared": "3.3.6",
41-
"@vue/compiler-core": "3.3.6"
40+
"@vue/shared": "3.3.7",
41+
"@vue/compiler-core": "3.3.7"
4242
}
4343
}

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.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/compiler-sfc",
55
"main": "dist/compiler-sfc.cjs.js",
66
"module": "dist/compiler-sfc.esm-browser.js",
@@ -33,11 +33,11 @@
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
3434
"dependencies": {
3535
"@babel/parser": "^7.23.0",
36-
"@vue/compiler-core": "3.3.6",
37-
"@vue/compiler-dom": "3.3.6",
38-
"@vue/compiler-ssr": "3.3.6",
39-
"@vue/reactivity-transform": "3.3.6",
40-
"@vue/shared": "3.3.6",
36+
"@vue/compiler-core": "3.3.7",
37+
"@vue/compiler-dom": "3.3.7",
38+
"@vue/compiler-ssr": "3.3.7",
39+
"@vue/reactivity-transform": "3.3.7",
40+
"@vue/shared": "3.3.7",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.30.5",
4343
"postcss": "^8.4.31",

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.3.6",
3+
"version": "3.3.7",
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/core/tree/main/packages/compiler-ssr#readme",
3030
"dependencies": {
31-
"@vue/shared": "3.3.6",
32-
"@vue/compiler-dom": "3.3.6"
31+
"@vue/shared": "3.3.7",
32+
"@vue/compiler-dom": "3.3.7"
3333
}
3434
}

packages/dts-built-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"@vue/reactivity": "workspace:*",
88
"vue": "workspace:*"
99
},
10-
"version": "3.3.6"
10+
"version": "3.3.7"
1111
}

packages/dts-test/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
"vue": "workspace:*",
66
"@vue/dts-built-test": "workspace:*"
77
},
8-
"version": "3.3.6"
8+
"version": "3.3.7"
99
}

packages/reactivity-transform/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity-transform",
3-
"version": "3.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/reactivity-transform",
55
"main": "dist/reactivity-transform.cjs.js",
66
"files": [
@@ -29,8 +29,8 @@
2929
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
3030
"dependencies": {
3131
"@babel/parser": "^7.23.0",
32-
"@vue/compiler-core": "3.3.6",
33-
"@vue/shared": "3.3.6",
32+
"@vue/compiler-core": "3.3.7",
33+
"@vue/shared": "3.3.7",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.30.5"
3636
},

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.3.6",
3+
"version": "3.3.7",
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/core/tree/main/packages/reactivity#readme",
3838
"dependencies": {
39-
"@vue/shared": "3.3.6"
39+
"@vue/shared": "3.3.7"
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.3.6",
3+
"version": "3.3.7",
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/core/tree/main/packages/runtime-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.3.6",
36-
"@vue/reactivity": "3.3.6"
35+
"@vue/shared": "3.3.7",
36+
"@vue/reactivity": "3.3.7"
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.3.6",
3+
"version": "3.3.7",
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/core/tree/main/packages/runtime-dom#readme",
3737
"dependencies": {
38-
"@vue/shared": "3.3.6",
39-
"@vue/runtime-core": "3.3.6",
38+
"@vue/shared": "3.3.7",
39+
"@vue/runtime-core": "3.3.7",
4040
"csstype": "^3.1.2"
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.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/runtime-test",
55
"private": true,
66
"main": "index.js",
@@ -25,7 +25,7 @@
2525
},
2626
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-test#readme",
2727
"dependencies": {
28-
"@vue/shared": "3.3.6",
29-
"@vue/runtime-core": "3.3.6"
28+
"@vue/shared": "3.3.7",
29+
"@vue/runtime-core": "3.3.7"
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.3.6",
3+
"version": "3.3.7",
44
"description": "@vue/server-renderer",
55
"main": "index.js",
66
"module": "dist/server-renderer.esm-bundler.js",
@@ -32,10 +32,10 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
3434
"peerDependencies": {
35-
"vue": "3.3.6"
35+
"vue": "3.3.7"
3636
},
3737
"dependencies": {
38-
"@vue/shared": "3.3.6",
39-
"@vue/compiler-ssr": "3.3.6"
38+
"@vue/shared": "3.3.7",
39+
"@vue/compiler-ssr": "3.3.7"
4040
}
4141
}

packages/sfc-playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/sfc-playground",
3-
"version": "3.3.6",
3+
"version": "3.3.7",
44
"type": "module",
55
"private": true,
66
"scripts": {

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.3.6",
3+
"version": "3.3.7",
44
"description": "internal utils shared across @vue packages",
55
"main": "index.js",
66
"module": "dist/shared.esm-bundler.js",

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

packages/vue-compat/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/compat",
3-
"version": "3.3.6",
3+
"version": "3.3.7",
44
"description": "Vue 3 compatibility build for Vue 2",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -43,6 +43,6 @@
4343
"source-map-js": "^1.0.2"
4444
},
4545
"peerDependencies": {
46-
"vue": "3.3.6"
46+
"vue": "3.3.7"
4747
}
4848
}

packages/vue/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vue",
3-
"version": "3.3.6",
3+
"version": "3.3.7",
44
"description": "The progressive JavaScript framework for building modern web UI.",
55
"main": "index.js",
66
"module": "dist/vue.runtime.esm-bundler.js",
@@ -96,11 +96,11 @@
9696
},
9797
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
9898
"dependencies": {
99-
"@vue/shared": "3.3.6",
100-
"@vue/compiler-dom": "3.3.6",
101-
"@vue/runtime-dom": "3.3.6",
102-
"@vue/compiler-sfc": "3.3.6",
103-
"@vue/server-renderer": "3.3.6"
99+
"@vue/shared": "3.3.7",
100+
"@vue/compiler-dom": "3.3.7",
101+
"@vue/runtime-dom": "3.3.7",
102+
"@vue/compiler-sfc": "3.3.7",
103+
"@vue/server-renderer": "3.3.7"
104104
},
105105
"peerDependencies": {
106106
"typescript": "*"

0 commit comments

Comments
 (0)