]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
release: v3.4.4 v3.4.4
authorEvan You <yyx990803@gmail.com>
Wed, 3 Jan 2024 10:40:28 +0000 (18:40 +0800)
committerEvan You <yyx990803@gmail.com>
Wed, 3 Jan 2024 10:40:28 +0000 (18:40 +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 44f187edf4ec3f151cc58c32241b2bd744dea6cd..3bc712c0f13dcc508fdd60e2b9374730134e5a1f 100644 (file)
@@ -1,3 +1,23 @@
+## [3.4.4](https://github.com/vuejs/core/compare/v3.4.3...v3.4.4) (2024-01-03)
+
+
+### Bug Fixes
+
+* **compiler-sfc:** fix scss source map regression ([71d3121](https://github.com/vuejs/core/commit/71d3121b72c449351e718ee1539bdfa35b68bb32)), closes [#9970](https://github.com/vuejs/core/issues/9970) [#9969](https://github.com/vuejs/core/issues/9969)
+* **compiler-sfc:** use compilerOptions when re-parsing consumed AST ([d94d8d4](https://github.com/vuejs/core/commit/d94d8d4bffd1daf171a655b292745ffc3e63052d))
+* **defineModel:** support kebab-case/camelCase mismatches ([#9950](https://github.com/vuejs/core/issues/9950)) ([10ccb9b](https://github.com/vuejs/core/commit/10ccb9bfa0f5f3016207fc32b9611bab98e6f090))
+* **runtime-core:** correctly assign suspenseId to avoid conflicts with the default id ([#9966](https://github.com/vuejs/core/issues/9966)) ([0648804](https://github.com/vuejs/core/commit/06488047c184dae3070d0008379716690edceb46)), closes [#9944](https://github.com/vuejs/core/issues/9944)
+* **ssr:** avoid rendering transition-group slot content as a fragment ([#9961](https://github.com/vuejs/core/issues/9961)) ([0160264](https://github.com/vuejs/core/commit/0160264d677478ee928e8e851f39a9e94f97e337)), closes [#9933](https://github.com/vuejs/core/issues/9933)
+* **watch:** remove instance unmounted short circuit in getter of `watchEffect` ([#9948](https://github.com/vuejs/core/issues/9948)) ([f300a40](https://github.com/vuejs/core/commit/f300a4001ec40cadef2520267eb5841ab48cf005))
+* **watch:** revert watch behavior when watching shallow reactive objects ([a9f781a](https://github.com/vuejs/core/commit/a9f781a92cbc7de7b25c9e3d5b1295ca99eb6d86)), closes [#9965](https://github.com/vuejs/core/issues/9965)
+
+
+### Performance Improvements
+
+* **watch:** avoid double traverse for reactive source ([24d77c2](https://github.com/vuejs/core/commit/24d77c25ce5d5356adb5367beef1d23e6e340b35))
+
+
+
 ## [3.4.3](https://github.com/vuejs/core/compare/v3.4.2...v3.4.3) (2023-12-30)
 
 
index 0c0eb1b02a1e0653bc4c7f574df68cc49ffe1109..ee2404ca2067595a69e139000c3b0aa16ab54936 100644 (file)
@@ -1,6 +1,6 @@
 {
   "private": true,
-  "version": "3.4.3",
+  "version": "3.4.4",
   "packageManager": "pnpm@8.14.0",
   "type": "module",
   "scripts": {
index d310ab7f122bdaac4862c8c58f3466413e2c991d..1c7692811c4f1ca01b1f2454ffca97005fad17a9 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-core",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/compiler-core",
   "main": "index.js",
   "module": "dist/compiler-core.esm-bundler.js",
index 71cdb0832566a94db5b0acab34a7c4cfa6a5163c..81904228febbdf88a5aa36e91e831da82d546dca 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-dom",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/compiler-dom",
   "main": "index.js",
   "module": "dist/compiler-dom.esm-bundler.js",
index 04fddbd81f75584659e3caff62f7db757414e34b..ba1ec3ce6e3a88e914518c23a818d7e2ae919088 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-sfc",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/compiler-sfc",
   "main": "dist/compiler-sfc.cjs.js",
   "module": "dist/compiler-sfc.esm-browser.js",
index 3ef67c47cca8293bc1d5fd80af416b14207bb643..cb769f12087f7ac57e52fbbc5208a8efd997d31d 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-ssr",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/compiler-ssr",
   "main": "dist/compiler-ssr.cjs.js",
   "types": "dist/compiler-ssr.d.ts",
index 618b38c162ead6808f19df07b379b82f7cb671db..e42c4517a7e1f264ef5b5b2f717b5d47f3d9d482 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/reactivity",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/reactivity",
   "main": "index.js",
   "module": "dist/reactivity.esm-bundler.js",
index 01a2e70899d9f186d2236a14cda4ba863ea73ab4..14981ebc616afbe341fee13ba0c5dd8c8052a44d 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-core",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/runtime-core",
   "main": "index.js",
   "module": "dist/runtime-core.esm-bundler.js",
index cea1db55e8dca83609ad9a885e5c556e2c769ddf..71c3a7e5de011450e8572265f1a89a4cd311b80e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-dom",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/runtime-dom",
   "main": "index.js",
   "module": "dist/runtime-dom.esm-bundler.js",
index da1400f6adc67ad9b832dc56434cb983dfa0fa55..1c1ce915beeab50093ff3ac6706e765d05e62d7e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/server-renderer",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "@vue/server-renderer",
   "main": "index.js",
   "module": "dist/server-renderer.esm-bundler.js",
index 2cfaf25a648d7effe502d3cd6a1ba8f08255b3f9..6c46a5841e13f051b8e0a531a12c2b1505116b01 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/shared",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "internal utils shared across @vue packages",
   "main": "index.js",
   "module": "dist/shared.esm-bundler.js",
index b99ffb564ccf02450678b26446031012c4ca28d1..b40b0ccad68d97d1cb99ac9acce7b6746347af94 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compat",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "Vue 3 compatibility build for Vue 2",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",
index 8bf44f74bbb0b3bc01b8055aaa6815103b3dca2d..ca8d9b1960827e765eecbecefe107ca8c7f7097e 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "vue",
-  "version": "3.4.3",
+  "version": "3.4.4",
   "description": "The progressive JavaScript framework for building modern web UI.",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",