radicle: Change names of bootstrap nodes

This commit is contained in:
Lorenz Leutgeb 2026-04-27 14:51:41 +02:00
parent 3bc8abdc29
commit 22287fd94a
No known key found for this signature in database
2 changed files with 9 additions and 4 deletions

View File

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## Domain Name Migration
Following a domain move of the project, the names of the bootstrap nodes change:
`{iris,rosa}.radicle.{xyz → network}`.
## New Features
- Teach `rad patch show` to show the full commit range for each revision.

View File

@ -42,7 +42,7 @@ pub mod seeds {
#[allow(clippy::unwrap_used)] // Value is manually verified.
NodeId::from_str("z6MkrLMMsiPWUcNPHcRajuMi9mDfYckSoJyPwwnknocNYPm7").unwrap(),
vec![
HostName::Dns("iris.radicle.xyz".to_owned()),
HostName::Dns("iris.radicle.network".to_owned()),
#[cfg(feature = "tor")]
#[allow(clippy::unwrap_used)] // Value is manually verified.
OnionAddrV3::from_str(
@ -60,7 +60,7 @@ pub mod seeds {
#[allow(clippy::unwrap_used)] // Value is manually verified.
NodeId::from_str("z6Mkmqogy2qEM2ummccUthFEaaHvyYmYBYh3dbe9W4ebScxo").unwrap(),
vec![
HostName::Dns("rosa.radicle.xyz".to_owned()),
HostName::Dns("rosa.radicle.network".to_owned()),
#[cfg(feature = "tor")]
#[allow(clippy::unwrap_used)] // Value is manually verified.
OnionAddrV3::from_str(
@ -89,11 +89,11 @@ impl Network {
match self {
Self::Main => [
(
"iris.radicle.xyz",
"iris.radicle.network",
seeds::RADICLE_NODE_BOOTSTRAP_IRIS.clone(),
),
(
"rosa.radicle.xyz",
"rosa.radicle.network",
seeds::RADICLE_NODE_BOOTSTRAP_ROSA.clone(),
),
]