Skip to content

Commit eb3bd2c

Browse files
committed
Prepare v1.4.0 release
1 parent ea703c3 commit eb3bd2c

File tree

2 files changed

+24
-7
lines changed

2 files changed

+24
-7
lines changed

CHANGELOG.md

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

3+
## 1.4.0 (2022-08-31)
4+
5+
* Feature: Full support for PHP 8.1 and PHP 8.2.
6+
(#105 by @clue and #108 by @SimonFrings)
7+
8+
* Feature: Mark passwords and URIs as `#[\SensitiveParameter]` (PHP 8.2+).
9+
(#109 by @SimonFrings)
10+
11+
* Feature: Forward compatibility with upcoming Promise v3.
12+
(#106 by @clue)
13+
14+
* Bug: Fix invalid references in exception stack trace.
15+
(#104 by @clue)
16+
17+
* Improve test suite and fix legacy HHVM build.
18+
(#107 by @SimonFrings)
19+
320
## 1.3.0 (2021-08-06)
421

522
* Feature: Simplify usage by supporting new default loop and making `Connector` optional.

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -959,14 +959,14 @@ You can start a local SOCKS server by creating a loopback connection to your
959959
local system if you already run an SSH daemon:
960960

961961
```bash
962-
$ ssh -D 1080 localhost
962+
ssh -D 1080 localhost
963963
```
964964

965965
Alternatively, you can start a local SOCKS server tunneling through a given
966966
remote host that runs an SSH daemon:
967967

968968
```bash
969-
$ ssh -D 1080 example.com
969+
ssh -D 1080 example.com
970970
```
971971

972972
Now you can simply use this SSH SOCKS server like this:
@@ -990,7 +990,7 @@ As an alternative, recent OpenSSH client versions also support
990990
on Unix file system permissions instead:
991991

992992
```bash
993-
$ ssh -D/tmp/proxy.sock example.com
993+
ssh -D/tmp/proxy.sock example.com
994994
```
995995

996996
Now you can simply use this SSH SOCKS server like this:
@@ -1047,7 +1047,7 @@ This project follows [SemVer](https://semver.org/).
10471047
This will install the latest supported version:
10481048

10491049
```bash
1050-
$ composer require clue/socks-react:^1.3
1050+
composer require clue/socks-react:^1.4
10511051
```
10521052

10531053
See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
@@ -1063,20 +1063,20 @@ To run the test suite, you first need to clone this repo and then install all
10631063
dependencies [through Composer](https://getcomposer.org/):
10641064

10651065
```bash
1066-
$ composer install
1066+
composer install
10671067
```
10681068

10691069
To run the test suite, go to the project root and run:
10701070

10711071
```bash
1072-
$ vendor/bin/phpunit
1072+
vendor/bin/phpunit
10731073
```
10741074

10751075
The test suite contains a number of tests that rely on a working internet
10761076
connection, alternatively you can also run it like this:
10771077

10781078
```bash
1079-
$ vendor/bin/phpunit --exclude-group internet
1079+
vendor/bin/phpunit --exclude-group internet
10801080
```
10811081

10821082
## License

0 commit comments

Comments
 (0)