From b9c111977e67c0c0f66b8e6a434b7f7e0a7e7f1a Mon Sep 17 00:00:00 2001 From: "Daniel D. Beck" Date: Tue, 28 Jan 2025 16:51:06 +0100 Subject: [PATCH 1/2] Add notes and version numbers to AggregateError serialization I wasn't super satisfied with merging https://github.com/mdn/browser-compat-data/pull/25744 as is. --- javascript/builtins/AggregateError.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/javascript/builtins/AggregateError.json b/javascript/builtins/AggregateError.json index 78a8df6075fb1d..98d436395fdc9c 100644 --- a/javascript/builtins/AggregateError.json +++ b/javascript/builtins/AggregateError.json @@ -142,7 +142,8 @@ "mdn_url": "https://developer.mozilla.org/docs/Glossary/Serializable_object", "support": { "chrome": { - "version_added": false + "version_added": "98", + "notes": "`AggregateError` serializes to the `Error` type, without additional properties." }, "chrome_android": "mirror", "deno": { @@ -151,7 +152,7 @@ "edge": "mirror", "firefox": { "version_added": "103", - "notes": "Serialized properties: `name`, `message`, `cause`, `errors`." + "notes": "`AggregateError` serializes to the `AggregateError` type, with properties `name`, `message`, `cause`, and `errors`." }, "firefox_android": "mirror", "ie": { @@ -164,7 +165,7 @@ "opera": "mirror", "opera_android": "mirror", "safari": { - "version_added": false + "version_added": "17" }, "safari_ios": "mirror", "samsunginternet_android": "mirror", From 1745195ab665cfc4aad4e0bc0ea10ae4f12bacbd Mon Sep 17 00:00:00 2001 From: Claas Augner <495429+caugner@users.noreply.github.com> Date: Wed, 29 Jan 2025 10:52:14 +0100 Subject: [PATCH 2/2] AggregateError serialization is no longer experimental --- javascript/builtins/AggregateError.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/javascript/builtins/AggregateError.json b/javascript/builtins/AggregateError.json index 98d436395fdc9c..38cc96821e3ec9 100644 --- a/javascript/builtins/AggregateError.json +++ b/javascript/builtins/AggregateError.json @@ -173,7 +173,7 @@ "webview_ios": "mirror" }, "status": { - "experimental": true, + "experimental": false, "standard_track": true, "deprecated": false }