Unverified Commit 9c878608 authored by Luflosi's avatar Luflosi
Browse files

kubo-migrator: add migration from 12 to 13

https://github.com/ipfs/fs-repo-migrations/releases/tag/fs-repo-12-to-13%2Fv1.0.0
This will be used to upgrade the Kubo repo when updating to Kubo 0.18.
parent 540fb7a2
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -36,8 +36,9 @@ let
  };

  # Concatenation of the latest repo version and the version of that migration
  version = "12.1.0.2";
  version = "13.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";
  fs-repo-10-to-11 = fs-repo-common "fs-repo-10-to-11" "1.0.1";
  fs-repo-9-to-10  = fs-repo-common "fs-repo-9-to-10"  "1.0.1";
@@ -52,6 +53,7 @@ let
  fs-repo-0-to-1   = fs-repo-common "fs-repo-0-to-1"   "1.0.1";

  all-migrations = [
    fs-repo-12-to-13
    fs-repo-11-to-12
    fs-repo-10-to-11
    fs-repo-9-to-10
+3 −3
Original line number Diff line number Diff line
@@ -15,13 +15,13 @@ buildGoModule rec {
    # 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-11-to-12/v1.0.2";
    sha256 = "sha256-CG4utwH+/+Igw+SP3imhl39wijlB53UGtkJG5Mwh+Ik=";
    rev = "fs-repo-12-to-13/v1.0.0";
    hash = "sha256-QQone7E2Be+jVfnrwqQ1Ny4jo6mSDHhaY3ErkNdn2f8=";
  };

  sourceRoot = "source/fs-repo-migrations";

  vendorSha256 = "sha256-/DqkBBtR/nU8gk3TFqNKY5zQU6BFMc3N8Ti+38mi/jk=";
  vendorHash = "sha256-/DqkBBtR/nU8gk3TFqNKY5zQU6BFMc3N8Ti+38mi/jk=";

  doCheck = false;