-
Notifications
You must be signed in to change notification settings - Fork 172
Comparing changes
Open a pull request
base repository: socketio/engine.io-client-java
base: engine.io-client-1.0.2
head repository: socketio/engine.io-client-java
compare: main
- 14 commits
- 23 files changed
- 4 contributors
Commits on Dec 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 41f89a3 - Browse repository at this point
Copy the full SHA 41f89a3View commit details -
feat: add an extraHeaders option
Similar to the option of the JS client: ```java opts = new Socket.Options(); opts.extraHeaders = singletonMap("authorization", singletonList("bearer abcd")); socket = new Socket(opts); ``` Note: the refactor of the options (similar to [1]) will be done in a future step. [1] socketio/engine.io-client@5f47a50
Configuration menu - View commit details
-
Copy full SHA for dfe65e3 - Browse repository at this point
Copy the full SHA dfe65e3View commit details -
fix: check the type of the initial packet
Before this fix, the client could mark the polling transport as open even though the handshake packet was not received properly (for example, after a parsing error). See also: socketio/engine.io-client@1c8cba8
Configuration menu - View commit details
-
Copy full SHA for 2b5dfb9 - Browse repository at this point
Copy the full SHA 2b5dfb9View commit details -
Configuration menu - View commit details
-
Copy full SHA for cbd341c - Browse repository at this point
Copy the full SHA cbd341cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 62f1384 - Browse repository at this point
Copy the full SHA 62f1384View commit details -
Configuration menu - View commit details
-
Copy full SHA for 686ac08 - Browse repository at this point
Copy the full SHA 686ac08View commit details
Commits on Jan 22, 2021
-
feat: create heartbeat scheduler with named threads and as daemon (#106)
Co-authored-by: Pavel Valodzka <pavel@valodzka.name>
Configuration menu - View commit details
-
Copy full SHA for 7c9c382 - Browse repository at this point
Copy the full SHA 7c9c382View commit details
Commits on Jan 13, 2022
-
chore: bump engine.io from 4.0.5 to 4.1.2 in /src/test/resources (#110)
Bumps [engine.io](https://github.com/socketio/engine.io) from 4.0.5 to 4.1.2. - [Release notes](https://github.com/socketio/engine.io/releases) - [Changelog](https://github.com/socketio/engine.io/blob/4.1.2/CHANGELOG.md) - [Commits](socketio/engine.io@4.0.5...4.1.2) --- updated-dependencies: - dependency-name: engine.io dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 9be533f - Browse repository at this point
Copy the full SHA 9be533fView commit details
Commits on Jul 3, 2022
-
fix: increase the readTimeout value of the default OkHttpClient
With the previous value (10 seconds by default), a connection established with HTTP long-polling was closed if the server did not send any packet for 10 seconds (the HTTP request would timeout from the client side). It will now default to 1 minute, which is above the `pingInterval + pingTimeout` value from the server. Note: the connectTimeout and writeTimeout options are left as is (10 seconds), but you may need to increase them depending on your use case: ``` OkHttpClient client = new OkHttpClient.Builder() .connectTimeout(20, TimeUnit.SECONDS) .readTimeout(1, TimeUnit.MINUTES) .writeTimeout(1, TimeUnit.MINUTES) .build(); ``` Related: - socketio/socket.io-client-java#491 - socketio/socket.io-client-java#660
Configuration menu - View commit details
-
Copy full SHA for fb531fa - Browse repository at this point
Copy the full SHA fb531faView commit details
Commits on Jul 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2469933 - Browse repository at this point
Copy the full SHA 2469933View commit details -
Configuration menu - View commit details
-
Copy full SHA for 592859d - Browse repository at this point
Copy the full SHA 592859dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8519952 - Browse repository at this point
Copy the full SHA 8519952View commit details
Commits on Feb 18, 2025
-
Maven has been upgraded from 3.8 to 3.9, which is not compatible with JDK 7. See also: actions/runner-images#11093
Configuration menu - View commit details
-
Copy full SHA for 050dd26 - Browse repository at this point
Copy the full SHA 050dd26View commit details
Commits on Aug 11, 2025
-
ci: upgrade maven to version 3.8.9
Previous version is no longer available at [1]. [1]: https://dlcdn.apache.org/maven/maven-3/
Configuration menu - View commit details
-
Copy full SHA for 5d02ea0 - Browse repository at this point
Copy the full SHA 5d02ea0View 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 engine.io-client-1.0.2...main