File tree 4 files changed +39
-5
lines changed
4 files changed +39
-5
lines changed Original file line number Diff line number Diff line change 1
1
2
+ 2.1.1 / 2024-07-10
3
+ ==================
4
+
5
+ ### Bug Fixes
6
+
7
+ * discard acknowledgements upon disconnection ([ 54645ec] ( https://github.com/socketio/socket.io-client-java/commit/54645ece2cd132f3e305b80904e1fc38bd41c4f9 ) )
8
+ * make sendBuffer thread safe ([ #769 ] ( https://github.com/socketio/socket.io-client-java/issues/769 ) ) ([ b00ae8e] ( https://github.com/socketio/socket.io-client-java/commit/b00ae8eec1ef0aa5094fca7fad918a437603eb12 ) )
9
+
10
+
11
+
2
12
1.0.2 / 2022-07-11
3
13
==================
4
14
Original file line number Diff line number Diff line change 2
2
<modelVersion >4.0.0</modelVersion >
3
3
<groupId >io.socket</groupId >
4
4
<artifactId >socket.io-client</artifactId >
5
- <version >2.1.1-SNAPSHOT </version >
5
+ <version >2.1.1</version >
6
6
<packaging >jar</packaging >
7
7
<name >socket.io-client</name >
8
8
<description >Socket.IO Client Library for Java</description >
30
30
<url >https://github.com/socketio/socket.io-client-java</url >
31
31
<connection >scm:git:https://github.com/socketio/socket.io-client-java.git</connection >
32
32
<developerConnection >scm:git:https://github.com/socketio/socket.io-client-java.git</developerConnection >
33
- <tag >HEAD </tag >
33
+ <tag >socket.io-client-2.1.1 </tag >
34
34
</scm >
35
35
36
36
<developers >
184
184
<plugin >
185
185
<groupId >org.sonatype.plugins</groupId >
186
186
<artifactId >nexus-staging-maven-plugin</artifactId >
187
- <version >1.6.7 </version >
187
+ <version >1.6.13 </version >
188
188
<extensions >true</extensions >
189
189
<configuration >
190
190
<serverId >ossrh</serverId >
Original file line number Diff line number Diff line change
1
+ # History
2
+
3
+ | Version | Release date |
4
+ | --------------------------------------------------------------------------------------------------------------| ---------------|
5
+ | [ 2.1.1] ( #211-2024-07-10 ) | July 2024 |
6
+ | [ 1.0.2] ( #102-2022-07-11 ) (from the [ 1.x] ( https://github.com/socketio/socket.io-client-java/tree/1.x ) branch) | July 2022 |
7
+ | [ 2.1.0] ( #210-2022-07-10 ) | July 2022 |
8
+ | [ 2.0.1] ( #201-2021-04-27 ) | April 2021 |
9
+ | [ 2.0.0] ( #200-2020-12-14 ) | December 2020 |
10
+ | [ 1.0.1] ( #101-2020-12-10 ) | December 2020 |
11
+
12
+
13
+ # Release notes
14
+
15
+ ## [ 2.1.1] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.1.0...socket.io-client-2.1.1 ) (2024-07-10)
16
+
17
+
18
+ ### Bug Fixes
19
+
20
+ * discard acknowledgements upon disconnection ([ 54645ec] ( https://github.com/socketio/socket.io-client-java/commit/54645ece2cd132f3e305b80904e1fc38bd41c4f9 ) )
21
+ * make sendBuffer thread safe ([ #769 ] ( https://github.com/socketio/socket.io-client-java/issues/769 ) ) ([ b00ae8e] ( https://github.com/socketio/socket.io-client-java/commit/b00ae8eec1ef0aa5094fca7fad918a437603eb12 ) )
22
+
23
+
1
24
2
25
## [ 1.0.2] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-1.0.1...socket.io-client-1.0.2 ) (2022-07-11)
3
26
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Add the following dependency to your `pom.xml`.
17
17
<dependency >
18
18
<groupId >io.socket</groupId >
19
19
<artifactId >socket.io-client</artifactId >
20
- <version >2.1.0 </version >
20
+ <version >2.1.1 </version >
21
21
</dependency >
22
22
</dependencies >
23
23
```
@@ -26,7 +26,7 @@ Add the following dependency to your `pom.xml`.
26
26
Add it as a gradle dependency for Android Studio, in ` build.gradle ` :
27
27
28
28
``` groovy
29
- implementation ('io.socket:socket.io-client:2.1.0 ') {
29
+ implementation ('io.socket:socket.io-client:2.1.1 ') {
30
30
// excluding org.json which is provided by Android
31
31
exclude group: 'org.json', module: 'json'
32
32
}
@@ -36,6 +36,7 @@ implementation ('io.socket:socket.io-client:2.1.0') {
36
36
37
37
| ` socket.io-client ` | ` engine.io-client ` | ` okhttp ` |
38
38
| -----------------------------------------------------------------------------------------------------------------------------| -----------------------------------------------------------------------------------------------------------------------------| -------------------------------------------------------------------------------------------------|
39
+ | ` 2.1.1 ` ([ diff] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.1.0...socket.io-client-2.1.1 ) ) | ` 2.1.0 ` | ` 3.12.12 ` |
39
40
| ` 2.1.0 ` ([ diff] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.0.1...socket.io-client-2.1.0 ) ) | ` 2.1.0 ` ([ diff] ( https://github.com/socketio/engine.io-client-java/compare/engine.io-client-2.0.0...engine.io-client-2.1.0 ) ) | ` 3.12.12 ` |
40
41
| ` 2.0.1 ` ([ diff] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-2.0.0...socket.io-client-2.0.1 ) ) | ` 2.0.0 ` | ` 3.12.12 ` |
41
42
| ` 2.0.0 ` ([ diff] ( https://github.com/socketio/socket.io-client-java/compare/socket.io-client-1.0.1...socket.io-client-2.0.0 ) ) | ` 2.0.0 ` ([ diff] ( https://github.com/socketio/engine.io-client-java/compare/engine.io-client-1.0.1...engine.io-client-2.0.0 ) ) | ` 3.12.12 ` |
You can’t perform that action at this time.
0 commit comments