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/engine.io
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6.5.2
Choose a base ref
...
head repository: socketio/engine.io
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.5.5
Choose a head ref
  • 13 commits
  • 11 files changed
  • 4 contributors

Commits on Aug 17, 2023

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

Commits on Oct 5, 2023

  1. fix(webtransport): properly handle abruptly closed connections

    Refreshing the page with a client connected with WebTransport would
    trigger the following exception:
    
    > node:internal/process/promises:288
    >            triggerUncaughtException(err, true /* fromPromise */);
    >            ^
    >
    > [UnhandledPromiseRejection: This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). The promise rejected with the reason "0".] {
    >   code: 'ERR_UNHANDLED_REJECTION'
    > }
    
    Related: #688
    darrachequesne committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    ff1c861 View commit details
    Browse the repository at this point in the history
  2. refactor: add cache-control header in the polling response

    This header should not be needed since the client already includes a
    cache busting query parameter ("t"), but a misconfigured CDN could
    ignore the query parameters and cache the server response.
    
    Related: socketio/socket.io#4842
    darrachequesne committed Oct 5, 2023
    Configuration menu
    Copy the full SHA
    9545b44 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2023

  1. chore(release): 6.5.3

    darrachequesne committed Oct 6, 2023
    Configuration menu
    Copy the full SHA
    2da559a View commit details
    Browse the repository at this point in the history

Commits on Nov 9, 2023

  1. refactor: remove useless reference

    A reference to the initial IncomingMessage object (the first HTTP
    request of the session) is kept in memory by default (`socket.request`),
    so its attached ServerResponse object (`req.res`) would not be
    garbage-collected. This will now be the case.
    
    Note: the IncomingMessage object is needed in two cases:
    
    - when working with the `express-session` middleware (`request.session`)
    - when fetching the certificate of the client with `request.socket.getPeerCertificate()`
    
    That's why removing it would be a breaking change.
    darrachequesne committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    f27a6c3 View commit details
    Browse the repository at this point in the history
  2. refactor: remove useless references

    Those timers are only used during the upgrade, so there is no need to
    keep those references in memory.
    darrachequesne committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    3b5e79e View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    43c1c1c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    39937f8 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    09acb17 View commit details
    Browse the repository at this point in the history
  6. chore(release): 6.5.4

    darrachequesne committed Nov 9, 2023
    Configuration menu
    Copy the full SHA
    ff0fbfb View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. Configuration menu
    Copy the full SHA
    0efa04b View commit details
    Browse the repository at this point in the history

Commits on Jun 18, 2024

  1. chore(deps): bump ws from 8.11.0 to 8.17.1 (#702)

    Bumps [ws](https://github.com/websockets/ws) from 8.11.0 to 8.17.1.
    - [Release notes](https://github.com/websockets/ws/releases)
    - [Commits](websockets/ws@8.11.0...8.17.1)
    
    ---
    updated-dependencies:
    - dependency-name: ws
      dependency-type: direct:production
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored and darrachequesne committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    adaa207 View commit details
    Browse the repository at this point in the history
  2. chore(release): 6.5.5

    darrachequesne committed Jun 18, 2024
    Configuration menu
    Copy the full SHA
    0cb977a View commit details
    Browse the repository at this point in the history
Loading