File tree Expand file tree Collapse file tree 2 files changed +32
-1
lines changed
Expand file tree Collapse file tree 2 files changed +32
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 1.1.0 (2020-10-09)
4+
5+ * Feature: Support authentication with URL-encoded special characters.
6+ (#66 by @clue )
7+
8+ ``` php
9+ $user = 'he:llo';
10+ $pass = 'p@ss';
11+ $promise = $factory->createClient(
12+ rawurlencode($user) . ':' . rawurlencode($pass) . '@localhost'
13+ );
14+ ```
15+
16+ * Minor documentation improvements and add support / sponsorship info.
17+ (#58 by @clue)
18+
19+ * Improve test suite and add `.gitattributes` to exclude dev files from exports.
20+ Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix.
21+ (#57 and #59 by @clue and #61 and #65 by @SimonFrings)
22+
323## 1.0.0 (2019-10-31)
424
525* **First stable release, now following SemVer!**
Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ monitor the status of subscribers, channels or queues.
2727
2828** Table of contents**
2929
30+ * [ Support us] ( #support-us )
3031* [ Quickstart example] ( #quickstart-example )
3132* [ Usage] ( #usage )
3233 * [ Factory] ( #factory )
@@ -62,6 +63,16 @@ monitor the status of subscribers, channels or queues.
6263* [ Tests] ( #tests )
6364* [ License] ( #license )
6465
66+ ## Support us
67+
68+ We invest a lot of time developing, maintaining and updating our awesome
69+ open-source projects. You can help us sustain this high-quality of our work by
70+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
71+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
72+ for details.
73+
74+ Let's take these projects to the next level together! 🚀
75+
6576## Quickstart example
6677
6778Once [ installed] ( #install ) , you can use the following code to access your local
@@ -538,7 +549,7 @@ This project follows [SemVer](https://semver.org/).
538549This will install the latest supported version:
539550
540551``` bash
541- $ composer require clue/ami-react:^1.0
552+ $ composer require clue/ami-react:^1.1
542553```
543554
544555See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments