@php // CHANGELOG.md uses German Keep-a-Changelog headings as the canonical section keys; // map each to a localized display label + a badge tone. $sectionKey = [ 'Hinzugefügt' => 'added', 'Geändert' => 'changed', 'Behoben' => 'fixed', 'Sicherheit' => 'security', 'Entfernt' => 'removed', 'Veraltet' => 'deprecated', ]; $sectionTone = [ 'added' => 'accent', 'changed' => 'cyan', 'fixed' => 'neutral', 'security' => 'accent', 'removed' => 'neutral', 'deprecated' => 'neutral', ]; $sectionLabel = fn (string $g): string => isset($sectionKey[$g]) ? __('versions.section_'.$sectionKey[$g]) : $g; $tone = fn (string $g): string => $sectionTone[$sectionKey[$g] ?? ''] ?? 'neutral'; $repoHost = parse_url($repository, PHP_URL_HOST); $repoPath = trim((string) parse_url($repository, PHP_URL_PATH), '/'); $isUpdate = $updateState === 'update'; @endphp
{{ __('versions.eyebrow') }}
Clusev v{{ $version }}
@if ($updateStatus) {{ $updateStatus }} @else {{ __('versions.banner_default') }} @endif
{{ __('versions.changelog_empty') }}
@endforelse{{ __('versions.update_hint') }}
docker compose -f docker-compose.prod.yml pull docker compose -f docker-compose.prod.yml up -d artisan migrate --force