website/layouts/_default/deprecations.html
{{ partial "breadcrumb.html" . }}
{{ partial "hero.html" . }}
{{ if gt (len $pending) 0 }}
{{ partial "heading.html" (dict "text" "Active Deprecations" "level" 2) }}
The current Vector release is v{{ $latest }}. Deprecated configuration and features are retained for at least one minor release before they are eligible for removal.
{{ range $pending }} {{ .what | markdownify }} Deprecated since {{ .deprecated_since }} {{ with .description }} {{ . | markdownify }} {{ end }} {{ end }}
{{ end }} {{ if gt (len $enacted) 0 }}
{{ partial "heading.html" (dict "text" "Past Deprecations" "level" 2) }}
These features have been removed from Vector since version 0.57.0, when the new deprecation system was introduced.
{{ range $enacted }} {{ .what | markdownify }} Deprecated since {{ .deprecated_since }} · Removed in {{ .removed_in }} {{ with .description }} {{ . | markdownify }} {{ end }} {{ end }}
{{ end }} {{ if and (eq (len $pending) 0) (eq (len $enacted) 0) }}
No deprecations at this time.
{{ end }}