`.
+
+### `ToggleButton`
+
+- An issue was fixed where `aria-pressed` used to still change on `ToggleButton` click when the component was `disabledFocusable`. This is no longer the case and the component now behaves correctly.
+
+### `Tooltip`
+
+- `Tooltip` has a new required prop `relationship`. It describes how the tooltip is related to its child (trigger), and is used to set the appropriate aria properties on the trigger element. Its values can be:
+ - `label` - The tooltip is the only text label for a control (for example an icon-only button).
+ - `description` - The tooltip is extra descriptive text for a control that has another label.
+ - `inaccessible` - The tooltip's content is not available to accessibility tools. This is not recommended unless the content is accessible in some other way.
+- Native props now must go on the `content` slot instead of the `Tooltip` itself.
+ - This only applies to HTMLElement props that are forwarded the Tooltip's `` element; it doesn't apply to Tooltip-specific props like `appearance="inverted"`. This example would need to change:
+ ```diff
+ -
+ +
+ ```
+ - This example is fine because `relationship="label"` is a Tooltip prop.
+ ```diff
+
+ ```
+- The `inverted` prop was removed. Use `appearance="inverted"` instead.
+- The `triggerAriaAttribute` prop was removed. Use the `relationship` prop instead.