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 1
1
# Changelog
2
2
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
+
3
23
## 1.0.0 (2019-10-31)
4
24
5
25
* **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.
27
27
28
28
** Table of contents**
29
29
30
+ * [ Support us] ( #support-us )
30
31
* [ Quickstart example] ( #quickstart-example )
31
32
* [ Usage] ( #usage )
32
33
* [ Factory] ( #factory )
@@ -62,6 +63,16 @@ monitor the status of subscribers, channels or queues.
62
63
* [ Tests] ( #tests )
63
64
* [ License] ( #license )
64
65
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
+
65
76
## Quickstart example
66
77
67
78
Once [ installed] ( #install ) , you can use the following code to access your local
@@ -538,7 +549,7 @@ This project follows [SemVer](https://semver.org/).
538
549
This will install the latest supported version:
539
550
540
551
``` bash
541
- $ composer require clue/ami-react:^1.0
552
+ $ composer require clue/ami-react:^1.1
542
553
```
543
554
544
555
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
You can’t perform that action at this time.
0 commit comments