[PR #156] [MERGED] Update dependency reader to v3.8 #162

Closed
opened 2026-09-02 13:09:38 +02:00 by TheLovinator · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheLovinator1/discord-twitter-webhooks/pull/156
Author: @renovate[bot]
Created: 8/20/2023
Status: Merged
Merged: 8/20/2023
Merged by: @renovate[bot]

Base: masterHead: renovate/reader-3.x-lockfile


📝 Commits (1)

  • 9950026 Update dependency reader to v3.8

📊 Changes

1 file changed (+25 additions, -7 deletions)

View changed files

📝 poetry.lock (+25 -7)

📄 Description

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
reader (changelog) 3.7 -> 3.8 age adoption passing confidence

Release Notes

lemon24/reader (reader)

v3.8

Compare Source

Released 2023-08-20

  • Drop Python 3.9 support. (:issue:302)

  • Use :mod:concurrent.futures instead of :mod:multiprocessing.dummy
    when :ref:updating feeds <update> in parallel;
    :mod:multiprocessing.dummy does not work on some environments
    (e.g. AWS Lambda).

  • Wrap unexpected hook errors in :exc:UpdateHookError
    instead of letting them bubble up,
    so plugin-raised exceptions for one feed don't prevent updates for the others
    during :meth:~Reader.update_feeds_iter() / :meth:~Reader.update_feeds().
    (:issue:218)

    .. warning::

    This is a minor compatibility break;
    it is considered acceptable, since it fixes a bug / unexpected behavior.

    • Add new exceptions :exc:UpdateHookError,
      :exc:SingleUpdateHookError, and :exc:UpdateHookErrorGroup.

    • Try to run all
      :attr:~Reader.after_entry_update_hooks,
      :attr:~Reader.after_feed_update_hooks, and
      :attr:~Reader.after_feeds_update_hooks,
      don’t stop after one fails.

  • Add :exc:UpdateError as parent of all update-related exceptions. (:issue:218)

    • Narrow down the error type of :attr:UpdateResult.value
      from :exc:ReaderError to :exc:UpdateError.
    • Make :exc:ParseError inherit from :exc:UpdateError.
    • Document :meth:~Reader.update_feeds_iter(), :meth:~Reader.update_feeds(),
      and :meth:~Reader.update_feed() can raise :exc:UpdateError\s
      (other than :exc:UpdateHookError and :exc:ParseError).
  • Make :exc:ReaderWarning inherit from :exc:ReaderError.

  • Include a diagram of the :ref:exctree in the :doc:api.

  • Add werkzeug dependency,
    instead of vendoring selected :mod:werkzeug.http utilities.

  • Rework lazy imports introduced in version 3.3 <Version 3.3_>_.
    (:issue:316)

  • Make :mod:reader._parser a package, and move parsing-related modules into it.
    (:issue:316)


Configuration

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

🚦 Automerge: Enabled.

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.


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

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


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheLovinator1/discord-twitter-webhooks/pull/156 **Author:** [@renovate[bot]](https://github.com/apps/renovate) **Created:** 8/20/2023 **Status:** ✅ Merged **Merged:** 8/20/2023 **Merged by:** [@renovate[bot]](https://github.com/apps/renovate) **Base:** `master` ← **Head:** `renovate/reader-3.x-lockfile` --- ### 📝 Commits (1) - [`9950026`](https://github.com/TheLovinator1/discord-twitter-webhooks/commit/9950026ec54153ce3bde0a31c96dcc367739fa14) Update dependency reader to v3.8 ### 📊 Changes **1 file changed** (+25 additions, -7 deletions) <details> <summary>View changed files</summary> 📝 `poetry.lock` (+25 -7) </details> ### 📄 Description [![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [reader](https://togithub.com/lemon24/reader) ([changelog](https://reader.readthedocs.io/en/latest/changelog.html)) | `3.7` -> `3.8` | [![age](https://developer.mend.io/api/mc/badges/age/pypi/reader/3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/pypi/reader/3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/pypi/reader/3.7/3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/pypi/reader/3.7/3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>lemon24/reader (reader)</summary> ### [`v3.8`](https://togithub.com/lemon24/reader/blob/HEAD/CHANGES.rst#Version-38) [Compare Source](https://togithub.com/lemon24/reader/compare/3.7...3.8) Released 2023-08-20 - Drop Python 3.9 support. (:issue:`302`) - Use :mod:`concurrent.futures` instead of :mod:`multiprocessing.dummy` when :ref:`updating feeds <update>` in parallel; :mod:`multiprocessing.dummy` does not work on some environments (e.g. AWS Lambda). - Wrap unexpected hook errors in :exc:`UpdateHookError` instead of letting them bubble up, so plugin-raised exceptions for one feed don't prevent updates for the others during :meth:`~Reader.update_feeds_iter()` / :meth:`~Reader.update_feeds()`. (:issue:`218`) .. warning:: **This is a minor compatibility break**; it is considered acceptable, since it fixes a bug / unexpected behavior. - Add new exceptions :exc:`UpdateHookError`, :exc:`SingleUpdateHookError`, and :exc:`UpdateHookErrorGroup`. - Try to run all :attr:`~Reader.after_entry_update_hooks`, :attr:`~Reader.after_feed_update_hooks`, and :attr:`~Reader.after_feeds_update_hooks`, don’t stop after one fails. - Add :exc:`UpdateError` as parent of all update-related exceptions. (:issue:`218`) - Narrow down the error type of :attr:`UpdateResult.value` from :exc:`ReaderError` to :exc:`UpdateError`. - Make :exc:`ParseError` inherit from :exc:`UpdateError`. - Document :meth:`~Reader.update_feeds_iter()`, :meth:`~Reader.update_feeds()`, and :meth:`~Reader.update_feed()` can raise :exc:`UpdateError`\s (other than :exc:`UpdateHookError` and :exc:`ParseError`). - Make :exc:`ReaderWarning` inherit from :exc:`ReaderError`. - Include a diagram of the :ref:`exctree` in the :doc:`api`. - Add werkzeug dependency, instead of vendoring selected :mod:`werkzeug.http` utilities. - Rework lazy imports introduced in `version 3.3 <Version 3.3_>`\_. (:issue:`316`) - Make :mod:`reader._parser` a package, and move parsing-related modules into it. (:issue:`316`) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/TheLovinator1/discord-twitter-webhooks). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi40My4yIiwidXBkYXRlZEluVmVyIjoiMzYuNDMuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9--> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
TheLovinator 2026-09-02 13:09:38 +02:00
Sign in to join this conversation.
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set

Reference
TheLovinator/discord-twitter-webhooks#162
No description provided.