Releases: clue/php-viewvc-api-react
Releases · clue/php-viewvc-api-react
v0.4.0
-
Feature: Add streaming API for fetching larger files
(#20 by @clue)
$stream = $client->fetchFileStream($path);
$stream->on('data', function ($chunk) {
echo $chunk;
});
$stream->on('error', function (Exception $error) {
echo 'Error: ' . $error->getMessage() . PHP_EOL;
});
$stream->on('close', function () {
echo '[DONE]' . PHP_EOL;
});
-
Update dependencies, more SOLID code base
v0.3.0
-
Feature / BC break: Build properly escaped URIs via Browser
(#17)
// old
$client = new Client($uri, $browser);
// new
$client = new Client($browser->withBase($uri));
-
Update dependencies, more SOLID code base
v0.2.0
- Feature: Add
Client::fetchLog()
method
(#14)
- Feature: Support including deleted files (attic) in CVS directory listings
(#11)
- Feature: Support mixed UTF-8 and ISO-8859-1 (Latin1) encodings
(#12)
- Fix: Improve parsing broken XHTML structure
(#10, #13)
v0.1.1
- Fix: Accessing deleted files in older revisions now works
(#6)
- Fix: Improve parsing XHTML structure
(#7)
- Fix: Add trailing slash to base URL
(#5)
- Improve test suite and directory listing example
(#8, #9)