File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ Multiple connections are efficiently managed by the excellent netty NIO
1010framework. Support for advanced redis features such as Sentinel, Cluster and redis data models
1111is included.
1212
13- This version of lettuce has been tested against redis 2.8.13 and 3.0 RC2 .
13+ This version of lettuce has been tested against redis 2.8.13 and 3.0 RC3 .
1414
1515* Works with Java 6, 7 and 8
1616* synchronous and [ asynchronous connections] ( https://github.com/mp911de/lettuce/wiki/Asynchronous-Connections )
@@ -35,7 +35,7 @@ Releases of lettuce are available in the maven central repository. Take also a l
3535<dependency >
3636 <groupId >biz.paluch.redis</groupId >
3737 <artifactId >lettuce</artifactId >
38- <version >3.0.2 .Final</version >
38+ <version >3.0.3 .Final</version >
3939</dependency >
4040```
4141
@@ -45,7 +45,7 @@ Shaded JAR-File (packaged dependencies and relocated to the `com.lambdaworks` p
4545<dependency >
4646 <groupId >biz.paluch.redis</groupId >
4747 <artifactId >lettuce</artifactId >
48- <version >3.0.2 .Final</version >
48+ <version >3.0.3 .Final</version >
4949 <classifier >shaded</classifier >
5050 <exclusions >
5151 <exclusion >
Original file line number Diff line number Diff line change 1- lettuce 3.0.2 .Final RELEASE NOTES
1+ lettuce 3.0.3 .Final RELEASE NOTES
22
33This release fixes a memory leak when using PubSub.
44
55Fixes
66-----
7- * Memory leak #21, #22
7+ * Memory leak on connection loss #26
8+ * Fix channel loss on reconnect #27 (Thanks to @kichik)
9+ * Resubscribe even when there are no listeners #30 (Thanks to @kichik)
810
911Other
1012-----
11- * Streamline build and release
13+ * Allow passing server, port and password on command line for tests #29
1214
1315lettuce requires a minimum of Java 6 to build and run. It is tested against Redis 2.8 and Redis 3.0.
1416
Original file line number Diff line number Diff line change 4747 <!-- You need a running redis+sentinel for all tests, therefore disabled by default -->
4848 <skipTests >true</skipTests >
4949 <github .site.upload.skip>true</github .site.upload.skip>
50- <lettuce-release-version >3.0.2 .Final</lettuce-release-version >
50+ <lettuce-release-version >3.0.3 .Final</lettuce-release-version >
5151 </properties >
5252
5353 <scm >
You can’t perform that action at this time.
0 commit comments