File tree 3 files changed +22
-2
lines changed
3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 2.4.0 (2020-09-25)
4
+
5
+ * Fix: Fix dangling timer when lazy connection closes with pending commands.
6
+ (#105 by @clue )
7
+
8
+ * Improve test suite and add ` .gitattributes ` to exclude dev files from exports.
9
+ Prepare PHP 8 support, update to PHPUnit 9 and simplify test matrix.
10
+ (#96 and #97 by @clue and #99 , #101 and #104 by @SimonFrings )
11
+
3
12
## 2.3.0 (2019-03-11)
4
13
5
14
* Feature: Add new ` createLazyClient() ` method to connect only on demand and
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ It enables you to set and query its data or use its PubSub topics to react to in
23
23
24
24
** Table of Contents**
25
25
26
+ * [ Support us] ( #support-us )
26
27
* [ Quickstart example] ( #quickstart-example )
27
28
* [ Usage] ( #usage )
28
29
* [ Factory] ( #factory )
@@ -40,6 +41,16 @@ It enables you to set and query its data or use its PubSub topics to react to in
40
41
* [ Tests] ( #tests )
41
42
* [ License] ( #license )
42
43
44
+ ## Support us
45
+
46
+ We invest a lot of time developing, maintaining and updating our awesome
47
+ open-source projects. You can help us sustain this high-quality of our work by
48
+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
49
+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
50
+ for details.
51
+
52
+ Let's take these projects to the next level together! 🚀
53
+
43
54
## Quickstart example
44
55
45
56
Once [ installed] ( #install ) , you can use the following code to connect to your
@@ -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/redis-react:^2.3
552
+ $ composer require clue/redis-react:^2.4
542
553
```
543
554
544
555
See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
Original file line number Diff line number Diff line change 7
7
"authors" : [
8
8
{
9
9
"name" : " Christian Lück" ,
10
- "email" : " christian@lueck.tv "
10
+ "email" : " christian@clue.engineering "
11
11
}
12
12
],
13
13
"require" : {
You can’t perform that action at this time.
0 commit comments