]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
release: v3.3.11 v3.3.11
authorEvan You <yyx990803@gmail.com>
Fri, 8 Dec 2023 06:13:52 +0000 (14:13 +0800)
committerEvan You <yyx990803@gmail.com>
Fri, 8 Dec 2023 06:13:52 +0000 (14:13 +0800)
14 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-transform/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 7ee102778943c1872734dd82b84845c3d75acc5a..8e55285374b6dad1f93e81b29d139cc6747aba8c 100644 (file)
@@ -1,3 +1,19 @@
+## [3.3.11](https://github.com/vuejs/core/compare/v3.3.10...v3.3.11) (2023-12-08)
+
+
+### Bug Fixes
+
+* **custom-element:** correctly handle number type props in prod ([#8989](https://github.com/vuejs/core/issues/8989)) ([d74d364](https://github.com/vuejs/core/commit/d74d364d62db8e48881af6b5a75ce4fb5f36cc35))
+* **reactivity:** fix mutation on user proxy of reactive Array ([6ecbd5c](https://github.com/vuejs/core/commit/6ecbd5ce2a7f59314a8326a1d193874b87f4d8c8)), closes [#9742](https://github.com/vuejs/core/issues/9742) [#9751](https://github.com/vuejs/core/issues/9751) [#9750](https://github.com/vuejs/core/issues/9750)
+* **runtime-dom:** fix width and height prop check condition ([5b00286](https://github.com/vuejs/core/commit/5b002869c533220706f9788b496b8ca8d8e98609)), closes [#9762](https://github.com/vuejs/core/issues/9762)
+* **shared:** handle Map with symbol keys in toDisplayString ([#9731](https://github.com/vuejs/core/issues/9731)) ([364821d](https://github.com/vuejs/core/commit/364821d6bdb1775e2f55a69bcfb9f40f7acf1506)), closes [#9727](https://github.com/vuejs/core/issues/9727)
+* **shared:** handle more Symbol cases in toDisplayString ([983d45d](https://github.com/vuejs/core/commit/983d45d4f8eb766b5a16b7ea93b86d3c51618fa6))
+* **Suspense:** properly get anchor when mount fallback vnode ([#9770](https://github.com/vuejs/core/issues/9770)) ([b700328](https://github.com/vuejs/core/commit/b700328342e17dc16b19316c2e134a26107139d2)), closes [#9769](https://github.com/vuejs/core/issues/9769)
+* **types:** ref() return type should not be any when initial value is any ([#9768](https://github.com/vuejs/core/issues/9768)) ([cdac121](https://github.com/vuejs/core/commit/cdac12161ec27b45ded48854c3d749664b6d4a6d))
+* **watch:** should not fire pre watcher on child component unmount ([#7181](https://github.com/vuejs/core/issues/7181)) ([6784f0b](https://github.com/vuejs/core/commit/6784f0b1f8501746ea70d87d18ed63a62cf6b76d)), closes [#7030](https://github.com/vuejs/core/issues/7030)
+
+
+
 ## [3.3.10](https://github.com/vuejs/core/compare/v3.3.9...v3.3.10) (2023-12-04)
 
 
index 1bbb0b46c665319f9f266041f637cc2524fb6f0d..926f6e00b245d64443e75cc8abe4df67febbd5fa 100644 (file)
@@ -1,6 +1,6 @@
 {
   "private": true,
-  "version": "3.3.10",
+  "version": "3.3.11",
   "packageManager": "pnpm@8.11.0",
   "type": "module",
   "scripts": {
index 91a66d199453e93841b2cb1917a4213b3a318143..483e46fd69b640b7c95306918edf09da7f35fdcc 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-core",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/compiler-core",
   "main": "index.js",
   "module": "dist/compiler-core.esm-bundler.js",
index 4c30caf9b2ae13f0f3179f44e011087671c580ee..7210a566530ee91c4c7c97ffcfaea7aed309aad8 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-dom",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/compiler-dom",
   "main": "index.js",
   "module": "dist/compiler-dom.esm-bundler.js",
index 25e2e82fd8f04b02613eb68b290f3c08548d626b..aa609f40322ababa8097e38f55bd14a91b4d1ef6 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-sfc",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/compiler-sfc",
   "main": "dist/compiler-sfc.cjs.js",
   "module": "dist/compiler-sfc.esm-browser.js",
index 465c415e2ddb32c37cc629ce4af60a6eebe1632a..ae66d142578bde3baf483b48a8458e86da5f13ce 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compiler-ssr",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/compiler-ssr",
   "main": "dist/compiler-ssr.cjs.js",
   "types": "dist/compiler-ssr.d.ts",
index 5c7f5e5e0bf0591002e052cccbab31113e27fef0..4baea5d3a5526b2cdf47cbfef1dd0f13dcf45cb1 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/reactivity-transform",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/reactivity-transform",
   "main": "dist/reactivity-transform.cjs.js",
   "files": [
index 4bdece2e5d8760a93053c0bd2b8bbe8afddd4ceb..570372a3645bb7e8cde3ff8baabd37b7c4441890 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/reactivity",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/reactivity",
   "main": "index.js",
   "module": "dist/reactivity.esm-bundler.js",
index 8fc7be25d97a33c48b04bd89df6b6c783dbaf4f1..040e1b4b3ff97993863528586873fbdf13c0d5c9 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-core",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/runtime-core",
   "main": "index.js",
   "module": "dist/runtime-core.esm-bundler.js",
index b3f4fd0ef650598e459864fdbbd77413dbc6b0cf..5a39b0a796e437dbb22ab8e9cd5aa2e153cfba98 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/runtime-dom",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/runtime-dom",
   "main": "index.js",
   "module": "dist/runtime-dom.esm-bundler.js",
index 8677443ae9e248a2660359ea697cade1bc4b1dbf..858d50e0cf26e3edaded4e664572fa5bce2cb97c 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/server-renderer",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "@vue/server-renderer",
   "main": "index.js",
   "module": "dist/server-renderer.esm-bundler.js",
index 34d64b60b98d23fbe3a30d780713dd77eb6af85e..28f4f2100c6fcf90cb8cf787859259f7c8cfc3d1 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/shared",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "internal utils shared across @vue packages",
   "main": "index.js",
   "module": "dist/shared.esm-bundler.js",
index 0a2a0927335fd206ee439c6fc5816f2a2b4e7eff..c23fe2621986b20d6015758fe399038fd36859a3 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "@vue/compat",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "Vue 3 compatibility build for Vue 2",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",
index 258327258358cd50dda0e8baf1e3c3539fe35cc5..d5840c5caed28a34d7fba84d4bb50f1cd82e1fc4 100644 (file)
@@ -1,6 +1,6 @@
 {
   "name": "vue",
-  "version": "3.3.10",
+  "version": "3.3.11",
   "description": "The progressive JavaScript framework for building modern web UI.",
   "main": "index.js",
   "module": "dist/vue.runtime.esm-bundler.js",