async function get(req, res, next) {
  try {
    const changelogs = await getChangelogs();
    res.json(ok(changelogs));
  } catch (err) {