Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions gossip/nostr-gossip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@

-->

## Unreleased

### Breaking changes

- Change the default value of `GossipAllowedRelays.without_tls` to `false` (https://github.com/nostrdevkit/nostr/pull/1436)

## v0.45.0 - 2026/08/05

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions gossip/nostr-gossip/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ pub struct GossipAllowedRelays {
pub onion: bool,
/// Allow local network relays (default: false)
pub local: bool,
/// Allow relays without SSL/TLS encryption (default: true)
/// Allow relays without SSL/TLS encryption (default: false)
pub without_tls: bool,
}

Expand All @@ -95,7 +95,7 @@ impl Default for GossipAllowedRelays {
Self {
onion: true,
local: false,
without_tls: true,
without_tls: false,
}
}
}
Expand Down
Loading