public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Chris Caron <lead2gold@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/python-apprise] epel9: Merge branch 'rawhide' into epel9
Date: Sat, 30 May 2026 13:38:01 GMT	[thread overview]
Message-ID: <178014828193.1.6175439740740111201.rpms-python-apprise-6aad49cb8952@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/python-apprise
Branch : epel9
Commit : 6aad49cb8952c1d03673cc0a9388e117bb42f521
Author : Chris Caron <lead2gold@gmail.com>
Date   : 2026-05-30T09:37:41-04:00
Stats  : +72/-24 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/python-apprise/c/6aad49cb8952c1d03673cc0a9388e117bb42f521?branch=epel9

Log:
Merge branch 'rawhide' into epel9

---
diff --git a/.gitignore b/.gitignore
index 371943c..39b5985 100644
--- a/.gitignore
+++ b/.gitignore
@@ -42,3 +42,4 @@
 /apprise-1.9.6.tar.gz
 /apprise-1.9.7.tar.gz
 /apprise-1.9.9.tar.gz
+/apprise-1.11.0.tar.gz

diff --git a/apprise.1 b/apprise.1
index 444355c..6ba297b 100644
--- a/apprise.1
+++ b/apprise.1
@@ -1,12 +1,12 @@
 .\" generated with Ronn-NG/v0.10.1
 .\" http://github.com/apjanke/ronn-ng/tree/0.10.1
-.TH "APPRISE" "1" "March 2026" "Chris Caron <lead2gold@gmail.com>"
+.TH "APPRISE" "1" "May 2026" "Chris Caron <lead2gold@gmail.com>"
 .SH "NAME"
 \fBapprise\fR \- Push Notifications that work with just about every platform!
 .SH "SYNOPSIS"
 \fBapprise\fR [\fIoptions\fR\|\.\|\.\|\.] \fIservice\-url\fR\|\.\|\.\|\.
 .br
-\fBapprise\fR storage [\fIoptions\fR\|\.\|\.\|\.] [\fIaction\fR] \fIurl\-id\fR\|\.\|\.\|\.
+\fBapprise\fR storage [\fIoptions\fR\|\.\|\.\|\.] [\fIaction\fR] [\fIurl\-or\-uid\fR\|\.\|\.\|\.]
 .br
 .SH "DESCRIPTION"
 \fBApprise\fR allows you to send a notification to \fIalmost all\fR of the most popular notification services available to us today such as: Discord, Telegram, Pushbullet, Slack, Twitter, etc\.
