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 Loading
base: 4.3.1
Choose a base ref
...
head repository: socketio/socket.io Loading
compare: 4.3.2
Choose a head ref
  • 3 commits
  • 15 files changed
  • 3 contributors

Commits on Oct 24, 2021

  1. Configuration menu
    Copy the full SHA
    44e20ba View commit details
    Browse the repository at this point in the history
  2. fix: fix race condition in dynamic namespaces (#4137)

    Using an async operation with `io.use()` could lead to the creation of
    several instances of a same namespace, each of them overriding the
    previous one.
    
    Example:
    
    ```js
    io.use(async (nsp, auth, next) => {
      await anOperationThatTakesSomeTime();
      next();
    });
    ```
    
    Related: #4136
    sebamarynissen authored and darrachequesne committed Oct 24, 2021
    Configuration menu
    Copy the full SHA
    9d86397 View commit details
    Browse the repository at this point in the history

Commits on Nov 8, 2021

  1. chore(release): 4.3.2

    darrachequesne committed Nov 8, 2021
    Configuration menu
    Copy the full SHA
    ed8483d View commit details
    Browse the repository at this point in the history
Loading