Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==1.4.5
->==1.5.0
Release Notes
caronc/apprise (apprise)
v1.5.0
Compare Source
Details
📣 New Notification Services:
rsyslog://
split from the originalsyslog://
Service💡 Features
href=
variable that can be set on the Apprise URL which allows you to leverage theembed
part of the API and turn yourtitle
into a hyperlink to the specified location. You can also useurl=
(as an alias tohref=
) (#927)body
if at least 1attachment
was provided. This expands the use of Apprise to not constrict you to always include abody
when the only intent you had was to post an attachment.For the CLI you are still required to set the
--body
to "", but this no longergenerates an error
Apprise.details()
improvementsattachment_support
variable added (#916)as an example ...
import apprise
import pickle
Instantiate our object
apobj = apprise.Apprise()
Add our URLs
apobj.add("json://localhost")
apobj.add("xml://localhost")
apobj.add("form://localhost")
apobj.add("mailto://user:pass@localhost")
Now serialize our object for any purpose
serialized = pickle.dumps(apobj)
do what you will; write this to disk, send it to a remote
server, etc.
We can re-load our serialized content and turn it back into
and object like so:
apobj_n2 = pickle.loads(serialized)
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.