radicle-node: 1.4.0 -> 1.5.0 (#447452)

authored by

Felix Bargfeldt and committed by
GitHub
21182436 78170163

+4 -4
+1 -1
nixos/tests/radicle.nix
··· 203 with subtest("alice can receive the patch"): 204 alice.wait_until_succeeds("test 1 = \"$(rad stats | jq .local.patches)\"") 205 alice.succeed( 206 - f"cd /tmp/repo && rad patch show {bob_repo_patch1_pid} | grep 'opened by bob'", 207 f"cd /tmp/repo && rad patch checkout {bob_repo_patch1_pid}" 208 ) 209 assert alice.succeed("cat /tmp/repo/testfile") == "hello alice\n"
··· 203 with subtest("alice can receive the patch"): 204 alice.wait_until_succeeds("test 1 = \"$(rad stats | jq .local.patches)\"") 205 alice.succeed( 206 + f"cd /tmp/repo && rad patch show {bob_repo_patch1_pid} | grep -E '{bob_repo_patch1_pid[:7]} @ .+ by bob'", 207 f"cd /tmp/repo && rad patch checkout {bob_repo_patch1_pid}" 208 ) 209 assert alice.succeed("cat /tmp/repo/testfile") == "hello alice\n"
+3 -3
pkgs/by-name/ra/radicle-node/package.nix
··· 21 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "radicle-node"; 24 - version = "1.4.0"; 25 26 src = fetchFromRadicle { 27 seed = "seed.radicle.xyz"; 28 repo = "z3gqcJUoA1n9HaHKufZs5FCSGazv5"; 29 tag = "releases/${finalAttrs.version}"; 30 - hash = "sha256-e5Zelu3g8m9u5NtyABkIV4wOed9cq58xSaxginoDb2Q="; 31 leaveDotGit = true; 32 postFetch = '' 33 git -C $out rev-parse HEAD > $out/.git_head ··· 36 ''; 37 }; 38 39 - cargoHash = "sha256-64SDz0wHKcp/tPGDDOlCRFr3Z1q6cWOafhP0howSFhA="; 40 41 env.RADICLE_VERSION = finalAttrs.version; 42
··· 21 22 rustPlatform.buildRustPackage (finalAttrs: { 23 pname = "radicle-node"; 24 + version = "1.5.0"; 25 26 src = fetchFromRadicle { 27 seed = "seed.radicle.xyz"; 28 repo = "z3gqcJUoA1n9HaHKufZs5FCSGazv5"; 29 tag = "releases/${finalAttrs.version}"; 30 + hash = "sha256-/dWeG2jKCnfg7fwPP+BbRmEvM7rCppGYh2aeftcg3SY="; 31 leaveDotGit = true; 32 postFetch = '' 33 git -C $out rev-parse HEAD > $out/.git_head ··· 36 ''; 37 }; 38 39 + cargoHash = "sha256-4URBtN5lyzFPaLJUf/HPAL2ugRUa6sZhpDeiFR0W7cc="; 40 41 env.RADICLE_VERSION = finalAttrs.version; 42