From 3aa9b7a8e49d8ec5a87693d3f52ae2c77f036ff2 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Fri, 27 Feb 2026 14:18:11 +0000 Subject: fix: update fallback signer relays Replace nsec.app with bucket.coracle.social and nos.lol. --- CHANGELOG.md | 1 + src/lib/client.rs | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 607afc8..cbf5312 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed +- Fallback signer relays updated: replaced `nsec.app` with `bucket.coracle.social` and `nos.lol` for nostrconnect resilience - `merge-base` tag in PR events generated by `git push` of a `pr/` branch was set to the parent of the PR tip instead of the actual base commit; multi-commit PRs showed only 1 commit when applied via `ngit apply` - `git-remote-nostr` list now advertises the newest state event whose OIDs are all confirmed present on a git server or locally, rather than unconditionally using the latest nostr state event; this prevents catastrophic fetch/clone failures when a state event was published before the corresponding git push completed - Tag tracking refs written with wrong path (`refs/remotes/origin/refs/tags/v1.0.0` instead of `refs/remotes/origin/v1.0.0`) after a push via `git-remote-nostr`, causing `ngit sync` to fail with "src refspec does not match any existing object" when syncing tags diff --git a/src/lib/client.rs b/src/lib/client.rs index 634dce2..c1bf751 100644 --- a/src/lib/client.rs +++ b/src/lib/client.rs @@ -1107,7 +1107,8 @@ impl Default for Params { vec!["ws://localhost:8051".to_string()] } else { vec![ - "wss://relay.nsec.app".to_string(), + "wss://bucket.coracle.social".to_string(), + "wss://nos.lol".to_string(), "wss://relay.ditto.pub".to_string(), ] }, -- cgit v1.2.3