diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5886ff74d65..f5a5ea07b59 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,230 @@
# Versions
+## v1.0.0-beta.5
+
+_Nov 17, 2025_
+
+### General changes
+
+- **Breaking change:** Replace `trackAnchor` with `disableAnchorTracking`.
+ If you were using `trackAnchor={false}`, be sure to update your usage to `disableAnchorTracking` instead.
+ (#3188) by @mnajdova
+- **Breaking change:** Rename `loop` to `loopFocus` (#3186) by @mnajdova
+- Fix type portability (#2912) by @atomiks
+- Accept a function for the `style` prop (#3038) by @mnajdova
+- Create portal elements inside React (#2889) by @atomiks
+- Avoid applying `hidden` attribute to indicator elements when they specify `keepMounted` and are invisible (#3228) by @atomiks
+- Fix crash in Next.js 16 when accessing `render.props.ref` (#3231) by @atomiks
+
+### Accordion
+
+- **Breaking change:** Change `multiple` prop to be false by default and add a demo (#3141) by @mnajdova
+- Fix flaky exit transition (#3101) by @atomiks
+
+### Alert Dialog
+
+- Fix `initialFocus` as function being called on close (#2949) by @atomiks
+- Support detached triggers (#2974) by @michaldudak
+- Place `overflow: hidden` on `
` for overlay scrollbars by default. Avoids sticky elements shifting if `` has an `overflow` style specified. (#3083) by @atomiks
+- Add `` part (#2808) by @atomiks
+
+### Autocomplete
+
+- **Breaking change:** Refactor `alwaysSubmitOnEnter` to `submitOnItemClick` prop.
+ If you were using `alwaysSubmitOnEnter`, be sure to update your usage to `submitOnItemClick` instead.
+ (#3018) by @atomiks
+- Prevent blocking filtering while composing text on Android (#2944) by @atomiks
+- Add empty state to `List.State` (#2934) by @atomiks
+- Fix `initialFocus` as function being called on close (#2949) by @atomiks
+- Add `role="combobox"` to `` if `` is inside Popup (#2973) by @atomiks
+- Fix stale `onItemHighlighted` data when filtering with `autoHighlight` (#2829) by @atomiks
+- Add empty and side styling attributes on `` (#2926) by @atomiks
+- Fix `` component return type for React 17 (#3050) by @atomiks
+- Support `autoHighlight: "always"`, and add `keepHighlight`, `highlightItemOnHover` props (#2976) by @atomiks
+- Keep focus on input when pressing list element (#3092) by @atomiks
+- Allow Esc to bubble if `` is not used (#2935) by @atomiks
+- Add `dialog` role to popup when input is inside (#3213) by @atomiks
+
+### Button
+
+- New `