You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: History.md
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,13 @@
1
1
2
+
1.0.1 / 2020-12-10
3
+
==================
4
+
5
+
### Bug Fixes
6
+
7
+
* don't process socket.connect() if we are already re-connecting ([#577](https://github.com/socketio/socket.io-client-java/issues/577)) ([54b7311](https://github.com/socketio/socket.io-client-java/commit/54b73114d19f33a78bec1ce99325893129f8a148))
8
+
* handle case where URI.getHost() returns null ([#484](https://github.com/socketio/socket.io-client-java/issues/484)) ([567372e](https://github.com/socketio/socket.io-client-java/commit/567372ecfa6c86bdc72f8bc64985d6511dc87666))
The latest artifact is available on Maven Central. You'll also need [dependencies](http://socketio.github.io/socket.io-client-java/dependencies.html) to install.
33
+
The latest artifact is available on Maven Central.
16
34
17
35
### Maven
18
36
Add the following dependency to your `pom.xml`.
@@ -22,7 +40,7 @@ Add the following dependency to your `pom.xml`.
22
40
<dependency>
23
41
<groupId>io.socket</groupId>
24
42
<artifactId>socket.io-client</artifactId>
25
-
<version>1.0.0</version>
43
+
<version>1.0.1/version>
26
44
</dependency>
27
45
</dependencies>
28
46
```
@@ -31,22 +49,12 @@ Add the following dependency to your `pom.xml`.
31
49
Add it as a gradle dependency for Android Studio, in `build.gradle`:
32
50
33
51
```groovy
34
-
compile ('io.socket:socket.io-client:1.0.0') {
52
+
compile ('io.socket:socket.io-client:1.0.1') {
35
53
// excluding org.json which is provided by Android
36
54
exclude group: 'org.json', module: 'json'
37
55
}
38
56
```
39
57
40
-
#### Socket.IO Server 1.x suppport
41
-
42
-
The current version of socket.io-client-java doesn't support socket.io server 1.x.
43
-
Please use socket.io-client-java 0.9.x for that instead.
44
-
45
-
#### Socket.IO Server 3.x not suppported
46
-
47
-
The current version of socket.io-client-java doesn't support socket.io server 3.x.
48
-
Please use the lastest version of socket.io 2.x: [socket.io 2.3.0](https://www.npmjs.com/package/socket.io/v/2.3.0)
49
-
50
58
## Usage
51
59
Socket.IO-client Java has almost the same api and features with the original JS client. You use `IO#socket` to initialize `Socket`:
0 commit comments