{{ texts.changelogHeading }}

{{ texts.changelogIntro }}

@if (!hasEntries()) {

{{ texts.changelogEmpty }}

} @else {
    @for (entry of entries(); track entry.version) {
  1. v{{ entry.version }} {{ entry.date }}
    @if (entry.kind === 'internal') {

    {{ texts.changelogInternalRelease }}

    } @else {
      @for (h of entry.highlights; track $index) {
    • @if (h.packages.length) {
        @for (p of h.packages; track p) {
      • {{ p }}
      • }
      }
    • }
    }
  2. }
}