]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
release: v3.3.0-alpha.13 v3.3.0-alpha.13
authorEvan You <yyx990803@gmail.com>
Thu, 20 Apr 2023 13:13:34 +0000 (21:13 +0800)
committerEvan You <yyx990803@gmail.com>
Thu, 20 Apr 2023 13:13:34 +0000 (21:13 +0800)
20 files changed:
CHANGELOG.md
package.json
packages/compiler-core/package.json
packages/compiler-dom/package.json
packages/compiler-sfc/package.json
packages/compiler-ssr/package.json
packages/dts-test/package.json
packages/reactivity-transform/package.json
packages/reactivity/package.json
packages/runtime-core/package.json
packages/runtime-dom/package.json
packages/runtime-test/package.json
packages/server-renderer/package.json
packages/sfc-playground/package.json
packages/shared/package.json
packages/size-check/package.json
packages/template-explorer/package.json
packages/vue-compat/package.json
packages/vue/package.json
pnpm-lock.yaml

index dba7c533dc2fa25f59cd43748a8b6b137c30295a..5b102924521e13dbb9e5e74d30aaf2f28d4f7cb0 100644 (file)
@@ -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)
 
 
index 9aadea2b94c4c0bc2fa0fd274521958384e04dff..9a641ca6bb17d6933fa0bd7d6c6b4ea5fe036a95 100644 (file)
@@ -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": {
index 3e04a35b48c1b2af133ea3857a1ce02608d3175f..9dde3747c6bca732dcd8d582297227b7c5a75050 100644 (file)
@@ -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",
@@ -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"
   },
index 77315a776aab30f8f53452a469169500b9376369..4512b559dff6accd3056196b92bb606d795fe332 100644 (file)
@@ -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",
@@ -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"
   }
 }
index 7bdce2ae52f6fcb56996d7d770711eddf909704a..1289bb3d98e5de8fc094aa3f72e1764c0657083b 100644 (file)
@@ -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",
   "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",
index 00a19fd30fb1a399bd513e26a951f9d7ea473046..d223daff98dd7d6c5179c2e643ca29b3bb4e659d 100644 (file)
@@ -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",
@@ -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"
   }
 }
index 35f773f4c8faad9b33e9be3f58c0e5635d85e401..8a2476a73a604c950d4aef364f8be764d977bc88 100644 (file)
@@ -4,5 +4,5 @@
   "dependencies": {
     "vue": "workspace:*"
   },
-  "version": "3.3.0-alpha.12"
+  "version": "3.3.0-alpha.13"
 }
index 8f9f27714a29aaa9354c1f9bc2648db175e7e6e7..e08f2f2412b9597343f428640d354716216b986f 100644 (file)
@@ -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": [
@@ -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"
   },
index 976c806f7d323a180702d96fe5f9bdbc65329196..209140380242c959bd895f808ff4c483c1ff8c0d 100644 (file)
@@ -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",
@@ -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"
   }
 }
index 262062392b3eb1a5b069714fc46cf4b492bfcdfd..d9cc4d84cdc2ba6a3ae8e26e59eb35eee821f0b7 100644 (file)
@@ -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",
@@ -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"
   }
 }
index 75f5abfaed3d7ba2a950dfbd27f0a1a58dbd9860..67960114d819ef82a79660b3a353a8516e70ccaf 100644 (file)
@@ -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",
@@ -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"
   }
 }
index 410b18e315ab18bc23f5b751c728c015cab06493..bec719505a356eb4f0f58dc9def53a2d0bd5a02a 100644 (file)
@@ -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",
@@ -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"
   }
 }
index a33085b4b4cfa20d4f96003594d5adcfafbf93eb..b9dd96c151564c98ab8c3fc58b5f9b1bce33d5a0 100644 (file)
@@ -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",
   },
   "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"
   }
 }
