From 025c2963a0b9acf1e1ba31ba25907b6e40ce2748 Mon Sep 17 00:00:00 2001 From: Ali Benkassou <43420058+khazit@users.noreply.github.com> Date: Tue, 25 Nov 2025 17:45:40 +0100 Subject: [PATCH 1/3] Add Simple Observability to integrations list --- docs/integrations.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/integrations.md b/docs/integrations.md index 4613cb58..fede1703 100644 --- a/docs/integrations.md +++ b/docs/integrations.md @@ -42,6 +42,7 @@ I've added a ⭐ to projects or posts that have a significant following, or had - [Monibot](https://monibot.io/) - Monibot monitors your websites, servers and applications and notifies you if something goes wrong. - [Miniflux](https://miniflux.app/docs/ntfy.html) - Minimalist and opinionated feed reader - [Beszel](https://beszel.dev/guide/notifications/ntfy) - Server monitoring platform +- [Simple Observability](https://simpleobservability.com/docs/alerts/ntfy) - Server monitoring and observability platform ## Integration via HTTP/SMTP/etc. From 693d2d630f1439b14595b04960dd3a9b6212e62c Mon Sep 17 00:00:00 2001 From: Antonio Enrico Russo Date: Fri, 28 Nov 2025 09:24:44 -0700 Subject: [PATCH 2/3] do not build fbsend with nofirebase The nofirebase build tag should remove all build dependencies on firebase. The fbsend test tool depends on firebase (and is also only useful in builds that use firebase). Hence, disable it. Signed-off-by: Antonio Enrico Russo --- tools/fbsend/main.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/fbsend/main.go b/tools/fbsend/main.go index 832aeb79..e5d56777 100644 --- a/tools/fbsend/main.go +++ b/tools/fbsend/main.go @@ -1,3 +1,5 @@ +//go:build !nofirebase + package main import ( From 430135606b93803af22a89e242cc9e80aae1df1b Mon Sep 17 00:00:00 2001 From: faytecCD Date: Thu, 18 Dec 2025 16:03:24 +0800 Subject: [PATCH 3/3] Fix filter api example --- docs/subscribe/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/subscribe/api.md b/docs/subscribe/api.md index d98134e5..a52e17f6 100644 --- a/docs/subscribe/api.md +++ b/docs/subscribe/api.md @@ -295,7 +295,7 @@ Available filters (all case-insensitive): | `message` | `X-Message`, `m` | `ntfy.sh/mytopic/json?message=lalala` | Only return messages that match this exact message string | | `title` | `X-Title`, `t` | `ntfy.sh/mytopic/json?title=some+title` | Only return messages that match this exact title string | | `priority` | `X-Priority`, `prio`, `p` | `ntfy.sh/mytopic/json?p=high,urgent` | Only return messages that match *any priority listed* (comma-separated) | -| `tags` | `X-Tags`, `tag`, `ta` | `ntfy.sh/mytopic?/jsontags=error,alert` | Only return messages that match *all listed tags* (comma-separated) | +| `tags` | `X-Tags`, `tag`, `ta` | `ntfy.sh/mytopic/json?tags=error,alert` | Only return messages that match *all listed tags* (comma-separated) | ### Subscribe to multiple topics It's possible to subscribe to multiple topics in one HTTP call by providing a comma-separated list of topics