Skip to content

Commit 27e1e38

Browse files
committed
release: v3.3.0-alpha.5
1 parent d0b7ef3 commit 27e1e38

File tree

20 files changed

+93
-72
lines changed

20 files changed

+93
-72
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# [3.3.0-alpha.5](https://github.com/vuejs/core/compare/v3.3.0-alpha.4...v3.3.0-alpha.5) (2023-03-26)
2+
3+
### Bug Fixes
4+
5+
* **runtime-core:** support `getCurrentInstance` across mutiple builds of Vue ([8d2d5bf](https://github.com/vuejs/core/commit/8d2d5bf48a24dab44e5b03cb8fa0c5faa4b696e3))
6+
* **types:** ensure defineProps with generics return correct types ([c288c7b](https://github.com/vuejs/core/commit/c288c7b0bd6077d690f42153c3fc49a45454a66a))
7+
8+
9+
### Features
10+
11+
* **dx:** improve readability of displayed types for props ([4c9bfd2](https://github.com/vuejs/core/commit/4c9bfd2b999ce472f7481aae4f9dc5bb9f76628e))
12+
* **types/jsx:** support jsxImportSource, avoid global JSX conflict ([#7958](https://github.com/vuejs/core/issues/7958)) ([d0b7ef3](https://github.com/vuejs/core/commit/d0b7ef3b61d5f83e35e5854b3c2c874e23463102))
13+
14+
### BREAKING CHANGES
15+
16+
* Vue no longer registers the global `JSX` namespace by default. This is necessary to avoid global namespace collision with React so that TSX of both libs can co-exist in the same project. This should not affect SFC-only users with latest version of Volar.
17+
18+
For TSX users, the old global behavior can be enabled by explicitly importing or referencing `vue/jsx`. Alternatively, the user can set [jsxImportSource](https://www.typescriptlang.org/tsconfig#jsxImportSource) to `'vue'` in `tsconfig.json`, or opt-in per file with `/* @jsxImportSource vue */`.
19+
20+
Note this is a type-only breaking change in a minor release, which adheres to our [release policy](https://vuejs.org/about/releases.html#semantic-versioning-edge-cases).
21+
122
# [3.3.0-alpha.4](https://github.com/vuejs/core/compare/v3.3.0-alpha.3...v3.3.0-alpha.4) (2023-02-06)
223

324

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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
44
"packageManager": "[email protected]",
55
"type": "module",
66
"scripts": {

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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
44
"description": "@vue/compiler-core",
55
"main": "index.js",
66
"module": "dist/compiler-core.esm-bundler.js",
@@ -32,7 +32,7 @@
3232
},
3333
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
3434
"dependencies": {
35-
"@vue/shared": "3.3.0-alpha.4",
35+
"@vue/shared": "3.3.0-alpha.5",
3636
"@babel/parser": "^7.20.15",
3737
"estree-walker": "^2.0.2",
3838
"source-map": "^0.6.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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.0-alpha.4",
41-
"@vue/compiler-core": "3.3.0-alpha.4"
40+
"@vue/shared": "3.3.0-alpha.5",
41+
"@vue/compiler-core": "3.3.0-alpha.5"
4242
}
4343
}

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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.20.15",
36-
"@vue/compiler-core": "3.3.0-alpha.4",
37-
"@vue/compiler-dom": "3.3.0-alpha.4",
38-
"@vue/compiler-ssr": "3.3.0-alpha.4",
39-
"@vue/reactivity-transform": "3.3.0-alpha.4",
40-
"@vue/shared": "3.3.0-alpha.4",
36+
"@vue/compiler-core": "3.3.0-alpha.5",
37+
"@vue/compiler-dom": "3.3.0-alpha.5",
38+
"@vue/compiler-ssr": "3.3.0-alpha.5",
39+
"@vue/reactivity-transform": "3.3.0-alpha.5",
40+
"@vue/shared": "3.3.0-alpha.5",
4141
"estree-walker": "^2.0.2",
4242
"magic-string": "^0.27.0",
4343
"source-map": "^0.6.1",

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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.0-alpha.4",
32-
"@vue/compiler-dom": "3.3.0-alpha.4"
31+
"@vue/shared": "3.3.0-alpha.5",
32+
"@vue/compiler-dom": "3.3.0-alpha.5"
3333
}
3434
}

packages/dts-test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
"dependencies": {
55
"vue": "workspace:*"
66
},
7-
"version": "3.3.0-alpha.4"
7+
"version": "3.3.0-alpha.5"
88
}

packages/reactivity-transform/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vue/reactivity-transform",
3-
"version": "3.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.20.15",
32-
"@vue/compiler-core": "3.3.0-alpha.4",
33-
"@vue/shared": "3.3.0-alpha.4",
32+
"@vue/compiler-core": "3.3.0-alpha.5",
33+
"@vue/shared": "3.3.0-alpha.5",
3434
"estree-walker": "^2.0.2",
3535
"magic-string": "^0.27.0"
3636
},

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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.0-alpha.4"
39+
"@vue/shared": "3.3.0-alpha.5"
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.3.0-alpha.4",
3+
"version": "3.3.0-alpha.5",
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.0-alpha.4",
36-
"@vue/reactivity": "3.3.0-alpha.4"
35+
"@vue/shared": "3.3.0-alpha.5",
36+
"@vue/reactivity": "3.3.0-alpha.5"
3737
}
3838
}

0 commit comments

Comments
 (0)