Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions migrations/54-60/removed-backward-incompatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,3 +242,17 @@ $table = new \Joomla\CMS\Table\Content($db);
- PR: https://github.com/joomla/joomla-cms/pull/45425
- File: libraries/src/Application/WebApplication.php
- Description: The `$item_associations` was added to the `WebApplication` class for improved PHP 8.2 compatibility and is not used at all.

### fetchExtensionCompatibility of the UpdateController got removed

- PR: https://github.com/joomla/joomla-cms/pull/45436
- File: administrator/components/com_joomlaupdate/src/Controller/UpdateController.php
- Description: The `fetchExtensionCompatibility` function in the the `UpdateController` class got removed as the `batchextensioncompatibility` should be used:

```php
// Old:
$updateController->fetchExtensionCompatibility();

// New:
$updateController->batchextensioncompatibility();
```