Skip to content

Commit

Permalink
release: v3.3.0-alpha.13
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Apr 20, 2023
1 parent 50c0bbe commit 5cdaac2
Show file tree
Hide file tree
Showing 20 changed files with 92 additions and 72 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
# [3.3.0-alpha.13](https://github.com/vuejs/core/compare/v3.3.0-alpha.12...v3.3.0-alpha.13) (2023-04-20)


### Bug Fixes

* **compiler-sfc:** handle type merging + fix namespace access when inferring type ([d53e157](https://github.com/vuejs/core/commit/d53e157805678db7a3b9ca2fccc74530e1dfbc48)), closes [#8102](https://github.com/vuejs/core/issues/8102)
* **compiler-sfc:** normalize filename when invalidating cache ([9b5a34b](https://github.com/vuejs/core/commit/9b5a34bf8c0d1b4c6ec3cf1434076b7e25065f84))
* **hmr:** always traverse static children in dev ([f17a82c](https://github.com/vuejs/core/commit/f17a82c769cfb60ee6785ef5d34d91191d153542)), closes [#7921](https://github.com/vuejs/core/issues/7921) [#8100](https://github.com/vuejs/core/issues/8100)
* **hmr:** force update cached slots during HMR ([94fa67a](https://github.com/vuejs/core/commit/94fa67a4f73b3646c8c1e29512a71b17bd56efc3)), closes [#7155](https://github.com/vuejs/core/issues/7155) [#7158](https://github.com/vuejs/core/issues/7158)


### Features

* **compiler-sfc:** support dynamic imports when resolving types ([4496456](https://github.com/vuejs/core/commit/4496456d7d9947560ef1e35ccb176b97a27bd8f4))
* **compiler-sfc:** support export * when resolving types ([7c3ca3c](https://github.com/vuejs/core/commit/7c3ca3cc3e122fe273e80a950c57d492a7f0bf4a))
* **compiler-sfc:** support ExtractPropTypes when resolving types ([50c0bbe](https://github.com/vuejs/core/commit/50c0bbe5221dbc1dc353d4960e69ec7c8ba12905)), closes [#8104](https://github.com/vuejs/core/issues/8104)
* hasInjectionContext() for libraries ([#8111](https://github.com/vuejs/core/issues/8111)) ([5510ce3](https://github.com/vuejs/core/commit/5510ce385abfa151c07a5253cccf4abccabdd01d))



# [3.3.0-alpha.12](https://github.com/vuejs/core/compare/v3.3.0-alpha.11...v3.3.0-alpha.12) (2023-04-18)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"private": true,
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"packageManager": "pnpm@7.26.0",
"type": "module",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/compiler-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/compiler-core",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/compiler-core",
"main": "index.js",
"module": "dist/compiler-core.esm-bundler.js",
Expand Down Expand Up @@ -33,7 +33,7 @@
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-core#readme",
"dependencies": {
"@babel/parser": "^7.21.3",
"@vue/shared": "3.3.0-alpha.12",
"@vue/shared": "3.3.0-alpha.13",
"estree-walker": "^2.0.2",
"source-map-js": "^1.0.2"
},
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/compiler-dom",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/compiler-dom",
"main": "index.js",
"module": "dist/compiler-dom.esm-bundler.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-dom#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-core": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/compiler-core": "3.3.0-alpha.13"
}
}
12 changes: 6 additions & 6 deletions packages/compiler-sfc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/compiler-sfc",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/compiler-sfc",
"main": "dist/compiler-sfc.cjs.js",
"module": "dist/compiler-sfc.esm-browser.js",
Expand Down Expand Up @@ -33,11 +33,11 @@
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-sfc#readme",
"dependencies": {
"@babel/parser": "^7.20.15",
"@vue/compiler-core": "3.3.0-alpha.12",
"@vue/compiler-dom": "3.3.0-alpha.12",
"@vue/compiler-ssr": "3.3.0-alpha.12",
"@vue/reactivity-transform": "3.3.0-alpha.12",
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-core": "3.3.0-alpha.13",
"@vue/compiler-dom": "3.3.0-alpha.13",
"@vue/compiler-ssr": "3.3.0-alpha.13",
"@vue/reactivity-transform": "3.3.0-alpha.13",
"@vue/shared": "3.3.0-alpha.13",
"estree-walker": "^2.0.2",
"magic-string": "^0.30.0",
"postcss": "^8.1.10",
Expand Down
6 changes: 3 additions & 3 deletions packages/compiler-ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/compiler-ssr",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/compiler-ssr",
"main": "dist/compiler-ssr.cjs.js",
"types": "dist/compiler-ssr.d.ts",
Expand Down Expand Up @@ -28,7 +28,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/compiler-ssr#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-dom": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/compiler-dom": "3.3.0-alpha.13"
}
}
2 changes: 1 addition & 1 deletion packages/dts-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
"dependencies": {
"vue": "workspace:*"
},
"version": "3.3.0-alpha.12"
"version": "3.3.0-alpha.13"
}
6 changes: 3 additions & 3 deletions packages/reactivity-transform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/reactivity-transform",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/reactivity-transform",
"main": "dist/reactivity-transform.cjs.js",
"files": [
Expand Down Expand Up @@ -29,8 +29,8 @@
"homepage": "https://github.com/vuejs/core/tree/dev/packages/reactivity-transform#readme",
"dependencies": {
"@babel/parser": "^7.20.15",
"@vue/compiler-core": "3.3.0-alpha.12",
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-core": "3.3.0-alpha.13",
"@vue/shared": "3.3.0-alpha.13",
"estree-walker": "^2.0.2",
"magic-string": "^0.30.0"
},
Expand Down
4 changes: 2 additions & 2 deletions packages/reactivity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/reactivity",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/reactivity",
"main": "index.js",
"module": "dist/reactivity.esm-bundler.js",
Expand Down Expand Up @@ -36,6 +36,6 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/reactivity#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13"
}
}
6 changes: 3 additions & 3 deletions packages/runtime-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/runtime-core",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/runtime-core",
"main": "index.js",
"module": "dist/runtime-core.esm-bundler.js",
Expand Down Expand Up @@ -32,7 +32,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/reactivity": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/reactivity": "3.3.0-alpha.13"
}
}
6 changes: 3 additions & 3 deletions packages/runtime-dom/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/runtime-dom",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/runtime-dom",
"main": "index.js",
"module": "dist/runtime-dom.esm-bundler.js",
Expand Down Expand Up @@ -35,8 +35,8 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-dom#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/runtime-core": "3.3.0-alpha.12",
"@vue/shared": "3.3.0-alpha.13",
"@vue/runtime-core": "3.3.0-alpha.13",
"csstype": "^3.1.1"
}
}
6 changes: 3 additions & 3 deletions packages/runtime-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/runtime-test",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/runtime-test",
"private": true,
"main": "index.js",
Expand All @@ -25,7 +25,7 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-test#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/runtime-core": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/runtime-core": "3.3.0-alpha.13"
}
}
8 changes: 4 additions & 4 deletions packages/server-renderer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/server-renderer",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "@vue/server-renderer",
"main": "index.js",
"module": "dist/server-renderer.esm-bundler.js",
Expand Down Expand Up @@ -32,10 +32,10 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/server-renderer#readme",
"peerDependencies": {
"vue": "3.3.0-alpha.12"
"vue": "3.3.0-alpha.13"
},
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-ssr": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/compiler-ssr": "3.3.0-alpha.13"
}
}
2 changes: 1 addition & 1 deletion packages/sfc-playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/sfc-playground",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/shared",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "internal utils shared across @vue packages",
"main": "index.js",
"module": "dist/shared.esm-bundler.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/size-check/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/size-check",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"private": true,
"scripts": {
"build": "vite build"
Expand Down
2 changes: 1 addition & 1 deletion packages/template-explorer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/template-explorer",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"private": true,
"buildOptions": {
"formats": [
Expand Down
4 changes: 2 additions & 2 deletions packages/vue-compat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vue/compat",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "Vue 3 compatibility build for Vue 2",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
Expand Down Expand Up @@ -43,6 +43,6 @@
"source-map-js": "^1.0.2"
},
"peerDependencies": {
"vue": "3.3.0-alpha.12"
"vue": "3.3.0-alpha.13"
}
}
12 changes: 6 additions & 6 deletions packages/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vue",
"version": "3.3.0-alpha.12",
"version": "3.3.0-alpha.13",
"description": "The progressive JavaScript framework for building modern web UI.",
"main": "index.js",
"module": "dist/vue.runtime.esm-bundler.js",
Expand Down Expand Up @@ -81,10 +81,10 @@
},
"homepage": "https://github.com/vuejs/core/tree/main/packages/vue#readme",
"dependencies": {
"@vue/shared": "3.3.0-alpha.12",
"@vue/compiler-dom": "3.3.0-alpha.12",
"@vue/runtime-dom": "3.3.0-alpha.12",
"@vue/compiler-sfc": "3.3.0-alpha.12",
"@vue/server-renderer": "3.3.0-alpha.12"
"@vue/shared": "3.3.0-alpha.13",
"@vue/compiler-dom": "3.3.0-alpha.13",
"@vue/runtime-dom": "3.3.0-alpha.13",
"@vue/compiler-sfc": "3.3.0-alpha.13",
"@vue/server-renderer": "3.3.0-alpha.13"
}
}
Loading

0 comments on commit 5cdaac2

Please sign in to comment.