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.3.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.3.2
Choose a head ref
  • 3 commits
  • 15 files changed
  • 3 contributors

Commits on Oct 24, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    44e20ba View commit details
  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

    Verified

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

Commits on Nov 8, 2021

  1. chore(release): 4.3.2

    darrachequesne committed Nov 8, 2021

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    ed8483d View commit details
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [4.3.2](https://github.com/socketio/socket.io/compare/4.3.1...4.3.2) (2021-11-08)


### Bug Fixes

* fix race condition in dynamic namespaces ([#4137](https://github.com/socketio/socket.io/issues/4137)) ([9d86397](https://github.com/socketio/socket.io/commit/9d86397243bcbb5775a29d96e5ef03e17148a8e7))


## [4.3.1](https://github.com/socketio/socket.io/compare/4.3.0...4.3.1) (2021-10-16)


Loading