kubo-migrator: add migration from 14 to 15

https://github.com/ipfs/fs-repo-migrations/releases/tag/fs-repo-14-to-15%2Fv1.0.1

This will be used to upgrade the Kubo repo when updating to Kubo 0.23.
This commit is contained in:
Luflosi 2023-09-25 21:25:47 +02:00
parent 81aa88d4c4
commit 888e3d7d5a
No known key found for this signature in database
GPG Key ID: 4E41E29EDCC345D0
2 changed files with 6 additions and 4 deletions

View File

@ -36,8 +36,9 @@ let
};
# Concatenation of the latest repo version and the version of that migration
version = "14.1.0.0";
version = "15.1.0.1";
fs-repo-14-to-15 = fs-repo-common "fs-repo-14-to-15" "1.0.1";
fs-repo-13-to-14 = fs-repo-common "fs-repo-13-to-14" "1.0.0";
fs-repo-12-to-13 = fs-repo-common "fs-repo-12-to-13" "1.0.0";
fs-repo-11-to-12 = fs-repo-common "fs-repo-11-to-12" "1.0.2";
@ -54,6 +55,7 @@ let
fs-repo-0-to-1 = fs-repo-common "fs-repo-0-to-1" "1.0.1";
all-migrations = [
fs-repo-14-to-15
fs-repo-13-to-14
fs-repo-12-to-13
fs-repo-11-to-12

View File

@ -11,12 +11,12 @@ buildGoModule rec {
owner = "ipfs";
repo = "fs-repo-migrations";
# Use the latest git tag here, since v2.0.2 does not
# contain the latest migration fs-repo-13-to-14/v1.0.0
# contain the latest migration fs-repo-14-to-15/v1.0.1
# The fs-repo-migrations code itself is the same between
# the two versions but the migration code, which is built
# into separate binaries, is not.
rev = "fs-repo-13-to-14/v1.0.0";
hash = "sha256-y0IYSKKZlFbPrTUC6XqYKhS3a79rieNGBL58teWMlC4=";
rev = "fs-repo-14-to-15/v1.0.1";
hash = "sha256-oIGDZr0cv+TIl5glHr3U+eIqAlPAOWyFzgfQGGM+xNM=";
};
sourceRoot = "${src.name}/fs-repo-migrations";