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.1.2
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.1.3
Choose a head ref
  • 7 commits
  • 21 files changed
  • 2 contributors

Commits on Jun 15, 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
    6f2a50b View commit details

Commits on Jun 24, 2021

  1. ci: update setup-node step (#3986)

    Daniele TDC authored Jun 24, 2021

    Verified

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

Commits on Jun 28, 2021

  1. ci: update to node 16 (#3990)

    Daniele TDC authored and darrachequesne committed Jun 28, 2021

    Verified

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

Commits on Jul 3, 2021

  1. Copy the full SHA
    7c44893 View commit details
  2. fix: remove x-sourcemap header

    This header is useless, as the client bundle already contains a
    sourceMappingURL field.
    
    Besides, Firefox prints the following warning:
    
    > <url> is being assigned a //# sourceMappingURL, but already has one
    
    Related: #3958
    darrachequesne committed Jul 3, 2021
    Copy the full SHA
    a4dffc6 View commit details

Commits on Jul 10, 2021

  1. fix: fix io.except() method

    Previously, calling `io.except("theroom").emit(...)` did not exclude
    the sockets in the given room.
    
    This method was forgotten in [1].
    
    [1]: ac9e8ca
    darrachequesne committed Jul 10, 2021
    Copy the full SHA
    94e27cd View commit details
  2. chore(release): 4.1.3

    darrachequesne committed Jul 10, 2021
    Copy the full SHA
    dbd2a07 View commit details
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,12 +12,12 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x, 15.x]
node-version: [12, 14, 16]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## [4.1.3](https://github.com/socketio/socket.io/compare/4.1.2...4.1.3) (2021-07-10)


### Bug Fixes

* fix io.except() method ([94e27cd](https://github.com/socketio/socket.io/commit/94e27cd072c8a4eeb9636f6ffbb7a21d382f36b0))
* remove x-sourcemap header ([a4dffc6](https://github.com/socketio/socket.io/commit/a4dffc6527f412d51a786ae5bf2e9080fe1ca63c))


## [4.1.2](https://github.com/socketio/socket.io/compare/4.1.1...4.1.2) (2021-05-17)


Loading