]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
release: v3.4.24 v3.4.24
authorEvan You <yyx990803@gmail.com>
Mon, 22 Apr 2024 15:29:58 +0000 (23:29 +0800)
committerEvan You <yyx990803@gmail.com>
Mon, 22 Apr 2024 15:29:58 +0000 (23:29 +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 4eae200db69d77f33647c5fef7b3c8a812b14f9a..3aed604979b79302153ea09c3c884448f30b5111 100644 (file)
@@ -1,3 +1,21 @@
+## [3.4.24](https://github.com/vuejs/core/compare/v3.4.23...v3.4.24) (2024-04-22)
+
+
+### Bug Fixes
+
+* **compiler-core:** handle template ref bound via v-bind object on v-for ([#10706](https://github.com/vuejs/core/issues/10706)) ([da7adef](https://github.com/vuejs/core/commit/da7adefa844265eecc9c336abfc727bc05b4f16e)), closes [#10696](https://github.com/vuejs/core/issues/10696)
+* **compiler-core:** properly parse await expressions in edge cases ([b92c25f](https://github.com/vuejs/core/commit/b92c25f53dff0fc1687f57ca4033d0ac25218940)), closes [#10754](https://github.com/vuejs/core/issues/10754)
+* **compiler-sfc:** handle readonly operator and ReadonlyArray/Map/Set types ([5cef52a](https://github.com/vuejs/core/commit/5cef52a5c23ba8ba3239e6def03b8ff008d3cc72)), closes [#10726](https://github.com/vuejs/core/issues/10726)
+* **compiler-ssr:** fix hydration mismatch for conditional slot in transition ([f12c81e](https://github.com/vuejs/core/commit/f12c81efca3fcf9a7ce478af2261ad6ab9b0bfd7)), closes [#10743](https://github.com/vuejs/core/issues/10743)
+* **compiler-ssr:** fix v-html SSR for nullish values ([1ff4076](https://github.com/vuejs/core/commit/1ff407676f9495883b459779a9b0370d7588b51f)), closes [#10725](https://github.com/vuejs/core/issues/10725)
+* **deps:** update compiler ([#10760](https://github.com/vuejs/core/issues/10760)) ([15df5c1](https://github.com/vuejs/core/commit/15df5c1b261b9b471eb811fd47ab7b3cfc41cf83))
+* **runtime-core:** fix edge case of KeepAlive inside Transition with slot children ([#10719](https://github.com/vuejs/core/issues/10719)) ([e51ca61](https://github.com/vuejs/core/commit/e51ca61ca060b2772e967d169548fc2f58fce6d1)), closes [#10708](https://github.com/vuejs/core/issues/10708)
+* **runtime-core:** further fix slots _ctx check ([cde7f05](https://github.com/vuejs/core/commit/cde7f05787d16dbb93d9419ef5331adf992816fd)), closes [#10724](https://github.com/vuejs/core/issues/10724)
+* **runtime-core:** props should be readonly via direct template access ([b93f264](https://github.com/vuejs/core/commit/b93f26464785de227b88c51a88328ae80e80d804)), closes [#8216](https://github.com/vuejs/core/issues/8216) [#10736](https://github.com/vuejs/core/issues/10736)
+* **transition:** transition is breaking/flickering when enter is canceled ([#10688](https://github.com/vuejs/core/issues/10688)) ([65109a7](https://github.com/vuejs/core/commit/65109a70f187473edae8cf4df11af3c33345e6f6))
+
+
+
 ## [3.4.23](https://github.com/vuejs/core/compare/v3.4.22...v3.4.23) (2024-04-16)
 
 
index 97caee95afa71f59d34e076cb8e1acc6acd48ce8..be02ea8be2a84fb5798ab7194148110974b213de 100644 (file)
@@ -1,6 +1,6 @@
 {
   "private": true,
-  "version": "3.4.23",
+  "version": "3.4.24",
   "packageManager": "pnpm@9.0.5",
   "type": "module",
   "scripts": {
index dd9e6f08a6e07603ace37b5a1e87559308dc3cd3..bebc491d8a7b04091310e08b3ef351f24c67605e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-core",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/compiler-core",
   "main": "index.js",
   "module": "dist/compiler-core.esm-bundler.js",
index 1b7700aa9ba05123df73f1c25cfb71f58aa2e5ee..b752924f58d6fb46d7c3cc48fc13fcc0a0f66b55 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-dom",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/compiler-dom",
   "main": "index.js",
   "module": "dist/compiler-dom.esm-bundler.js",
index c34de6b0f205659a7dceaea2626b5746a3ecf98f..11087bcb3dc546b79ece80544bad49dc03327ab6 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-sfc",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/compiler-sfc",
   "main": "dist/compiler-sfc.cjs.js",
   "module": "dist/compiler-sfc.esm-browser.js",
index a4972e5c0142dab96038892c3c7ceff67eeaa573..3e1cb919e570cbd4e746e3d6cd6654794054d874 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-ssr",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/compiler-ssr",
   "main": "dist/compiler-ssr.cjs.js",
   "types": "dist/compiler-ssr.d.ts",
index 7966c34e4123ceb62077a7d2f477043ff49361ed..6cb042c8a3194016da49404e07388ad8e66e1348 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/reactivity",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/reactivity",
   "main": "index.js",
   "module": "dist/reactivity.esm-bundler.js",
index 134080b10126067efa86ba691aa2cbcedf084a3d..23ab3e3faf187b053141b4c10fec2ada2edfa487 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-core",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/runtime-core",
   "main": "index.js",
   "module": "dist/runtime-core.esm-bundler.js",
index 2f579ff7b1329d45c8e0255ea0db79cb57e862a6..fb364038c333bcc4eb0d2f10c72bfbc8a58553cd 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-dom",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/runtime-dom",
   "main": "index.js",
   "module": "dist/runtime-dom.esm-bundler.js",
index cc5ea9ad9027c17708d981f0a02a09723e9e3d4e..9f164e44f515f06275887012ed3cc9e6f5e205eb 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/server-renderer",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "@vue/server-renderer",
   "main": "index.js",
   "module": "dist/server-renderer.esm-bundler.js",
index 5d05a5371d9d1275da1f18ef648fb37915ebb13d..e0d7a2f9b4ef4b15783154e6f308394d23d4084e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/shared",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "internal utils shared across @vue packages",
   "main": "index.js",
   "module": "dist/shared.esm-bundler.js",
index 764e4bb0b018296de416903a3cd7b90ec0c22ff3..855d2ebd4caafba225dab2aafee7220c6abacc98 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compat",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "Vue 3 compatibility build for Vue 2",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",
index 41dd36385b85bcb91fbd4a85bb1437b8f7fadb83..31aef2f48bd59c967b1c05cd04e765e0731e470b 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "vue",
-  "version": "3.4.23",
+  "version": "3.4.24",
   "description": "The progressive JavaScript framework for building modern web UI.",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",