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

Commits on Sep 13, 2022

  1. refactor: add list of possible disconnection reasons

    Note: some disconnection reasons could be merged in the next major
    release, i.e. the Deno impl does not have "forced server close" and
    "server shutting down"
    
    Related: #4387
    darrachequesne committed Sep 13, 2022
    Copy the full SHA
    10fa4a2 View commit details

Commits on Oct 13, 2022

  1. fix(typings): apply types to "io.timeout(...).emit()" calls

    Typed events were not applied when calling "io.timeout(...).emit()".
    
    Related: socketio/socket.io-client#1555 (comment)
    
    Reference: https://socket.io/docs/v4/typescript/
    darrachequesne committed Oct 13, 2022
    Copy the full SHA
    e357daf View commit details
  2. Copy the full SHA
    596eb88 View commit details
  3. Copy the full SHA
    e6f6b90 View commit details

Commits on Oct 14, 2022

  1. Copy the full SHA
    8fae95d View commit details
  2. Copy the full SHA
    19b225b View commit details
  3. Copy the full SHA
    d3d0a2d View commit details

Commits on Oct 15, 2022

  1. chore(release): 4.5.3

    darrachequesne committed Oct 15, 2022
    Copy the full SHA
    945c84b View commit details
15 changes: 11 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -12,18 +12,25 @@ permissions:
jobs:
test-node:
runs-on: ubuntu-latest
timeout-minutes: 10

strategy:
matrix:
node-version: [12, 14, 16]

steps:
- uses: actions/checkout@v2
- name: Checkout repository
uses: actions/checkout@v3

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test

- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
env:
CI: true
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,44 @@
# History

- [4.5.3](#453-2022-10-15) (2022-10-15)
- [4.5.2](#452-2022-09-02) (2022-09-02)
- [4.5.1](#451-2022-05-17) (2022-05-17)
- [4.5.0](#450-2022-04-23) (2022-04-23)
- [4.4.1](#441-2022-01-06) (2022-01-06)
- [4.4.0](#440-2021-11-18) (2021-11-18)
- [4.3.2](#432-2021-11-08) (2021-11-08)
- [4.3.1](#431-2021-10-16) (2021-10-16)
- [4.3.0](#430-2021-10-14) (2021-10-14)
- [4.2.0](#420-2021-08-30) (2021-08-30)
- [4.1.3](#413-2021-07-10) (2021-07-10)
- [4.1.2](#412-2021-05-17) (2021-05-17)
- [4.1.1](#411-2021-05-11) (2021-05-11)
- [4.1.0](#410-2021-05-11) (2021-05-11)
- [4.0.2](#402-2021-05-06) (2021-05-06)
- [4.0.1](#401-2021-03-31) (2021-03-31)
- [4.0.0](#400-2021-03-10) (2021-03-10)
- [3.1.2](#312-2021-02-26) (2021-02-26)
- [3.1.1](#311-2021-02-03) (2021-02-03)
- [3.1.0](#310-2021-01-15) (2021-01-15)
- [3.0.5](#305-2021-01-05) (2021-01-05)
- [3.0.4](#304-2020-12-07) (2020-12-07)
- [3.0.3](#303-2020-11-19) (2020-11-19)
- [3.0.2](#302-2020-11-17) (2020-11-17)
- [3.0.1](#301-2020-11-09) (2020-11-09)
- [3.0.0](#300-2020-11-05) (2020-11-05)

# Release notes

## [4.5.3](https://github.com/socketio/socket.io/compare/4.5.2...4.5.3) (2022-10-15)


### Bug Fixes

* **typings:** accept an HTTP2 server in the constructor ([d3d0a2d](https://github.com/socketio/socket.io/commit/d3d0a2d5beaff51fd145f810bcaf6914213f8a06))
* **typings:** apply types to "io.timeout(...).emit()" calls ([e357daf](https://github.com/socketio/socket.io/commit/e357daf5858560bc84e7e50cd36f0278d6721ea1))



## [4.5.2](https://github.com/socketio/socket.io/compare/4.5.1...4.5.2) (2022-09-02)


Loading