@@ -53,6 +53,15 @@ You can optionally choose to specify more than one \fB\-\-plugin\-path\fR (\fB\-
 \fB(Omitted)\fR: Notify \fBuntagged\fR services only\.
 .IP "" 0
 .P
+Tag values may include an optional priority prefix and/or retry suffix:
+.IP "\(bu" 4
+\fB\-g "2:tagA"\fR: Match \fBonly\fR entries for tagA assigned priority 2\.
+.IP "\(bu" 4
+\fB\-g "tagA:3"\fR: Match all tagA entries, retrying each up to 3 times\.
+.IP "\(bu" 4
+\fB\-g "2:tagA:3"\fR: Priority\-2 tagA entries only, with up to 3 retries\.
+.IP "" 0
+.P
 \fB\-Da\fR, \fB\-\-disable\-async\fR: Send notifications synchronously (one after the other) instead of all at once\.
 .P
 \fB\-R\fR, \fB\-\-recursion\-depth\fR\fIINTEGER\fR: The number of recursive import entries that can be loaded from within Apprise configuration\. By default this is set to 1\. If this is set to zero, then import statements found in any configuration is ignored\.
@@ -97,7 +106,7 @@ $ apprise storage
 .P
 The \fBstorage\fR action has the following sub actions:
 .P
-\fBlist\fR: List all of the detected persistent storage elements and their state (\fBstale\fR, \fBactive\fR, or \fBunused\fR)\. This is the default action if nothing further is identified\.
+\fBlist\fR: List all of the detected persistent storage elements and their state (\fBstale\fR, \fBactive\fR, or \fBunused\fR)\. This is the default action if nothing further is identified\. Results may be filtered by passing one or more 8\-character UID prefix strings, or by passing full Apprise service URLs \(em each URL is resolved to its storage namespace automatically, making it easy to look up a specific plugin's cache entry without knowing the hash in advance\.
 .P
 \fBprune\fR: Removes all persistent storage that has not been referenced for more than 30 days\. You can optionally set the \fB\-\-storage\-prune\-days\fR to alter this default value\.
 .P
@@ -172,6 +181,24 @@ $ apprise \-vv \-t "Intersection Test" \e
 .fi
 .IP "" 0
 .P
+Notify only priority\-2 "alerts" services (exclusive priority filter):
+.IP "" 4
+.nf
+$ apprise \-vv \-t "High Alert" \e
+   \-\-config=~/apprise\.yml \e
+   \-g "2:alerts"
+.fi
+.IP "" 0
+.P
+Notify all "alerts" services and retry each up to 3 times on failure:
+.IP "" 4
+.nf
+$ apprise \-vv \-t "Critical Event" \e
+   \-\-config=~/apprise\.yml \e
+   \-g "alerts:3"
+.fi
+.IP "" 0
+.P
 Include an attachment:
 .IP "" 4
 .nf
@@ -194,6 +221,13 @@ $ apprise storage list
 .fi
 .IP "" 0
 .P
+Look up the storage namespace for a specific notification URL (shows the UID even when no data has been written yet):
+.IP "" 4
+.nf
+$ apprise storage list "mailtos://user:pass@example\.com"
+.fi
+.IP "" 0
+.P
 Prune all persistent storage that has not been referenced for at least 10 days or more
 .IP "" 4
 .nf

diff --git a/python-apprise.spec b/python-apprise.spec
index e54a93f..a065860 100644
--- a/python-apprise.spec
+++ b/python-apprise.spec
@@ -58,31 +58,37 @@
 Apprise is a Python package that simplifies access to many popular \
 notification services. It supports sending alerts to platforms such as: \
 \
-`46elks`, `AfricasTalking`, `Apprise API`, `APRS`, `AWS SES`, `AWS SNS`, \
-`Bark`, `BlueSky`, `Brevo`, `Burst SMS`, `BulkSMS`, `BulkVS`, `Chanify`, \
-`Clickatell`, `ClickSend`, `DAPNET`, `DingTalk`, `Discord`, \
-`Dot. (Quote/0)`, `E-Mail`, `Emby`, `FCM`, `Feishu`, `Flock`, `Fluxer`, \
-`Free Mobile`, `Google Chat`, `Gotify`, `Growl`, `Guilded`, \
-`Home Assistant`, `httpSMS`, `IFTTT`, `IRC`, `Jellyfin`, `Jira`, `Join`, \
-`Kavenegar`, `KODI`, `Kumulos`, `LaMetric`, `Lark`, `Line`, `MacOSX`, \
-`Mailgun`, `Mastodon`, `Mattermost`, `Matrix`, `MessageBird`, \
-`Microsoft Windows`, `Microsoft Teams`, `Misskey`, `MQTT`, `MSG91`, \
-`MyAndroid`, `Nexmo`, `Nextcloud`, `NextcloudTalk`, `Notica`, \
-`NotificationAPI`, `Notifiarr`, `Notifico`, `ntfy`, `Office365`, \
-`OneSignal`, `Opsgenie`, `PagerDuty`, `PagerTree`, `ParsePlatform`, `Plivo`, \
-`PopcornNotify`, `Prowl`, `Pushalot`, `PushBullet`, `Pushjet`, `PushMe`, \
-`Pushover`, `Pushplus`, `PushSafer`, `Pushy`, `PushDeer`, `QQ Push`, \
-`Revolt`, `Reddit`, `Resend`, `Rocket.Chat`, `RSyslog`, `SendGrid`, \
-`SendPulse`, `ServerChan`, `Seven`, `SFR`, `Signal`, `SIGNL4`, `SimplePush`, \
+`46elks`, `AfricasTalking`, `Amazon Chime`, `Apprise API`, `APRS`, \
+`AWS SES`, `AWS SNS`, `Bark`, `Blink(1)`, `BlueSky`, `Brevo`, \
+`Burst SMS`, `BulkSMS`, `BulkVS`, \
+`Chanify`, `Clickatell`, `ClickSend`, `DAPNET`, `DingTalk`, `Discord`, \
+`Dot. (Quote/0)`, `E-Mail`, `Emby`, `Evolution API`, `Exotel`, \
+`FCM`, `Feishu`, `Flock`, `Fluxer`, `Free Mobile`, `Google Chat`, \
+`Gotify`, `GroupMe`, `Growl`, `Guilded`, `Home Assistant`, `httpSMS`, \
+`HumHub`, \
+`IFTTT`, `IRC`, `Jellyfin`, `Jira`, `Join`, `Kavenegar`, `KODI`, \
+`Kumulos`, `LaMetric`, `Lark`, `Line`, `MacOSX`, `Mailgun`, `Mastodon`, \
+`Mattermost`, `Matrix`, `MessageBird`, `Microsoft Windows`, \
+`Microsoft Teams`, `Misskey`, \
+`MQTT`, `MSG91`, `MyAndroid`, `Nexmo`, `Nextcloud`, \
+`NextcloudTalk`, `Notica`, `NotificationAPI`, `Notifiarr`, `Notifico`, \
+`ntfy`, `Octopush`, `Office365`, `OneSignal`, `Opsgenie`, `PagerDuty`, \
+`PagerTree`, `ParsePlatform`, `Plivo`, `PopcornNotify`, `Prowl`, \
+`Postmark`, `Pushalot`, `PushBullet`, \
+`Pushjet`, `PushMe`, `Pushover`, `Pushplus`, `PushSafer`, `Pushy`, `PushDeer`, \
+`QQ Push`, `Revolt`, `Reddit`, `Resend`, `RingCentral`, `Rocket.Chat`, \
+`RSyslog`, `SendGrid`, \
+`SendPulse`, `ServerChan`, `Session Open Group Server`, `Seven`, `SFR`, \
+`Signal`, `SIGNL4`, `SimplePush`, \
 `Sinch`, `Slack`, `SMPP`, `SMSEagle`, `SMS Manager`, `SMTP2Go`, `SparkPost`, \
 `Splunk`, `Spike`, `Spug Push`, `Super Toasty`, `Streamlabs`, `Stride`, \
 `Synology Chat`, `Syslog`, `Techulus Push`, `Telegram`, `Threema Gateway`, \
 `Twilio`, `Twitter`, `Twist`, `Vapid`, `Viber`, `VictorOps`, `Voipms`, \
-`Vonage`, `WebPush`, `WeCom Bot`, `WhatsApp`, `Webex Teams`, `Workflows`, \
-`WxPusher`, `XBMC`, `XMPP`, and `Zulip`.}
+`Vonage`, `WebPush`, `WeChat (WeCom)`, `WeCom Bot`, `WhatsApp`, \
+`Webex Teams`, `Workflows`, `WxPusher`, `XBMC`, `XMPP`, `Zoom`, and `Zulip`.}
 
 Name:           python-%{pypi_name}
