diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-27 14:18:11 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2026-02-27 14:26:48 +0000 |
| commit | 3aa9b7a8e49d8ec5a87693d3f52ae2c77f036ff2 (patch) | |
| tree | cf3bb2d57610c148467694b8c804a5adc1b6f6e1 | |
| parent | b4eb83de8637b56d7d742f5e64bda454ef8c2410 (diff) | |
fix: update fallback signer relays
Replace nsec.app with bucket.coracle.social and nos.lol.
| -rw-r--r-- | CHANGELOG.md | 1 | ||||
| -rw-r--r-- | src/lib/client.rs | 3 |
2 files changed, 3 insertions, 1 deletions
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 | |||
| 18 | 18 | ||
| 19 | ### Fixed | 19 | ### Fixed |
| 20 | 20 | ||
| 21 | - Fallback signer relays updated: replaced `nsec.app` with `bucket.coracle.social` and `nos.lol` for nostrconnect resilience | ||
| 21 | - `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` | 22 | - `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` |
| 22 | - `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 | 23 | - `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 |
| 23 | - 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 | 24 | - 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 { | |||
| 1107 | vec!["ws://localhost:8051".to_string()] | 1107 | vec!["ws://localhost:8051".to_string()] |
| 1108 | } else { | 1108 | } else { |
| 1109 | vec![ | 1109 | vec![ |
| 1110 | "wss://relay.nsec.app".to_string(), | 1110 | "wss://bucket.coracle.social".to_string(), |
| 1111 | "wss://nos.lol".to_string(), | ||
| 1111 | "wss://relay.ditto.pub".to_string(), | 1112 | "wss://relay.ditto.pub".to_string(), |
| 1112 | ] | 1113 | ] |
| 1113 | }, | 1114 | }, |