Skip to content
Merged
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
17 changes: 16 additions & 1 deletion migrations/54-60/removed-backward-incompatibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,21 @@ $table = new \Joomla\CMS\Table\Content($db);
- 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();
```

## `dispatchEvent` Proxy Functions Removed in View and Model

- PR: https://github.com/joomla/joomla-cms/pull/45431
Expand Down Expand Up @@ -275,7 +290,6 @@ Factory::getApplication()->bootComponent('actionlogs')->getMVCFactory()
->createModel('ActionlogConfig', 'Administrator')->getLogContentTypeParams('context');
```


### CMS Adapter classes have been remoed

- PR: https://github.com/joomla/joomla-cms/pull/43794
Expand Down Expand Up @@ -308,3 +322,4 @@ Factory::getApplication()->bootComponent('actionlogs')->getMVCFactory()
Restoring historical versions also restores linked metadata.
Extensions interacting with `#__ucm_history` may require schema or API updates.
**(more detail needed: schema differences and migration examples)**