Skip to content

Commit 2b50bca

Browse files
committed
Prepare v1.0.0 release
1 parent fdbfb61 commit 2b50bca

File tree

3 files changed

+111
-11
lines changed

3 files changed

+111
-11
lines changed

CHANGELOG.md

+94
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,98 @@
11
# Changelog
22

3+
## 1.0.0 (2019-09-19)
4+
5+
* First stable release, now following SemVer!
6+
7+
* Feature: Update all ReactPHP dependencies to latest versions and
8+
significantly improve performance (see included benchmark examples).
9+
(#51 and #56 by @clue)
10+
11+
* Feature / BC break: Replace `Factory` with simplified `Client` constructor.
12+
(#49 by @clue)
13+
14+
```php
15+
// old
16+
$factory = new Clue\React\Docker\Factory($loop);
17+
$client = $factory->createClient($url);
18+
19+
// new
20+
$client = new Clue\React\Docker\Client($loop, $url);
21+
```
22+
23+
* Feature / BC break: Change JSON stream to always report `data` events instead of `progress`,
24+
follow strict stream semantics, support backpressure and improve error handling.
25+
(#27 and #50 by @clue)
26+
27+
```php
28+
// old: all JSON streams use custom "progress" event
29+
$stream = $client->eventsStream();
30+
$stream->on('progress', function ($data) {
31+
var_dump($data);
32+
});
33+
34+
// new: all streams use default "data" event
35+
$stream = $client->eventsStream();
36+
$stream->on('data', function ($data) {
37+
var_dump($data);
38+
});
39+
40+
// new: stream follows stream semantics and supports stream composition
41+
$stream = $client->eventsStream();
42+
$stream->pipe($logger);
43+
```
44+
45+
* Feature / BC break: Add `containerArchive()` and `containerArchiveStream()` methods and
46+
remove deprecated `containerCopy()` and `containerCopyStream()` and
47+
remove deprecated HostConfig parameter from `containerStart()`.
48+
(#42, #48 and #55 by @clue)
49+
50+
```php
51+
// old
52+
$client->containerCopy($container, array('Resource' => $path));
53+
54+
// new
55+
$client->containerArchive($container, $path);
56+
```
57+
58+
* Feature / BC break: Change `execCreate()` method to accept plain params instead of config object.
59+
(#38 and #39 by @clue)
60+
61+
* Feature / BC break: Change `execStart()` method to resolve with buffered string contents.
62+
(#35 and #40)
63+
64+
* Feature: Add `execStartDetached()` method to resolve without waiting for exec data.
65+
(#38 by @clue)
66+
67+
* Feature: Add `execStartStream()` method to return stream of exec data.
68+
(#37 and #40)
69+
70+
* Feature: Add `execInspect()` method.
71+
(#34 by @clue)
72+
73+
* Feature: Add `containerLogs()` and `containerLogsStream()` methods.
74+
(#53 and #54 by @clue)
75+
76+
* Feature: Add `containerStats()` and `containerStatsStream()` methods.
77+
(#52 by @clue)
78+
79+
* Feature: Add `events()` and `eventsStream()` methods
80+
(#32 by @clue)
81+
82+
* Feature: Add `containerRename()` method.
83+
(#43 by @clue)
84+
85+
* Feature: Timeout `$t` is optional for `containerStop()` and `containerRestart()`.
86+
(#28 by @clue)
87+
88+
* Fix: The `containerResize()` and `execResize()` to issue `POST` request to resize TTY.
89+
(#29 and #30 by @clue)
90+
91+
* Improve test suite by adding PHPUnit to `require-dev`, support PHPUnit 7 - legacy PHPUnit 4
92+
and test against legacy PHP 5.3 through PHP 7.3,
93+
improve documentation and update project homepage.
94+
(#31, #46 and #47 by @clue)
95+
396
## 0.2.0 (2015-08-11)
497

598
* Feature: Add streaming API for existing endpoints (TAR and JSON streaming).
@@ -19,3 +112,4 @@
19112
## 0.0.0 (2014-11-26)
20113

21114
* Initial concept
115+
# Changelog

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,11 @@ See also the [pull example](examples/pull.php) and the [push example](examples/p
353353
The recommended way to install this library is [through Composer](https://getcomposer.org).
354354
[New to composer?](https://getcomposer.org/doc/00-intro.md)
355355

356-
```JSON
357-
{
358-
"require": {
359-
"clue/docker-react": "~0.2.0"
360-
}
361-
}
356+
This project follows [SemVer](https://semver.org/).
357+
This will install the latest supported version:
358+
359+
```bash
360+
$ composer require clue/docker-react:^1.0
362361
```
363362

364363
This project aims to run on any platform and thus does not require any PHP
@@ -382,4 +381,7 @@ $ php vendor/bin/phpunit
382381

383382
## License
384383

385-
MIT
384+
This project is released under the permissive [MIT license](LICENSE).
385+
386+
> Did you know that I offer custom development services and issuing invoices for
387+
sponsorships of releases and for contributions? Contact me (@clue) for details.

src/Client.php

+8-4
Original file line numberDiff line numberDiff line change
@@ -457,10 +457,11 @@ public function containerExportStream($container)
457457
* If you want to monitor live stats events as they happen, you
458458
* should consider using `imageStatsStream()` instead.
459459
*
460+
* Available as of Docker Engine API v1.19 (Docker v1.7), use `containerStatsStream()` on legacy versions
461+
*
460462
* @param string $container container ID
461463
* @return PromiseInterface Promise<array> JSON stats
462464
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerStats
463-
* @since 0.3.0 Available as of Docker Engine API v1.19 (Docker v1.7), use `containerStatsStream()` on legacy versions
464465
* @see self::containerStatsStream()
465466
*/
466467
public function containerStats($container)
@@ -484,10 +485,11 @@ public function containerStats($container)
484485
* - error: once if an error occurs, will close() stream then
485486
* - close: once the stream ends (either finished or after "error")
486487
*
488+
* Available as of Docker Engine API v1.17 (Docker v1.5)
489+
*
487490
* @param string $container container ID
488491
* @return ReadableStreamInterface JSON stats stream
489492
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerStats
490-
* @since 0.3.0 Available as of Docker Engine API v1.17 (Docker v1.5)
491493
* @see self::containerStats()
492494
*/
493495
public function containerStatsStream($container)
@@ -726,12 +728,13 @@ public function containerRemove($container, $v = false, $force = false)
726728
* for this library. Several libraries are available, one that is known to
727729
* work is clue/reactphp-tar (see links).
728730
*
731+
* Available as of Docker Engine API v1.20 (Docker v1.8)
732+
*
729733
* @param string $container container ID
730734
* @param string $resource path to file or directory to archive
731735
* @return PromiseInterface Promise<string> tar stream
732736
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerArchive
733737
* @link https://github.com/clue/reactphp-tar
734-
* @since 0.3.0 Available as of Docker Engine API v1.20 (Docker v1.8)
735738
* @see self::containerArchiveStream()
736739
*/
737740
public function containerArchive($container, $path)
@@ -763,12 +766,13 @@ public function containerArchive($container, $path)
763766
* The resulting stream is a well-behaving readable stream that will emit
764767
* the normal stream events.
765768
*
769+
* Available as of Docker Engine API v1.20 (Docker v1.8)
770+
*
766771
* @param string $container container ID
767772
* @param string $path path to file or directory to archive
768773
* @return ReadableStreamInterface tar stream
769774
* @link https://docs.docker.com/engine/api/v1.40/#operation/ContainerArchive
770775
* @link https://github.com/clue/reactphp-tar
771-
* @since 0.3.0 Available as of Docker Engine API v1.20 (Docker v1.8)
772776
* @see self::containerArchive()
773777
*/
774778
public function containerArchiveStream($container, $path)

0 commit comments

Comments
 (0)