From e259f2a032ef19aeb8654078bff4ce87992d03db Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 2 Feb 2024 09:39:05 -0600 Subject: [PATCH] feat: Add optional published_at field to NextflowRelease type Per @ewels request, the API on nf-co.re includes a "published_at" field with the date of each release. For future compatibility without breaking anything current, add an optional field that can handle this additional information. --- src/nextflow-release.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nextflow-release.ts b/src/nextflow-release.ts index 90ca97f..a3f1b1c 100644 --- a/src/nextflow-release.ts +++ b/src/nextflow-release.ts @@ -6,6 +6,7 @@ export type NextflowRelease = { isEdge: boolean binaryURL: string allBinaryURL: string + published_at?: string } /**