diff --git a/docs/devupdate.md b/docs/devupdate.md index d282922ab3..e0ff47dae2 100644 --- a/docs/devupdate.md +++ b/docs/devupdate.md @@ -4,6 +4,7 @@ tags: - Core development - Moodle 4.4 --- +import { ValidExample, InvalidExample } from '@site/src/components'; @@ -40,6 +41,31 @@ 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 be 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` + + + +```html +Error badge +``` + + + + + +```html +Error badge +``` + + + ## Previous versions - [Moodle 4.3 developer update](./4.3/devupdate)