import React from "react"; const versions = [ { version: '2.15.0', vtag: '2.15.0' }, { version: '2.14.0', vtag: '2.14.0' }, { version: '2.13.0', vtag: '2.13.0' }, { version: '2.12.1', vtag: '2.12.1' }, { version: '2.12.0', vtag: '2.12.0' }, { version: '2.11.1', vtag: '2.11.1' }, { version: '2.11.0', vtag: '2.11.0' }, { version: '2.10.1', vtag: '2.10.1' }, { version: '2.10.0', vtag: '2.10.0' }, { version: '2.9.0', vtag: '2.9.0' }, { version: '2.8.0', vtag: '2.8.0' }, { version: '2.7.0', vtag: '2.7.0' }, { version: '2.6.0', vtag: '2.6.0' }, { version: '2.5.1', vtag: '2.5.1' }, { version: '2.5.0', vtag: '2.5.0' }, { version: '2.4.0', vtag: '2.4.0-incubating' }, { version: '2.3.0', vtag: '2.3.0-incubating' }, { version: '2.2.0', vtag: '2.2.0-incubating' }, { version: '2.1.0', vtag: '2.1.0-incubating' }, ] type ReleaseData = { name: string, archive: string, checksum: string, signature: string, github: string, } function createReleaseData(version: string, vtag?: string): ReleaseData { const fixedVTag = vtag ?? version; const tarballURL = `https://www.apache.org/dyn/closer.lua/kvrocks/${version}/apache-kvrocks-${fixedVTag}-src.tar.gz` const signURL = `https://downloads.apache.org/kvrocks/${version}/apache-kvrocks-${fixedVTag}-src.tar.gz` const githubURL = `https://github.com/apache/kvrocks/releases/tag/v${version}` return { name: fixedVTag, archive: tarballURL, checksum: `${signURL}.sha512`, signature: `${signURL}.asc`, github: githubURL, }; } export default function Releases(): JSX.Element { const releases = versions.map(({ version, vtag }) => createReleaseData(version, vtag)) return <>
| Name | Archive | Checksum | Signature | GitHub |
|---|---|---|---|---|
| {v.name} | tarball | sha512 | asc | release note |