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: 4.7.1
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: 4.7.2
Choose a head ref
  • 6 commits
  • 21 files changed
  • 2 contributors

Commits on Jun 29, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    443e447 View commit details

Commits on Jul 9, 2023

  1. docs: update the list of supported Node.js versions

    The Engine.IO server uses `timeout.refresh()` (see [1]), which was
    added in Node.js 10.2.0.
    
    Reference: https://nodejs.org/api/timers.html#timeoutrefresh
    
    Related: socketio/engine.io#686
    
    [1]: socketio/engine.io@37474c7
    darrachequesne committed Jul 9, 2023

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    03046a6 View commit details

Commits on Jul 21, 2023

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    0731c0d View commit details

Commits on Aug 2, 2023

  1. Copy the full SHA
    09d4549 View commit details
  2. fix(webtransport): properly handle WebTransport-only connections

    A WebTransport-only connection has no `request` attribute, so we need
    to handle that case.
    darrachequesne committed Aug 2, 2023
    Copy the full SHA
    3468a19 View commit details
  3. chore(release): 4.7.2

    darrachequesne committed Aug 2, 2023
    Copy the full SHA
    c332643 View commit details
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,7 @@

## 2023

- [4.7.2](#472-2023-08-02) (Aug 2023)
- [4.7.1](#471-2023-06-28) (Jun 2023)
- [4.7.0](#470-2023-06-22) (Jun 2023)
- [4.6.2](#462-2023-05-31) (May 2023)
@@ -60,6 +61,23 @@

# Release notes

## [4.7.2](https://github.com/socketio/socket.io/compare/4.7.1...4.7.2) (2023-08-02)


### Bug Fixes

* clean up child namespace when client is rejected in middleware ([#4773](https://github.com/socketio/socket.io/issues/4773)) ([0731c0d](https://github.com/socketio/socket.io/commit/0731c0d2f497d5cce596ea1ec32a67c08bcccbcd))
* **webtransport:** properly handle WebTransport-only connections ([3468a19](https://github.com/socketio/socket.io/commit/3468a197afe87e65eb0d779fabd347fe683013ab))
* **webtransport:** add proper framing ([a306db0](https://github.com/socketio/engine.io/commit/a306db09e8ddb367c7d62f45fec920f979580b7c))


### Dependencies

- [`engine.io@~6.5.2`](https://github.com/socketio/engine.io/releases/tag/6.5.2) ([diff](https://github.com/socketio/engine.io/compare/6.5.0...6.5.2))
- [`ws@~8.11.0`](https://github.com/websockets/ws/releases/tag/8.11.0) (no change)



## [4.7.1](https://github.com/socketio/socket.io/compare/4.7.0...4.7.1) (2023-06-28)

The client bundle contains a few fixes regarding the WebTransport support.
Loading