LeslieLeung / heimdallr

一个非常轻量的通知网关,可以聚合各种推送渠道,使用 Serverless 部署,几乎零成本运行。
https://heimdallr.zeabur.app/docs
GNU General Public License v3.0
468 stars 42 forks source link

fix(deps): update dependency apprise to v1.8.0 #71

Closed renovate[bot] closed 1 month ago

renovate[bot] commented 1 month ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
apprise 1.7.6 -> 1.8.0 age adoption passing confidence

Release Notes

caronc/apprise (apprise) ### [`v1.8.0`](https://togithub.com/caronc/apprise/releases/tag/v1.8.0) [Compare Source](https://togithub.com/caronc/apprise/compare/v1.7.6...v1.8.0) #### Details **:point_up: Attention Developers: there is a potential Breaking Change in this release. CLI users will not be impacted.** ##### :hammer_and_wrench: Potential Breaking Change PR [#​1119](https://togithub.com/caronc/apprise/issues/1119) involved the refactoring of all the internal file/module structure of the Apprise library. The hope is I didn't break anything in your source code :pray: . The change was required in order to remain compatible with Python v3.11+ in conjunction with library importing and how it works under the hood. More details on the specific issue can be [found here](https://togithub.com/caronc/117860-cpython-issue) demonstrating it. The [Python Issue I opened in reguards to this made it clear I needed to adapt the fix on my side](https://togithub.com/python/cpython/issues/117860) and conform to a better file based structure. The side effect of this massive change developers may see (*if any at all*) is just the way your `import` calls are made. If you always followed the examples provided on this GitHub project, you'll have no issues at all. However, if you got clever and leveraged some of the under-the-hood compontents Apprise is built upon, then you may have an issue. The good news is the ONLY thing impacted is the way you imported your libraries (they just slightly moved around). An example of this is someone who may have had: ```python ### For example: from apprise.plugins.NotifyEmail import NotifyEmail ### This has changed to : from apprise.plugins.email import NotifyEmail ### All other object functionality has not changed at all ``` Documented imports still work perfectly (both before and after this major refactor) such as: ```python from apprise import Apprise from apprise import AppriseAsset ### etc... ``` ##### :mega: New Notification Services: n/a ##### :bulb: Features - Custom Plugin Attachment Support Enforced + Added Testing in [https://github.com/caronc/apprise/pull/1115](https://togithub.com/caronc/apprise/pull/1115) - Do not sanitize `http://` attachment URLs ([#​1122](https://togithub.com/caronc/apprise/issues/1122)) - This allows the successful fetching of very complicated http based Attachment URL's where the case sensitivity of the keys matter. - The side effect of this change, is built in switches like `cache=` become case sensitive too (e.g `Cache=` will no longer be parsed). ##### :heart: Life-Cycle Support - Enhancement: Refactor Test Code for Efficiency and Quality by [@​freddiewanah](https://togithub.com/freddiewanah) in [https://github.com/caronc/apprise/pull/1100](https://togithub.com/caronc/apprise/pull/1100) - :bomb: Python Module Naming & Namespacing Harmonization by in [https://github.com/caronc/apprise/pull/1119](https://togithub.com/caronc/apprise/pull/1119) - This was a major change that eliminated `ClassName.py` to not include a `class ClassName` inside. Python has issues with `import` and `unittest` references when this is done. `unittests` break completely in Python v3.11 using this method making this massive refactoring essential. ##### :bug: Bugfixes - Added JSON Content-Type header to freemobile:// in [https://github.com/caronc/apprise/pull/1109](https://togithub.com/caronc/apprise/pull/1109) - Fix mailto://ip.addr support in [https://github.com/caronc/apprise/pull/1114](https://togithub.com/caronc/apprise/pull/1114) - `clicksend://` authentication bugfix in [https://github.com/caronc/apprise/pull/1121](https://togithub.com/caronc/apprise/pull/1121) - Update Apprise API (`apprise//`) token length by [@​isometimescode](https://togithub.com/isometimescode) in [https://github.com/caronc/apprise/pull/1120](https://togithub.com/caronc/apprise/pull/1120) #### Installation Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.8.0 rom PyPI pip install apprise==1.8.0 ``` #### New Contributors - [@​freddiewanah](https://togithub.com/freddiewanah) made their first contribution in [https://github.com/caronc/apprise/pull/1100](https://togithub.com/caronc/apprise/pull/1100) - [@​isometimescode](https://togithub.com/isometimescode) made their first contribution in [https://github.com/caronc/apprise/pull/1120](https://togithub.com/caronc/apprise/pull/1120)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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.

sonarcloud[bot] commented 1 month ago

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud