Introduce a node event for canonical reference updates
1 passed
2 pending
(3 total)
View logs
modified CHANGELOG.md
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-node/src/test/simulator.rs
@@ -663,6 +663,7 @@ where
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-node/src/tests.rs
@@ -1581,6 +1581,7 @@ fn test_queued_fetch_from_ann_same_rid() {
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle-node/src/worker/fetch.rs
@@ -18,7 +18,7 @@ use radicle::storage::{
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -131,9 +131,13 @@ impl Handle {
|
|
|
|
|
|
| - | |
| - | |
| - | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -150,6 +154,7 @@ impl Handle {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -359,17 +364,21 @@ where
|
|
|
|
|
|
| - | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -417,9 +426,11 @@ fn set_canonical_refs(repo: &Repository, applied: &Applied) -> Result<(), error:
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
|
|
|
| - | |
| + | |
|
modified crates/radicle-protocol/src/service.rs
@@ -1187,6 +1187,7 @@ where
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -1208,6 +1209,12 @@ where
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
modified crates/radicle-protocol/src/worker/fetch.rs
@@ -1,14 +1,17 @@
|
|
|
|
| - | |
| + | |
|
|
|
|
| + | |
|
|
|
|
|
|
|
|
|
|
|
|
| + | |
| + | |
|
|
|
|
|
@@ -21,6 +24,7 @@ impl FetchResult {
|
|
|
|
|
|
| + | |
|
|
|
|
|
@@ -28,11 +32,41 @@ impl FetchResult {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
|
|
|
|
|
| + | |
|
|
|
|
|
modified crates/radicle/src/node/events.rs
@@ -9,7 +9,7 @@ use std::time;
|
|
|
|
|
|
| - | |
| + | |
|
|
|
|
|
@@ -122,6 +122,11 @@ pub enum Event {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|
@@ -214,6 +219,20 @@ impl<T: Clone> Emitter<T> {
|
|
|
|
|
|
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
| + | |
|
|
|
|
|