Skip to content

Commit

Permalink
Prepare v1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
clue committed Jan 7, 2019
1 parent 2d51865 commit 23b7372
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# Changelog

## 1.2.0 (2019-01-07)

* Feature / Fix: Improve TLS 1.3 support.
(#186 by @clue)

TLS 1.3 is now an official standard as of August 2018! :tada:
The protocol has major improvements in the areas of security, performance, and privacy.
TLS 1.3 is supported by default as of [OpenSSL 1.1.1](https://www.openssl.org/blog/blog/2018/09/11/release111/).
For example, this version ships with Ubuntu 18.10 (and newer) by default, meaning that recent installations support TLS 1.3 out of the box :shipit:

* Fix: Avoid possibility of missing remote address when TLS handshake fails.
(#188 by @clue)

* Improve performance by prefixing all global functions calls with `\` to skip the look up and resolve process and go straight to the global function.
(#183 by @WyriHaximus)

* Update documentation to use full class names with namespaces.
(#187 by @clue)

* Improve test suite to avoid some possible race conditions,
test against PHP 7.3 on Travis and
use dedicated `assertInstanceOf()` assertions.
(#185 by @clue, #178 by @WyriHaximus and #181 by @carusogabriel)

## 1.1.0 (2018-10-01)

* Feature: Improve error reporting for failed connection attempts and improve
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1354,7 +1354,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require react/socket:^1.1
$ composer require react/socket:^1.2
```

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

0 comments on commit 23b7372

Please sign in to comment.