File tree Expand file tree Collapse file tree 2 files changed +12
-1
lines changed
Expand file tree Collapse file tree 2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.0 (2017-08-03)
4+
5+ * Feature: Support custom rejection reason for ConnectionManagerReject
6+ (#23 by @clue )
7+
8+ ``` php
9+ $connector = new ConnectionManagerReject(function ($uri) {
10+ throw new RuntimeException($uri . ' blocked');
11+ });
12+ ```
13+
314## 1.0.1 (2017-06-23)
415
516* Fix: Ignore URI scheme when matching selective connectors
Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ The recommended way to install this library is [through Composer](http://getcomp
239239This will install the latest supported version:
240240
241241``` bash
242- $ composer require clue/connection-manager-extra:^1.0. 1
242+ $ composer require clue/connection-manager-extra:^1.1
243243```
244244
245245See also the [ CHANGELOG] ( CHANGELOG.md ) for more details about version upgrades.
You can’t perform that action at this time.
0 commit comments