From c63ff25236551a670ece5b70aa2319b56bb5b657 Mon Sep 17 00:00:00 2001 From: Reid Barber Date: Fri, 16 Jan 2026 12:52:49 -0600 Subject: [PATCH 1/2] update parcel patch to remove extra Buffer.from() (#9498) --- patches/@parcel+core+2.16.3.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/patches/@parcel+core+2.16.3.patch b/patches/@parcel+core+2.16.3.patch index f9828c9cc33..bc0c25c61ed 100644 --- a/patches/@parcel+core+2.16.3.patch +++ b/patches/@parcel+core+2.16.3.patch @@ -8,9 +8,9 @@ index 1234567..abcdefg 100644 } - boundaryStr = replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength); - let strUpToBoundary = replaced.subarray(0, replacedLength - BOUNDARY_LENGTH); -+ // Copy buffers to avoid reuse issues - subarray returns a view that can be ++ // Copy buffer to avoid reuse issues - subarray returns a view that can be + // corrupted if the underlying buffer is modified before the data is written -+ boundaryStr = Buffer.from(replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength)); ++ boundaryStr = replaced.subarray(replacedLength - BOUNDARY_LENGTH, replacedLength); + let strUpToBoundary = Buffer.from(replaced.subarray(0, replacedLength - BOUNDARY_LENGTH)); cb(null, strUpToBoundary); }, From d9292a9ed6c8b7bebdd56bd094f9d1dbe089f83a Mon Sep 17 00:00:00 2001 From: Reid Barber Date: Fri, 16 Jan 2026 12:53:02 -0600 Subject: [PATCH 2/2] document which slots are available in Dialog (#9497) --- packages/dev/s2-docs/pages/react-aria/Modal.mdx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/dev/s2-docs/pages/react-aria/Modal.mdx b/packages/dev/s2-docs/pages/react-aria/Modal.mdx index 68de3cfe95b..244b54352ca 100644 --- a/packages/dev/s2-docs/pages/react-aria/Modal.mdx +++ b/packages/dev/s2-docs/pages/react-aria/Modal.mdx @@ -187,7 +187,10 @@ const CustomTrigger = React.forwardRef((props, ref) => (