borgmatic-collective / docker-borgmatic

Borgmatic in Docker
GNU General Public License v3.0
314 stars 88 forks source link

Bump apprise from 1.4.0 to 1.5.0 #256

Closed dependabot[bot] closed 10 months ago

dependabot[bot] commented 10 months ago

Bumps apprise from 1.4.0 to 1.5.0.

Release notes

Sourced from apprise's releases.

Release v1.5.0

Details

:mega: New Notification Services:

:bulb: Features

  • Matrix Attachment support! :books: :rocket:
  • 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
    • consistency (#919)
    • attachment_support variable added (#916)
  • 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)

... (truncated)

Commits
  • 5f9752b bumped version to v1.5.0
  • ff6b3cc reporting improved when an instantiation test fails
  • c41e7e6 Fixed ResourceWarning: unclosed file with macosx
  • f82934a Prevent gettext() from installing to global _ namespace (#821)
  • 31caff1 PushMe Support Added (#928)
  • 5fd568f Handled Py11 getdefaultlocale() deprecation warnings (#754)
  • e46f8fe Split rsyslog:// and syslog:// into their own services (#930)
  • f55032a Added support for serialization via pickle library (#929)
  • de4701f Gitter Support Removed (available through Matrix) (#924)
  • 44576a5 Discord now supports href= (and alias url=) arguments (#927)
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)