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: 3.4.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: 3.5.0
Choose a head ref
  • 5 commits
  • 8 files changed
  • 1 contributor

Commits on Dec 30, 2020

  1. ci: migrate to GitHub Actions

    Due to the recent changes to the Travis CI platform (see [1]), we will
    now use GitHub Actions to run the tests.
    
    Reference: https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-nodejs
    
    [1]: https://blog.travis-ci.com/2020-11-02-travis-ci-new-billing
    
    Backported from master: 312bd35
    darrachequesne committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    ddb80a2 View commit details
    Browse the repository at this point in the history
  2. chore: bump ws version

    darrachequesne committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    f632269 View commit details
    Browse the repository at this point in the history
  3. feat: disable perMessageDeflate by default

    The WebSocket permessage-deflate extension, while useful is some cases,
    adds some extra memory overhead for each WebSocket connection, and
    results in huge memory usage in production deployments.
    
    It will now be disabled by default.
    
    Backported from master: 078527a
    darrachequesne committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    5ad2736 View commit details
    Browse the repository at this point in the history
  4. feat: add support for all cookie options

    The "cookie" options can now be an object, which will be forwarded to
    the "cookie" module.
    
    The previous syntax is still valid:
    
    ```
    new Server({
      cookieName: "test",
      cookieHttpOnly: false,
      cookiePath: "/custom"
    })
    ```
    
    but the new syntax add support for all options:
    
    ```
    new Server({
      cookie: {
        name: "test",
        httpOnly: false,
        path: "/custom"
        sameSite: "lax"
      }
    })
    ```
    
    Reference: https://github.com/jshttp/cookie#options-1
    
    Backported from master: a374471
    darrachequesne committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    19cc582 View commit details
    Browse the repository at this point in the history
  5. chore(release): 3.5.0

    darrachequesne committed Dec 30, 2020
    Configuration menu
    Copy the full SHA
    b9dee7b View commit details
    Browse the repository at this point in the history
Loading