Skip to content
Snippets Groups Projects

Issue #3280403: Show all updates for all supported branches in the current major on the update form

Merged Issue #3280403: Show all updates for all supported branches in the current major on the update form
Compare and
9 files
+ 459
80
Compare changes
  • Side-by-side
  • Inline
Files
9
@@ -199,4 +199,15 @@ final class ProjectInfo {
return FALSE;
}
/**
* Gets the supported branches of the project.
*
* @return string[]
* The supported branches.
*/
public function getSupportedBranches(): array {
$available_updates = $this->getAvailableProjects()[$this->name];
return isset($available_updates['supported_branches']) ? explode(',', $available_updates['supported_branches']) : [];
}
}
Loading