mealie-recipes / mealie

Mealie is a self hosted recipe manager and meal planner with a RestAPI backend and a reactive frontend application built in Vue for a pleasant user experience for the whole family. Easily add recipes into your database by providing the url and mealie will automatically import the relevant data or add a family recipe with the UI editor
https://docs.mealie.io
GNU Affero General Public License v3.0
5.67k stars 617 forks source link

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

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.