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
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## [0.4.6]

### Added

- `ncli relay` now also declares and validates NIP-47 (Nostr Wallet
Connect), NIP-48 (Proxy tags), NIP-88 (Polls), NIP-90 (Data Vending
Machines), NIP-AZ (AltZap), NIP-B0 (Web bookmarks), and NIP-B7 (Blossom
server lists) -- nmilat ships a `relayreg` subpackage for each that
`ncli relay` simply never blank-imported before.

### Fixed

- `apply stream`/`sync` no longer silently drop an event at the destination
Expand All @@ -15,6 +23,7 @@
imports pointed at the base `nip57`/`nip65` packages instead of their
`relayreg` subpackages, so the registration that declares them in
`supported_nips` never ran.
([#38](https://github.com/ohstr/ncli/pull/38))

## [0.4.5]

Expand Down
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,14 +100,21 @@ docker run --rm ghcr.io/ohstr/ncli:latest --help
| [42](https://github.com/nostr-protocol/nips/blob/master/42.md) | Relay authentication |
| [43](https://github.com/nostr-protocol/nips/blob/master/43.md) | Relay membership — off by default; see [`relay members`](#relay-membersinvitesroles-nip-43-membership-admin) |
| [44](https://github.com/nostr-protocol/nips/blob/master/44.md) | Versioned encryption |
| [47](https://github.com/nostr-protocol/nips/blob/master/47.md) | Nostr Wallet Connect |
| [48](https://github.com/nostr-protocol/nips/blob/master/48.md) | Proxy tags |
| [49](https://github.com/nostr-protocol/nips/blob/master/49.md) | Encrypted private key storage |
| [50](https://github.com/nostr-protocol/nips/blob/master/50.md) | Search — people search, not note content; see below |
| [57](https://github.com/nostr-protocol/nips/blob/master/57.md) | Lightning zaps |
| [65](https://github.com/nostr-protocol/nips/blob/master/65.md) | Relay list metadata |
| [77](https://github.com/nostr-protocol/nips/blob/master/77.md) | Negentropy sync |
| [88](https://github.com/nostr-protocol/nips/blob/master/88.md) | Polls |
| [90](https://github.com/nostr-protocol/nips/blob/master/90.md) | Data Vending Machines |
| [98](https://github.com/nostr-protocol/nips/blob/master/98.md) | HTTP authentication |
| [AA](https://github.com/block/buzz/blob/main/docs/nips/NIP-AA.md) | Agent auth — requires NIP-43 membership; see `agent_auth` below |
| [OA](https://github.com/block/buzz/blob/main/docs/nips/NIP-OA.md) | Owner attestation — verified as part of NIP-AA |
| [AA](https://github.com/block/buzz/blob/main/docs/nips/NIP-AA.md) | Agent auth — requires relay membership; see `agent_auth` below |
| [AZ](https://github.com/ohstr/zapf-nips/blob/main/NIP-AZ.md) | AltZap — zaps for energy-backed coins |
| [B0](https://github.com/nostr-protocol/nips/blob/master/B0.md) | Web bookmarks |
| [B7](https://github.com/nostr-protocol/nips/blob/master/B7.md) | Blossom media server lists |
| [OA](https://github.com/block/buzz/blob/main/docs/nips/NIP-OA.md) | Owner attestation — verified as part of agent auth |

</details>

Expand Down
7 changes: 7 additions & 0 deletions cli/relay/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,15 @@ import (
"github.com/ohstr/ncli/cli/common"
"github.com/ohstr/ncli/cli/common/meilisearch"
"github.com/ohstr/nmilat/nip11"
_ "github.com/ohstr/nmilat/nip47/relayreg"
_ "github.com/ohstr/nmilat/nip48/relayreg"
_ "github.com/ohstr/nmilat/nip57/relayreg"
_ "github.com/ohstr/nmilat/nip65/relayreg"
_ "github.com/ohstr/nmilat/nip88/relayreg"
_ "github.com/ohstr/nmilat/nip90/relayreg"
_ "github.com/ohstr/nmilat/nipAZ/relayreg"
_ "github.com/ohstr/nmilat/nipB0/relayreg"
_ "github.com/ohstr/nmilat/nipB7/relayreg"
"github.com/ohstr/nmilat/relay"
"github.com/ohstr/nmilat/search"
"github.com/ohstr/nmilat/utils"
Expand Down
Loading