13 lines
527 B
Markdown
13 lines
527 B
Markdown
|
|
# Local patches to the vendored dependencies
|
||
|
|
|
||
|
|
`vendor/` is committed (tt-rss plugins ship their dependencies; there is no
|
||
|
|
composer in the app container), so upstream fixes we cannot wait for are applied
|
||
|
|
here and recorded below.
|
||
|
|
|
||
|
|
## fivefilters/readability.php
|
||
|
|
|
||
|
|
- `src/Nodes/NodeTrait.php:371` — `callable $filterFn = null` → `?callable
|
||
|
|
$filterFn = null`. Implicitly nullable parameters are deprecated as of PHP 8.4,
|
||
|
|
and the tt-rss app image is on PHP 8.5, so without this every extraction emits a
|
||
|
|
deprecation notice.
|