diff --git a/docs/devupdate.md b/docs/devupdate.md
index d282922ab3..d5d12a82c7 100644
--- a/docs/devupdate.md
+++ b/docs/devupdate.md
@@ -40,6 +40,30 @@ will only update the second enrol instance.
A new method `enrol_plugin:find_instance()` is added to the enrol plugin interface to allow plugins to find an existing instance of the same type in the course. If you want your enrolment method to be supported in CSV course upload, you need to implement this [method](./apis/plugintypes/enrol#enrol_pluginfind_instance-stdclass)
+## Bootstrap preparations for version 5
+
+
+
+Some of the Bootstrap 4 classes will deprecated or dropped in its version 5. To prepare for this, some of the current Bootstrap 4 classes usages have been replaced with version 5 compatible classes. This will help us to upgrade to Bootstrap 5 in the future.
+
+- Badge colour class helpers `.badge-*` have been replaced with background utilities (use `.bg-primary` instead of `.badge-primary`) combined with the corresponding text colour classes (`.text-dark` or `.text-white`) to meet accessibility contrast.
+- The `.badge-pill` class has been replaced with `.rounded-pill`
+
+:::info Badges refactor example
+
+The following code:
+
+```html
+Error badge
+```
+
+should be replaced with:
+
+```html
+Error badge
+```
+:::
+
## Previous versions
- [Moodle 4.3 developer update](./4.3/devupdate)