diff --git a/docs/content/1.getting-started/2.migration.md b/docs/content/1.getting-started/2.migration.md
index a2eb08d9b4..6d3809a5a9 100644
--- a/docs/content/1.getting-started/2.migration.md
+++ b/docs/content/1.getting-started/2.migration.md
@@ -448,6 +448,31 @@ This change affects the following components: `Modal`, `Popover`, `Slideover`, `
This change affects the following components: `Modal`, `Slideover`.
::
+- The `prevent-close` prop in `Modal` and `Slideover` has been removed in favor of the `dismissible` prop that takes a boolean value:
+```diff
+
+-
++
+
+```
+
+- The `v-model` directive in `Pagination` has been renamed to `v-model:page` to control current page:
+
+```diff
+
+-
++
+
+```
+
+- The `change` event in `Select`, `SelectMenu` and `RadioGroup` now emits the native `change` event, not the new chnage value, which is now emitted in the `update:modelValue` event:
+
+```diff
+
+-
++
+```
+
### Changed composables
- The `useToast()` composable `timeout` prop has been renamed to `duration`: