Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: socketio/socket.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: engine.io@6.6.5
Choose a base ref
...
head repository: socketio/socket.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: engine.io@6.6.6
Choose a head ref
  • 18 commits
  • 51 files changed
  • 6 contributors

Commits on Dec 22, 2025

  1. 2 Configuration menu
    Copy the full SHA
    fd9d4ca View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    161be91 View commit details
    Browse the repository at this point in the history
  3. fix(sio): improve io.close() function (#5344)

    Before this change, `await io.close();` would resolve before the HTTP server was properly shut down.
    
    Related: #4971
    fantua authored and darrachequesne committed Dec 22, 2025
    Configuration menu
    Copy the full SHA
    bb0b480 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    dd71792 View commit details
    Browse the repository at this point in the history
  5. docs(eio): fix link in the release notes

    [skip ci]
    darrachequesne committed Dec 22, 2025
    Configuration menu
    Copy the full SHA
    ad61607 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2025

  1. Configuration menu
    Copy the full SHA
    2bf16bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    968277c View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    ee9aac3 View commit details
    Browse the repository at this point in the history
  4. refactor: remove unused files

    [skip ci]
    darrachequesne committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    579d43f View commit details
    Browse the repository at this point in the history
  5. fix(sio): do not throw when calling io.close() on a stopped server

    Following [1], calling both `io.close()` and `httpServer.close()` would throw an ERR_SERVER_NOT_RUNNING exception, which was not the case before.
    
    Related: #5431
    
    [1]: bb0b480
    darrachequesne committed Dec 23, 2025
    Configuration menu
    Copy the full SHA
    9581f9b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    e9e5bed View commit details
    Browse the repository at this point in the history
  7. 1 Configuration menu
    Copy the full SHA
    9978574 View commit details
    Browse the repository at this point in the history

Commits on Jan 23, 2026

  1. Configuration menu
    Copy the full SHA
    d48718c View commit details
    Browse the repository at this point in the history
  2. fix(types): properly import http module

    This commit fixes `Module '"http"' has no default export.` errors (ts-node + esm).
    darrachequesne committed Jan 23, 2026
    Configuration menu
    Copy the full SHA
    74599a6 View commit details
    Browse the repository at this point in the history

Commits on Mar 2, 2026

  1. fix: cleanup pending acks on timeout to prevent memory leak (#5442)

    When using `emitWithAck` with a timeout, if clients didn't respond
    and the timeout triggers, the ack callbacks remained in `socket.acks`
    Map indefinitely, causing a memory leak.
    
    Related: #4984
    seungeonchoi authored and darrachequesne committed Mar 2, 2026
    Configuration menu
    Copy the full SHA
    da04267 View commit details
    Browse the repository at this point in the history

Commits on Mar 4, 2026

  1. fix(eio): emit initial_headers and headers events in uServer (#5460)

    The uServer (uWebSockets.js) implementation did not emit
    "initial_headers" and "headers" events during WebSocket upgrades,
    unlike the regular Server which does this via the ws "headers" event.
    
    Related: #5300
    erdinccurebal authored Mar 4, 2026
    Configuration menu
    Copy the full SHA
    44ed73f View commit details
    Browse the repository at this point in the history
  2. fix(eio): add @types/ws as dependency (#5458)

    Since engine.io@6.6.5, the generated .d.ts files import types from "ws"
    (WebSocket, PerMessageDeflateOptions), but @types/ws was not declared as
    a dependency. This causes TypeScript compilation errors for consumers
    who do not have @types/ws installed.
    
    This follows the existing pattern where @types/cors and @types/node are
    already listed as dependencies.
    
    Related: #5437
    Not-Sarthak authored and darrachequesne committed Mar 4, 2026
    Configuration menu
    Copy the full SHA
    07cbe15 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2026

  1. Configuration menu
    Copy the full SHA
    84c2fb7 View commit details
    Browse the repository at this point in the history
Loading