Merge pull request #257599 from Luflosi/update/kubo-migrator

kubo-migrator: add migration from 14 to 15

authored by

Weijia Wang and committed by
GitHub
7c190346 7dfb9bc0

+6 -4
+3 -1
pkgs/applications/networking/kubo-migrator/all-migrations.nix
··· 36 36 }; 37 37 38 38 # Concatenation of the latest repo version and the version of that migration 39 - version = "14.1.0.0"; 39 + version = "15.1.0.1"; 40 40 41 + fs-repo-14-to-15 = fs-repo-common "fs-repo-14-to-15" "1.0.1"; 41 42 fs-repo-13-to-14 = fs-repo-common "fs-repo-13-to-14" "1.0.0"; 42 43 fs-repo-12-to-13 = fs-repo-common "fs-repo-12-to-13" "1.0.0"; 43 44 fs-repo-11-to-12 = fs-repo-common "fs-repo-11-to-12" "1.0.2"; ··· 54 55 fs-repo-0-to-1 = fs-repo-common "fs-repo-0-to-1" "1.0.1"; 55 56 56 57 all-migrations = [ 58 + fs-repo-14-to-15 57 59 fs-repo-13-to-14 58 60 fs-repo-12-to-13 59 61 fs-repo-11-to-12
+3 -3
pkgs/applications/networking/kubo-migrator/unwrapped.nix
··· 11 11 owner = "ipfs"; 12 12 repo = "fs-repo-migrations"; 13 13 # Use the latest git tag here, since v2.0.2 does not 14 - # contain the latest migration fs-repo-13-to-14/v1.0.0 14 + # contain the latest migration fs-repo-14-to-15/v1.0.1 15 15 # The fs-repo-migrations code itself is the same between 16 16 # the two versions but the migration code, which is built 17 17 # into separate binaries, is not. 18 - rev = "fs-repo-13-to-14/v1.0.0"; 19 - hash = "sha256-y0IYSKKZlFbPrTUC6XqYKhS3a79rieNGBL58teWMlC4="; 18 + rev = "fs-repo-14-to-15/v1.0.1"; 19 + hash = "sha256-oIGDZr0cv+TIl5glHr3U+eIqAlPAOWyFzgfQGGM+xNM="; 20 20 }; 21 21 22 22 sourceRoot = "${src.name}/fs-repo-migrations";