Skip to content

Commit 051ff50

Browse files
committed
Prepare v1.2.0 release
1 parent 5953096 commit 051ff50

File tree

2 files changed

+27
-4
lines changed

2 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## 1.2.0 (2020-10-23)
4+
5+
* Fix: Fix error reporting when parsing invalid SSH server URL.
6+
(#15 by @clue)
7+
8+
* Enhanced documentation for ReactPHP's new HTTP client.
9+
(#21 by @SimonFrings)
10+
11+
* Improve test suite and add `.gitattributes` to exclude dev files from exports.
12+
Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix.
13+
(#14 by @clue and #16, #18, #19 and 22 by @SimonFrings)
14+
315
## 1.1.1 (2019-05-01)
416

517
* Fix: Only start consuming STDOUT data once connection is ready.

README.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ existing higher-level protocol implementation.
2424
Send any number of SSH proxy requests in parallel and process their
2525
responses as soon as results come in.
2626
The Promise-based design provides a *sane* interface to working with out of
27-
bound responses and possible connection errors.
27+
order responses and possible connection errors.
2828
* **Standard interfaces** -
2929
Allows easy integration with existing higher-level components by implementing
3030
ReactPHP's standard
@@ -38,6 +38,7 @@ existing higher-level protocol implementation.
3838

3939
**Table of contents**
4040

41+
* [Support us](#support-us)
4142
* [Quickstart example](#quickstart-example)
4243
* [API](#api)
4344
* [SshProcessConnector](#sshprocessconnector)
@@ -55,6 +56,16 @@ existing higher-level protocol implementation.
5556
* [License](#license)
5657
* [More](#more)
5758

59+
## Support us
60+
61+
We invest a lot of time developing, maintaining and updating our awesome
62+
open-source projects. You can help us sustain this high-quality of our work by
63+
[becoming a sponsor on GitHub](https://github.com/sponsors/clue). Sponsors get
64+
numerous benefits in return, see our [sponsoring page](https://github.com/sponsors/clue)
65+
for details.
66+
67+
Let's take these projects to the next level together! 🚀
68+
5869
## Quickstart example
5970

6071
The following example code demonstrates how this library can be used to send a
@@ -167,7 +178,7 @@ to `tcp://reactphp.org:80` for the first time, it will run the equivalent of
167178
mode and will then create a SOCKS client connection to this server process. You
168179
can create any number of connections over this one process and it will keep this
169180
process running while there are any open connections and will automatically
170-
close if when it is idle. For this to work, you'll have to make sure that you
181+
close it when it is idle. For this to work, you'll have to make sure that you
171182
have a suitable SSH client installed. On Debian/Ubuntu-based systems, you may
172183
simply install it like this:
173184

@@ -428,7 +439,7 @@ See also any of the [examples](examples).
428439
### DNS resolution
429440

430441
By default, neither the `SshProcessConnector` nor the `SshSocksConnector` perform
431-
any DNS resolution at all and simply forwards any hostname you're trying to
442+
any DNS resolution at all and simply forward any hostname you're trying to
432443
connect to the remote proxy server. The remote proxy server is thus responsible
433444
for looking up any hostnames via DNS (this default mode is thus called *remote DNS resolution*).
434445

@@ -529,7 +540,7 @@ This project follows [SemVer](https://semver.org/).
529540
This will install the latest supported version:
530541

531542
```bash
532-
$ composer require clue/reactphp-ssh-proxy:^1.1.1
543+
$ composer require clue/reactphp-ssh-proxy:^1.2
533544
```
534545

535546
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.

0 commit comments

Comments
 (0)