8000 Comparing 4.0.6...4.1.0 · socketio/engine.io · GitHub
[go: up one dir, main page]

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: 4.0.6
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: 4.1.0
Choose a head ref
  • 2 commits
  • 18 files changed
  • 1 contributor

Commits on Jan 14, 2021

  1. feat: add support for v3.x clients

    In order to ease the migration to Socket.IO v3, the Engine.IO server
    can now communicate with v3.x clients.
    
    ```js
    const eioServer = require("engine.io")(httpServer, {
      allowEIO3: true // false by default
    });
    ```
    
    If `allowEIO3` is false, the v3.x clients will now receive an HTTP 400
    response ("Unsupported protocol version").
    
    Note: the code of the v3 parser has been imported from [1] and
    browser-related dependencies were removed.
    
    [1]: https://github.com/socketio/engine.io-parser/tree/2.2.1
    
    Related:
    
    - socketio/engine.io-protocol#35
    - socketio/socket.io-protocol#21
    darrachequesne committed Jan 14, 2021
    Configuration menu
    Copy the full SHA
    663d326 View commit details
    Browse the repository at this point in the history
  2. chore(release): 4.1.0

    darrachequesne committed Jan 14, 2021
    Configuration menu
    Copy the full SHA
    e5b307c View commit details
    Browse the repository at this point in the history
Loading
0