index fa21efb2cd2e65ce4c971cc597e7f963a625ccbe..9b5f5908e8234c3beb79be68752a3b5bb80c3800 100644 (file)
@@ -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",
index f45c496a974a3f0ae287f78abc34500485e53530..b4c580a0b6889e28a11d5099971b66aba42af6a2 100644 (file)
@@ -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",
index ec6535ed06d072d6d5860f5f0349d651da6ef3c5..44642b96df59386839e58d3dfe08f091724ed023 100644 (file)
@@ -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"
index a3864701851872738062e115b68288583c51861f..6fd51f21f590f3df02558174eb0e6e753853a83f 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/template-explorer",
-  "version": "3.3.0-alpha.12",
+  "version": "3.3.0-alpha.13",
   "private": true,
   "buildOptions": {
     "formats": [
index 0a1f8117f265e0b73e126fa2a637c05db28e4a9a..6d9024a6c5d215e7196ef7ad0c73667481eb9619 100644 (file)
@@ -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",
@@ -43,6 +43,6 @@
     "source-map-js": "^1.0.2"
   },
   "peerDependencies": {
-    "vue": "3.3.0-alpha.12"
+    "vue": "3.3.0-alpha.13"
   }
 }
index 7769f075d1baddb2bb0ff302ec459832d41210d6..1154246eef483c12534d553248f3bbd9ef596dea 100644 (file)
@@ -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",
   },
   "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"
   }
 }
index 1d880dbbd693f92390817cc5fe788e48d32d69b0..b81830f3abc3b82d7b896b0c5f714ad45e28b1e6 100644 (file)
@@ -100,7 +100,7 @@ importers:
     specifiers:
       '@babel/parser': ^7.21.3
       '@babel/types': ^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
     dependencies:
@@ -113,8 +113,8 @@ importers:
 
   packages/compiler-dom:
     specifiers:
-      '@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
     dependencies:
       '@vue/compiler-core': link:../compiler-core
       '@vue/shared': link:../shared
@@ -125,12 +125,12 @@ importers:
       '@babel/types': ^7.21.3
       '@types/estree': ^0.0.48
       '@types/lru-cache': ^5.1.0
-      '@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/compiler-core': 3.3.0-alpha.13
+      '@vue/compiler-dom': 3.3.0-alpha.13
+      '@vue/compiler-ssr': 3.3.0-alpha.13
       '@vue/consolidate': ^0.17.3
-      '@vue/reactivity-transform': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/reactivity-transform': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
       estree-walker: ^2.0.2
       hash-sum: ^2.0.0
       lru-cache: ^5.1.1
@@ -168,8 +168,8 @@ importers:
 
   packages/compiler-ssr:
     specifiers:
-      '@vue/compiler-dom': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/compiler-dom': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/compiler-dom': link:../compiler-dom
       '@vue/shared': link:../shared
@@ -182,7 +182,7 @@ importers:
 
   packages/reactivity:
     specifiers:
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/shared': link:../shared
 
@@ -191,8 +191,8 @@ importers:
       '@babel/core': ^7.21.3
       '@babel/parser': ^7.20.15
       '@babel/types': ^7.21.3
-      '@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
     dependencies:
@@ -207,16 +207,16 @@ importers:
 
   packages/runtime-core:
     specifiers:
-      '@vue/reactivity': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/reactivity': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/reactivity': link:../reactivity
       '@vue/shared': link:../shared
 
   packages/runtime-dom:
     specifiers:
-      '@vue/runtime-core': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/runtime-core': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
       csstype: ^3.1.1
     dependencies:
       '@vue/runtime-core': link:../runtime-core
@@ -225,16 +225,16 @@ importers:
 
   packages/runtime-test:
     specifiers:
-      '@vue/runtime-core': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/runtime-core': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/runtime-core': link:../runtime-core
       '@vue/shared': link:../shared
 
   packages/server-renderer:
     specifiers:
-      '@vue/compiler-ssr': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/compiler-ssr': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/compiler-ssr': link:../compiler-ssr
       '@vue/shared': link:../shared
@@ -275,11 +275,11 @@ importers:
 
   packages/vue:
     specifiers:
-      '@vue/compiler-dom': 3.3.0-alpha.12
-      '@vue/compiler-sfc': 3.3.0-alpha.12
-      '@vue/runtime-dom': 3.3.0-alpha.12
-      '@vue/server-renderer': 3.3.0-alpha.12
-      '@vue/shared': 3.3.0-alpha.12
+      '@vue/compiler-dom': 3.3.0-alpha.13
+      '@vue/compiler-sfc': 3.3.0-alpha.13
+      '@vue/runtime-dom': 3.3.0-alpha.13
+      '@vue/server-renderer': 3.3.0-alpha.13
+      '@vue/shared': 3.3.0-alpha.13
     dependencies:
       '@vue/compiler-dom': link:../compiler-dom
       '@vue/compiler-sfc': link:../compiler-sfc