-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: ayeshLK/socket.io-client-java
base: master
head repository: socketio/socket.io-client-java
compare: master
- 15 commits
- 27 files changed
- 2 contributors
Commits on Mar 19, 2021
-
docs: update compatibility table with Socket.IO v4
There is no breaking change at the protocol level. Reference: https://socket.io/blog/socket-io-4-release/
Configuration menu - View commit details
-
Copy full SHA for 615942b - Browse repository at this point
Copy the full SHA 615942bView commit details
Commits on Apr 26, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 5b5b91c - Browse repository at this point
Copy the full SHA 5b5b91cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e2e24ea - Browse repository at this point
Copy the full SHA e2e24eaView commit details -
fix: fix usage with ws:// scheme
The URL constructor does not support the ws:// scheme, and would throw: > java.net.MalformedURLException: unknown protocol: ws Related: - socketio#650 - socketio#555 - socketio#233
Configuration menu - View commit details
-
Copy full SHA for 67fd5f3 - Browse repository at this point
Copy the full SHA 67fd5f3View commit details -
test: cleanup URISyntaxException exceptions
Note: we cannot update the `IO.socket(uri: string)` method without doing a breaking change.
Configuration menu - View commit details
-
Copy full SHA for a4053e8 - Browse repository at this point
Copy the full SHA a4053e8View commit details -
- replace explicit types by <> - remove unnecessary interface modifiers
Configuration menu - View commit details
-
Copy full SHA for 48fec45 - Browse repository at this point
Copy the full SHA 48fec45View commit details -
fix: ensure buffered events are sent in order
Before this commit, an event sent in the "connect" handler could be sent before the events that were buffered while disconnected. Related: socketio/socket.io-client#1458
Configuration menu - View commit details
-
Copy full SHA for 4885e7d - Browse repository at this point
Copy the full SHA 4885e7dView commit details -
fix: ensure the payload format is valid
This commit should prevent some NPE issues encountered after the parsing of the packet. Related: - socketio#642 - socketio#609 - socketio#505
Configuration menu - View commit details
-
Copy full SHA for e8ffe9d - Browse repository at this point
Copy the full SHA e8ffe9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for d324e7f - Browse repository at this point
Copy the full SHA d324e7fView commit details -
Configuration menu - View commit details
-
Copy full SHA for b46da92 - Browse repository at this point
Copy the full SHA b46da92View commit details -
Configuration menu - View commit details
-
Copy full SHA for ad23cfc - Browse repository at this point
Copy the full SHA ad23cfcView commit details
Commits on Sep 21, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 08bc462 - Browse repository at this point
Copy the full SHA 08bc462View commit details -
docs: update links to the Socket.IO website
Some links were broken due to recent updates.
Configuration menu - View commit details
-
Copy full SHA for d8d975e - Browse repository at this point
Copy the full SHA d8d975eView commit details
Commits on Nov 24, 2021
-
Configuration menu - View commit details
-
Copy full SHA for d97f457 - Browse repository at this point
Copy the full SHA d97f457View commit details
Commits on Dec 17, 2021
-
fix: fix emitting of events received during connection establishment (s…
…ocketio#695) Previously, the event name of packets received during the connection handshake would not be removed from the arguments array: ```java socket.on("my-event", new Emitter.Listener() { @OverRide public void call(Object... args) { System.out.println(Arrays.toString(args)); // prints ["my-event", "arg1", "arg2", "arg3"] } }); ```
Configuration menu - View commit details
-
Copy full SHA for 832a609 - Browse repository at this point
Copy the full SHA 832a609View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master