File tree Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Expand file tree Collapse file tree 2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.3.0 (2021-08-06)
4+
5+ * Feature: Simplify usage by supporting new default loop.
6+ (#27 and #28 by @clue )
7+
8+ ``` php
9+ // old (still supported)
10+ $proxy = new Clue\React\SshProxy\SshProcessConnector('user@example.com', $loop);
11+ $proxy = new Clue\React\SshProxy\SshSocksConnector('user@example.com', $loop);
12+
13+ // new (using default loop)
14+ $proxy = new Clue\React\SshProxy\SshProcessConnector('user@example.com');
15+ $proxy = new Clue\React\SshProxy\SshSocksConnector('user@example.com');
16+ ```
17+
18+ * Documentation improvements and updated examples.
19+ (#25, #29 and #30 by @clue and #23 and #26 by @SimonFrings)
20+
21+ * Improve test suite and use GitHub actions for continuous integration (CI).
22+ (#24 by @SimonFrings)
23+
324## 1.2.0 (2020-10-23)
425
526* Fix: Fix error reporting when parsing invalid SSH server URL.
Original file line number Diff line number Diff line change @@ -560,7 +560,7 @@ This project follows [SemVer](https://semver.org/).
560560This will install the latest supported version:
561561
562562``` bash
563- $ composer require clue/reactphp-ssh-proxy:^1.2
563+ $ composer require clue/reactphp-ssh-proxy:^1.3
564564```
565565
566566See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments