Redash のリリースビルドの場所を探す

ここ見ればわかる。

github.com

簡単。 jq はお好みでどうぞ。

$ curl https://version.redash.io/api/releases | jq .
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100  3424  100  3424    0     0   4626      0 --:--:-- --:--:-- --:--:--  4620
[
  {
    "id": 28,
    "version": "4.0.1",
    "channel": "stable",
    "download_url": "https://s3.amazonaws.com/redash-releases/redash.4.0.1.b4038.tar.gz",
    "backward_compatible": false,
    "released_at": "2018-05-02T00:00:00.000Z",
    "description": "* Before doing an upgrade, please make sure you have a backup.\n* If you have any issues, please refer to the troubleshooting section in the upgrade guide:\n  https://redash.io/help/open-source/admin-guide/how-to-upgrade\n* If the upgrade guide doesn't help, you can ask for help on the forum (https://discuss.redash.io).   \n\nFull CHANGELOG for this release: https://github.com/getredash/redash/blob/master/CHANGELOG.md",
    "docker_image": "redash/redash:4.0.1.b4038"
  },
  {
    "id": 27,
    "version": "4.0.0",
    "channel": "stable",
    "download_url": "https://s3.amazonaws.com/redash-releases/redash.4.0.0.b3948.tar.gz",
    "backward_compatible": false,
    "released_at": "2018-04-16T00:00:00.000Z",
    "description": "* Before doing an upgrade, please make sure you have a backup.\n* If you have any issues, please refer to the troubleshooting section in the upgrade guide:\n  https://redash.io/help/open-source/admin-guide/how-to-upgrade\n* If the upgrade guide doesn't help, you can ask for help on the forum (https://discuss.redash.io).   \n\nFull CHANGELOG for this release: https://github.com/getredash/redash/blob/master/CHANGELOG.md",
    "docker_image": "redash/redash:4.0.0.b3948"
  },
  {
    "id": 23,
    "version": "3.0.0",
    "channel": "stable",
    "download_url": "https://s3.amazonaws.com/redash-releases/redash.3.0.0.b3134.tar.gz",
    "backward_compatible": true,
    "released_at": "2017-11-13T00:00:00.000Z",
    "description": "* Before doing an upgrade, please make sure you have a backup.\n* If you have any issues, please refer to the troubleshooting section in the upgrade guide:\n  https://redash.io/help-onpremise/maintenance/how-to-upgrade-redash.html\n* If the upgrade guide doesn't help, you can ask for help on the forum (https://discuss.redash.io).   \n\nFull CHANGELOG for this release: https://github.com/getredash/redash/blob/master/CHANGELOG.md",
    "docker_image": "redash/redash:3.0.0.b3134"
  },
  {
    "id": 22,
    "version": "2.0.1",
    "channel": "stable",
    "download_url": "https://s3.amazonaws.com/redash-releases/redash.2.0.1.b3080.tar.gz",
    "backward_compatible": true,
    "released_at": "2017-10-22T00:00:00.000Z",
    "description": "* Before doing an upgrade, please make sure you have a backup.\n* If you have any issues, please refer to the troubleshooting section in the upgrade guide:\n  https://redash.io/help-onpremise/maintenance/how-to-upgrade-redash.html\n* If the upgrade guide doesn't help, you can ask for help on the forum (https://discuss.redash.io).   \n\nFull CHANGELOG for this release:\nhttps://github.com/getredash/redash/blob/master/CHANGELOG.md#v201---2017-10-22",
    "docker_image": null
  },
  {
    "id": 21,
    "version": "2.0.0",
    "channel": "stable",
    "download_url": "https://s3.amazonaws.com/redash-releases/redash.2.0.0.b2990.tar.gz",
    "backward_compatible": true,
    "released_at": "2017-08-08T00:00:00.000Z",
    "description": "* Before doing an upgrade, please make sure you have a backup.\n* If you have any issues, please refer to the troubleshooting section in the upgrade guide:\n  https://redash.io/help-onpremise/maintenance/how-to-upgrade-redash.html\n* If the upgrade guide doesn't help, you can ask for help on the forum (https://discuss.redash.io).   \n\nFull CHANGELOG for this release: https://github.com/getredash/redash/blob/master/CHANGELOG.md#v200---2017-08-08",
    "docker_image": null
  }
]

これがどういう時に欲しくなるかというと、VM で動いてる Ubuntu に特定のバージョンをインストールする時にバージョンとビルド番号が欲しくなる。

2.0.1 から 4.0.1 へのアップグレードを考えているので、検証を進めていこうと思う。