File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.2.0 (2024-02-23)
4+
5+ * Feature: Forward compatibility with Promise v3.
6+ (#80 by @SimonFrings )
7+
8+ * Feature: Simplify usage by supporting new [ default loop] ( https://reactphp.org/event-loop/#loop ) and new Socket API.
9+ (#70 by @clue and #71 by @SimonFrings )
10+
11+ ``` php
12+ // old (still supported)
13+ $factory = new Clue\React\Ami\Factory($loop);
14+
15+ // new (using default loop)
16+ $factory = new Clue\React\Ami\Factory();
17+ ```
18+
19+ * Feature: Full PHP 8.3 compatibility.
20+ (#67, #73 and #79 by @SimonFrings)
21+
22+ * Minor documentation improvements.
23+ (#69 by @PaulRotmann and #77 by @yadaiio)
24+
25+ * Improve test suite and use GitHub actions for continuous integration (CI).
26+ (#67 and #78 by @SimonFrings)
27+
328## 1.1.0 (2020-10-09)
429
530* Feature: Support authentication with URL-encoded special characters.
Original file line number Diff line number Diff line change @@ -557,7 +557,7 @@ This project follows [SemVer](https://semver.org/).
557557This will install the latest supported version:
558558
559559``` bash
560- composer require clue/ami-react:^1.1
560+ composer require clue/ami-react:^1.2
561561```
562562
563563See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments