Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update apprise to v1.5.0 #102

Merged
merged 1 commit into from
Aug 27, 2023
Merged

⬆️ Update apprise to v1.5.0 #102

merged 1 commit into from
Aug 27, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 27, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
apprise ==1.4.5 -> ==1.5.0 age adoption passing confidence

Release Notes

caronc/apprise (apprise)

v1.5.0

Compare Source

Details

📣 New Notification Services:
💡 Features
  • Matrix Attachment support! 📚 🚀
  • Discord:
    • Rate Limiting (429 Error code) handling/support (#​901)
      • basically retry our post once our limit timer has elapsed
    • Added href= variable that can be set on the Apprise URL which allows you to leverage the embed part of the API and turn your title into a hyperlink to the specified location. You can also use url= (as an alias to href=) (#​927)
  • All notifications now no longer require a body if at least 1 attachment was provided. This expands the use of Apprise to not constrict you to always include a body 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 longer

generates an error

  apprise --attach="/path/to/attachment.zip  --body ""
  ```
  • Apprise.details() improvements
  • Added Matrix Attachment Support (#​921)
  • Support for Serialization via Pickle Library added. (#​929)

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)

##### :heart: Life-Cycle Support
- Python 3.11 `getdefaultlocale()` deprecation warnings now handled (#​754)
- Gitter support removed as it is now leveraging [Matrix which Apprise already supports](https://togithub.com/caronc/apprise/wiki/Notify_matrix). (#​924)
##### :bug: Bugfixes
- Reddit RateLimit variables should be unique per instance (d7a5a60508c9fa57f8dfce9cf419973fbe86dbb0)
- ` ` placed in the Title/Subject of some notifications; this has now been fixed. (#​914)
- `gettext()` no longer installs `_` into the global namespace, but instead keeps the `_` at an `apprise` module scope. (#​821)
##### Installation Instructions
Apprise is available [on PyPI](https://pypi.org/project/apprise/) through _pip_:
```bash
### Install Apprise v1.5.0 from PyPI
pip install apprise==1.5.0

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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added dependencies Upgrade or downgrade of project dependencies. no-stale This issue or PR is exempted from the stable bot. python labels Aug 27, 2023
@renovate renovate bot merged commit 31f284a into main Aug 27, 2023
@renovate renovate bot deleted the renovate/apprise-1.x branch August 27, 2023 23:29
@github-actions github-actions bot locked and limited conversation to collaborators Aug 29, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
dependencies Upgrade or downgrade of project dependencies. no-stale This issue or PR is exempted from the stable bot.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants