Skip to content

Commit

Permalink
kubo-migrator: add migration from 12 to 13
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Luflosi committed Jan 24, 2023
1 parent 5ea0dce commit 4ec0f34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,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";
Expand All @@ -39,6 +40,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
Expand Down
4 changes: 2 additions & 2 deletions pkgs/applications/networking/kubo-migrator/src.nix
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ stdenvNoCC.mkDerivation rec {
src = fetchFromGitHub {
owner = "ipfs";
repo = "fs-repo-migrations";
rev = "fs-repo-11-to-12/v1.0.2";
hash = "sha256-CG4utwH+/+Igw+SP3imhl39wijlB53UGtkJG5Mwh+Ik=";
rev = "fs-repo-12-to-13/v1.0.0";
hash = "sha256-QQone7E2Be+jVfnrwqQ1Ny4jo6mSDHhaY3ErkNdn2f8=";
};

patches = [
Expand Down

0 comments on commit 4ec0f34

Please sign in to comment.