Releases: clue/stream-filter
v1.7.0
v1.6.0
-
Improve documentation to use fully-qualified function names.
(#43 by @SimonFrings and #42 by @PaulRotmann) -
Improve test suite and use GitHub actions for continuous integration (CI).
(#39 and #40 by @SimonFrings)
v1.5.0
-
Feature: Improve performance by using global imports.
(#38 by @clue) -
Improve API documentation and add support / sponsorship info.
(#30 by @clue and #35 by @SimonFrings) -
Improve test suite and add
.gitattributesto exclude dev files from exports.
Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix.
(#32 and #37 by @clue and #34 and #36 by @SimonFrings)
v1.4.1
v1.4.0
-
Feature / Fix: The
fun()function does not pass filter parameternull
to underlyingstream_filter_append()by default
(#15 by @Nyholm)Certain filters (such as
convert.quoted-printable-encode) do not accept
a filter parameter at all. If no explicit filter parameter is given, we no
longer pass a defaultnullvalue.$encode = Filter\fun('convert.quoted-printable-encode'); assert('t=C3=A4st' === $encode('täst'));
-
Add examples and improve documentation
(#13 and #20 by @clue and #18 by @Nyholm) -
Improve test suite by adding PHPUnit to require-dev,
fix HHVM build for now again and ignore future HHVM build errors,
lock Travis distro so new future defaults will not break the build
and test on PHP 7.1
(#12, #14 and #19 by @clue and #16 by @Nyholm)