From 9fcfd7f0d1fc79a9e2449b5ddb3d01875ebb425f Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sun, 1 Dec 2024 09:58:14 -0500 Subject: [PATCH] docs: note when boundaries were added (#14487) --- documentation/docs/05-special-elements/01-svelte-boundary.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/documentation/docs/05-special-elements/01-svelte-boundary.md b/documentation/docs/05-special-elements/01-svelte-boundary.md index 2e9f85c83a..d0a2fb9ae9 100644 --- a/documentation/docs/05-special-elements/01-svelte-boundary.md +++ b/documentation/docs/05-special-elements/01-svelte-boundary.md @@ -6,6 +6,9 @@ title: ... ``` +> [!NOTE] +> This feature was added in 5.3.0 + Boundaries allow you to guard against errors in part of your app from breaking the app as a whole, and to recover from those errors. If an error occurs while rendering or updating the children of a ``, or running any [`$effect`]($effect) functions contained therein, the contents will be removed.