]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
release: v3.4.20 v3.4.20
authorEvan You <yyx990803@gmail.com>
Mon, 26 Feb 2024 02:07:13 +0000 (10:07 +0800)
committerEvan You <yyx990803@gmail.com>
Mon, 26 Feb 2024 02:07:13 +0000 (10:07 +0800)
13 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/reactivity/package.json
packages/runtime-core/package.json
packages/runtime-dom/package.json
packages/server-renderer/package.json
packages/shared/package.json
packages/vue-compat/package.json
packages/vue/package.json

index 0e79cebb3335fe3a6a5d08a8eaef5988d13a5a8a..6acaa893fe8f280fc356480863a568679783304a 100644 (file)
@@ -1,3 +1,17 @@
+## [3.4.20](https://github.com/vuejs/core/compare/v3.4.19...v3.4.20) (2024-02-26)
+
+
+### Bug Fixes
+
+* **parser:** should not treat uppercase components as special tags ([e0e0253](https://github.com/vuejs/core/commit/e0e02535cdea1aeb1cfaff0d61d4b2555e555c36)), closes [#10395](https://github.com/vuejs/core/issues/10395)
+* **runtime-dom:** avoid always resetting nullish option value ([ff130c4](https://github.com/vuejs/core/commit/ff130c470204086edaa093fb8fdc1247c69cba69)), closes [#10396](https://github.com/vuejs/core/issues/10396)
+* **runtime-dom:** fix nested v-show priority regression ([364f890](https://github.com/vuejs/core/commit/364f8902c8657faec7c3a4d70a5b2c856567e92d)), closes [#10338](https://github.com/vuejs/core/issues/10338)
+* **runtime-dom:** v-bind style should clear previous css string value ([#10373](https://github.com/vuejs/core/issues/10373)) ([e2d3235](https://github.com/vuejs/core/commit/e2d323538e71d404e729148fd19a08bbc2e3da9b)), closes [#10352](https://github.com/vuejs/core/issues/10352)
+* **suspense:** handle suspense switching with nested suspense  ([#10184](https://github.com/vuejs/core/issues/10184)) ([0f3da05](https://github.com/vuejs/core/commit/0f3da05ea201761529bb95594df1e2cee20b7107)), closes [#10098](https://github.com/vuejs/core/issues/10098)
+* **types:** better typing for direct setup signature of defineComponent ([#10357](https://github.com/vuejs/core/issues/10357)) ([eadce5b](https://github.com/vuejs/core/commit/eadce5b75356656fd2209ebdb406d34823c961b7)), closes [#8604](https://github.com/vuejs/core/issues/8604) [#8855](https://github.com/vuejs/core/issues/8855)
+
+
+
 ## [3.4.19](https://github.com/vuejs/core/compare/v3.4.18...v3.4.19) (2024-02-13)
 
 
index efe24f0247f89031f4eb85af948e804b7717d513..538d63be63098cedf9a04fe7dc8a3fa770598b9e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "private": true,
-  "version": "3.4.19",
+  "version": "3.4.20",
   "packageManager": "pnpm@8.15.4",
   "type": "module",
   "scripts": {
index 9f3687f5d24c27a5312ab0591224219540626f47..0a94a9288591b60cc735c992a7f98926cdf0088b 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-core",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/compiler-core",
   "main": "index.js",
   "module": "dist/compiler-core.esm-bundler.js",
index e9db0c0aa1d495eb23cb663b4083f275c46d19aa..3f1ec0d148a13a48903620928f245799d5d95311 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-dom",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/compiler-dom",
   "main": "index.js",
   "module": "dist/compiler-dom.esm-bundler.js",
index 33878763e476d8687e230539d2c33185d1333229..a9ace4fdfdf6a1d146962a14aad62cb313ec371b 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-sfc",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/compiler-sfc",
   "main": "dist/compiler-sfc.cjs.js",
   "module": "dist/compiler-sfc.esm-browser.js",
index f1c97ddcc538a50c1cdca92b8140cb3fd7e50c54..269ca89d3fbdc2e5aac7c6b59b8b4654ada15410 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-ssr",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/compiler-ssr",
   "main": "dist/compiler-ssr.cjs.js",
   "types": "dist/compiler-ssr.d.ts",
index c4f412f4e6a1c3b51364b053cc7d648f7c449b34..5853f2ce2004f49aa6c8fa6da6f78e8ed540624e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/reactivity",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/reactivity",
   "main": "index.js",
   "module": "dist/reactivity.esm-bundler.js",
index ae8d911bc8f3c2341d1e3696e77afcf2f28fc940..264e6419f56875d01a002b4e62e2d27bf0247758 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-core",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/runtime-core",
   "main": "index.js",
   "module": "dist/runtime-core.esm-bundler.js",
index 89c805a73dfcd3502c448eab46886fb830509622..9e95bfc4814db7030a41ca54f86869979360cc25 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-dom",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/runtime-dom",
   "main": "index.js",
   "module": "dist/runtime-dom.esm-bundler.js",
index 2c7fcb4a1fa9749feb06739fb51576218e4bfadb..4d34b450cb6f7bb1079de4fbdd0d78ea7d16e004 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/server-renderer",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "@vue/server-renderer",
   "main": "index.js",
   "module": "dist/server-renderer.esm-bundler.js",
index 8019a025792dd28191619631ba856846fe94cf71..0780cf235fc0a99ee14b5a09f80550d2da6d1988 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/shared",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "internal utils shared across @vue packages",
   "main": "index.js",
   "module": "dist/shared.esm-bundler.js",
index 44d7ca08bb1628afc7c5f166423de429b6f4bd5f..929039fe34219a9e340fc9b098ec25e7f603c1f0 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compat",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "Vue 3 compatibility build for Vue 2",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",
index 084b2ce487998fc003c8ac3c1d516a3f23ba23dd..7f511ca034666c69b0328cda4a88c0098554b84f 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "vue",
-  "version": "3.4.19",
+  "version": "3.4.20",
   "description": "The progressive JavaScript framework for building modern web UI.",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",