-Version:        1.9.9
+Version:        1.11.0
 Release:        1%{?dist}
 Summary:        A simple wrapper to many popular notification services used today
 License:        BSD-2-Clause
@@ -142,7 +148,8 @@ Requires: python3dist(cryptography)
 Requires: python3dist(certifi)
 Requires: python3dist(pyyaml)
 
-Recommends: python3dist(paho-mqtt)
+Recommends: python3dist(hidapi)
+Recommends: python3dist(paho-mqtt) >= 2.1.0
 Recommends: python3dist(slixmpp)
 
 %if 0%{?legacy_python_build} == 0
@@ -234,6 +241,12 @@ LANG=C.UTF-8 PYTHONPATH=%{buildroot}%{python3_sitelib}:%{_builddir}/%{name}-%{ve
 %{python3_sitelib}/%{pypi_name}/__pycache__/cli*.py?
 
 %changelog
+* Fri May 29 2026 Chris Caron <lead2gold@gmail.com> - 1.11.0-1
+- Updated to v1.11.0
+
+* Sun Apr 26 2026 Chris Caron <lead2gold@gmail.com> - 1.10.0-1
+- Updated to v1.10.0
+
 * Sat Mar 21 2026 Chris Caron <lead2gold@gmail.com> - 1.9.9-1
 - Updated to v1.9.9
 

diff --git a/sources b/sources
index bb678fa..2c4e46c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (apprise-1.9.9.tar.gz) = 2b90297b35941a2c8e2cb8f0b0bd8f439135cd3dac3778c1fa9d289d38a9320abf042290edb93634c4c8f2ba6694db767d2d5c4d58865f57f832f790b4259276
+SHA512 (apprise-1.11.0.tar.gz) = 05daaff1caf007944505819bf278618383332663c42d38bdab9295c653666e7f0eb19fb139c99db492bcdd6ba2057f6233308fa136bb4eab5bc299d3d315197a

                 reply	other threads:[~2026-05-30 13:38 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178014828193.1.6175439740740111201.rpms-python-apprise-6aad49cb8952@fedoraproject.org \
    --to=lead2gold@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox