Fix V21 backward compat filter and remove outdated comment

Co-authored-by: Meldiron <19310830+Meldiron@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-03-04 13:22:12 +00:00
co-authored by Meldiron
parent 1c018e7da9
commit 54c5188ff8
3 changed files with 192 additions and 1 deletions
@@ -32,6 +32,7 @@ class V21 extends Filter
protected function parseSite(array $content): array
{
$content = $this->parseSpecs($content);
unset($content['startCommand']);
return $content;
}
@@ -46,6 +47,7 @@ class V21 extends Filter
$content['specification'] = $content['buildSpecification'] ?? null;
unset($content['buildSpecification']);
unset($content['runtimeSpecification']);
unset($content['deploymentRetention']);
return $content;
}
}