-----------
Released 2020-09-04
* Add the ``feed_root`` argument to :func:`make_reader`,
which allows limiting local feed parsing to a specific directory
or disabling it altogether.
Using it is recommended, since by default *reader* will access
any local feed path
(in 2.0, local file parsing will be disabled by default).
(:issue:`155`)
* Support loading CLI and web application settings from a
:doc:`configuration file <config>`. (:issue:`177`)
* Fail fast for feeds that return HTTP 4xx or 5xx status codes,
instead of (likely) failing later with an ambiguous XML parsing error.
The cause of the raised :exc:`ParseError` is now an instance of
:exc:`requests.HTTPError`. (:issue:`182`)
* Add ``cloudflare_ua_fix`` plugin (work around Cloudflare sometimes
blocking requests). (:issue:`181`)
* feedparser 6.0 (beta) compatibility fixes.
* Internal parser API changes to support alternative parsers, pre-request hooks,
and making arbitrary HTTP requests using the same logic :class:`Reader` uses.
(:issue:`155`)
* In the /preview page and the ``preview_feed_list`` plugin,
use the same plugins the main :class:`Reader` does.
(enabled by :issue:`155`)