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-client
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2d708137298784761763fdebbd64785819527f45
Choose a base ref
...
head repository: socketio/socket.io-client
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2eca8dad28243c51a51d0c4a3dc12f6deaa0ae45
Choose a head ref
  • 4 commits
  • 14 files changed
  • 1 contributor

Commits on Oct 13, 2022

  1. ci: temporarily remove iOS 16 from the test matrix

    Tests iPhone and iPad 16 are currently failing.
    
    Saucelabs error message:
    
    > An unknown server-side error occurred while processing the command. Original error: W3C capabilities should be provided
    
    It might be time to migrate from zuul (https://github.com/defunctzombie/zuul).
    darrachequesne committed Oct 13, 2022

    Verified

    This commit was signed with the committer’s verified signature.
    darrachequesne Damien Arrachequesne
    Copy the full SHA
    1098618 View commit details
  2. fix: do not swallow user exceptions

    Following [1], any exception in a user-provided event listener would
    get caught in the try...catch of the decoder and result in the
    reconnection of the socket.
    
    [1]: c597023
    
    Related:
    
    - #1551
    - #1554
    - #1557
    darrachequesne committed Oct 13, 2022
    Copy the full SHA
    2403b88 View commit details

Commits on Oct 15, 2022

  1. Copy the full SHA
    7c05688 View commit details
  2. chore(release): 4.5.3

    darrachequesne committed Oct 15, 2022
    Copy the full SHA
    2eca8da View commit details
Showing with 463 additions and 133 deletions.
  1. +40 −0 CHANGELOG.md
  2. +2 −2 dist/socket.io.esm.min.js
  3. +1 −1 dist/socket.io.esm.min.js.map
  4. +180 −58 dist/socket.io.js
  5. +1 −1 dist/socket.io.js.map
  6. +2 −2 dist/socket.io.min.js
  7. +1 −1 dist/socket.io.min.js.map
  8. +2 −2 dist/socket.io.msgpack.min.js
  9. +1 −1 dist/socket.io.msgpack.min.js.map
  10. +6 −2 lib/manager.ts
  11. +190 −49 lib/socket.ts
  12. +8 −8 package-lock.json
  13. +2 −2 package.json
  14. +27 −4 zuul.config.js
40 changes: 40 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,43 @@
# 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-10-16) (2021-10-16)
- [4.3.1](#431-2021-10-15) (2021-10-15)
- [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-client/compare/4.5.2...4.5.3) (2022-10-15)


### Bug Fixes

* do not swallow user exceptions ([2403b88](https://github.com/socketio/socket.io-client/commit/2403b88057bf3fd32eb2047c82be26c455c13a2f))



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


Loading