-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
# Changelog | ||
|
||
## 1.3.0 (2021-08-06) | ||
|
||
* Feature: Simplify usage by supporting new default loop. | ||
(#27 and #28 by @clue) | ||
|
||
```php | ||
// old (still supported) | ||
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]', $loop); | ||
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]', $loop); | ||
|
||
// new (using default loop) | ||
$proxy = new Clue\React\SshProxy\SshProcessConnector('[email protected]'); | ||
$proxy = new Clue\React\SshProxy\SshSocksConnector('[email protected]'); | ||
``` | ||
|
||
* Documentation improvements and updated examples. | ||
(#25, #29 and #30 by @clue and #23 and #26 by @SimonFrings) | ||
|
||
* Improve test suite and use GitHub actions for continuous integration (CI). | ||
(#24 by @SimonFrings) | ||
|
||
## 1.2.0 (2020-10-23) | ||
|
||
* Fix: Fix error reporting when parsing invalid SSH server URL. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters