File tree Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Expand file tree Collapse file tree 3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
# pusher-websocket-java changelog
2
2
3
+ ### Version 2.3.0 - 4th July 2022
4
+ * Added support for user sign in and server to user messages
5
+ * Fixed issue with calling disconnect while the client is attempting reconnection
6
+ * Fixed issue with calling connect while the client is disconnecting
7
+
3
8
### Version 2.2.8 - 30th November 2021
4
9
* Add global [ event listner] ( https://github.com/pusher/pusher-websocket-java/issues/305 )
5
10
Original file line number Diff line number Diff line change @@ -74,7 +74,7 @@ The pusher-java-client is available in Maven Central.
74
74
<dependency >
75
75
<groupId >com.pusher</groupId >
76
76
<artifactId >pusher-java-client</artifactId >
77
- <version >2.2.8 </version >
77
+ <version >2.3.0-beta </version >
78
78
</dependency >
79
79
</dependencies >
80
80
```
@@ -83,7 +83,7 @@ The pusher-java-client is available in Maven Central.
83
83
84
84
``` groovy
85
85
dependencies {
86
- compile 'com.pusher:pusher-java-client:2.2.8 '
86
+ compile 'com.pusher:pusher-java-client:2.3.0-beta '
87
87
}
88
88
```
89
89
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ def getProperty = { property ->
26
26
}
27
27
28
28
group = " com.pusher"
29
- version = " 2.2.8 "
29
+ version = " 2.3.0-beta "
30
30
sourceCompatibility = " 1.8"
31
31
targetCompatibility = " 1.8"
32
32
You can’t perform that action at this time.
0 commit comments