Member Junction
    Preparing search index...
    interface VersionInfo {
        DownloadUrl: string;
        Name: string;
        Notes?: string;
        Prerelease: boolean;
        ReleaseDate: Date;
        Tag: string;
    }
    Index

    Properties

    DownloadUrl: string

    Direct URL to the release ZIP archive for download. Prefers an uploaded .zip asset if available; otherwise uses the GitHub-generated zipball_url (source code archive).

    Name: string

    Human-readable display name for the release. Falls back to the tag name if no formal release title is set on GitHub.

    Notes?: string

    Short excerpt from the release notes (first 500 characters), if available. undefined for tag-based fallback versions that have no release notes.

    Prerelease: boolean

    Whether this release is marked as a prerelease on GitHub. Prereleases are excluded from GitHubReleaseProvider.ListReleases unless includePrerelease is true.

    ReleaseDate: Date

    Date when the release was published on GitHub. For tag-based fallback versions, this is the commit date of the tagged commit.

    Tag: string

    Git tag associated with this release (e.g., "v5.1.0"). Used as the primary identifier for version selection and checkpoint state.