Skip to content

Releases: clue/reactphp-zlib

v1.2.0

04 Aug 14:29
Compare
Choose a tag to compare

v1.1.0

21 Dec 15:55
Compare
Choose a tag to compare
  • Feature: Add PHP 8 support and improve test suite.
    Update to PHPUnit 9 and simplify test setup.
    (#30 and #31 by @SimonFrings and #32 by @clue)

v1.0.0

28 May 12:13
Compare
Choose a tag to compare
  • Feature: Change Compressor and Decompressor to use more efficient streaming compression context.
    (#28 by @clue)

    This also fixes any inconsistencies and supports proper error reporting for invalid data.
    Benchmark results suggest this improves both compression and decompression performance by ca. 25%.

  • BC break: Require PHP 7+ with ext-zlib during installation and drop legacy PHP and legacy HHVM support.
    (#25, #26 and #28 by @clue)

    We're committed to providing a smooth upgrade path for legacy setups.
    If you need to support legacy PHP versions and legacy HHVM, you may want to
    check out the legacy v0.2.x release branch.
    This legacy release branch also provides an installation candidate that does not
    require ext-zlib during installation but uses runtime checks instead.
    In this case, you can install this project like this:

    $ composer require "clue/zlib-react:^1.0||^0.2.2"
  • BC break: Remove deprecated APIs and mark ZlibFilterStream as internal only.
    (#27 by @clue)

  • Improve test suite by updating PHPUnit, clean up test suite and
    add .gitattributes to exclude dev files from exports.
    (#29 by @clue)

v0.2.2

20 Apr 11:35
Compare
Choose a tag to compare
v0.2.2 Pre-release
Pre-release
  • Feature: Add dedicated Compressor and Decompressor classes, deprecate ZlibFilterStream.
    (#21 by @clue)

    // old
    $compressor = Clue\React\Zlib\ZlibFilterStream::createGzipCompressor();
    
    // new
    $compressor = new Clue\React\Zlib\Compressor(ZLIB_ENCODING_GZIP);
  • Feature / Bug: Work around compressing empty stream on PHP 7+.
    (#22 by @clue)

  • Add compression and decompression benchmarks.
    (#24 by @clue)

  • Add support / sponsorship info.
    (#20 by @clue)

  • Improve test suite by running tests on PHP 7.4 and simplify test matrix
    and run tests on Windows.
    (#19 and #23 by @clue)

v0.2.1

11 May 12:05
Compare
Choose a tag to compare
v0.2.1 Pre-release
Pre-release
  • Feature / Fix: Add backpressure support and support pause()/resume().
    (#18 by @clue)

  • Update project homepage.
    (#17 by @clue)

v0.2.0

19 Aug 13:33
Compare
Choose a tag to compare
v0.2.0 Pre-release
Pre-release
  • Feature / BC break: Update to Stream v0.6 API and forward compatibility with Stream v1.0
    (#13 and #15 by @clue)

  • Fix: Remove event listeners once closed
    (#14 by @clue)

  • Improve documentation
    (#15 and #16 by @clue)

  • Improve test suite by adding PHPUnit to require-dev and
    Lock Travis distro so new future defaults will not break the build
    (#11 and #12 by @clue)

v0.1.0

12 Nov 23:46
Compare
Choose a tag to compare
v0.1.0 Pre-release
Pre-release
  • First tagged release