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: 3.0.0-rc3
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: 3.0.0-rc4
Choose a head ref
  • 3 commits
  • 12 files changed
  • 1 contributor

Commits on Oct 27, 2020

  1. refactor: rework of the Manager events

    - rename "connect_error" to "error"
    - remove "reconnecting" (duplicate of "reconnect_attempt")
    
    The updated list of events emitted by the Manager:
    
    - open:                successful (re)connection
    - error:               (re)connection failure (previously: "connect_error") or error after a successful connection
    - close:               disconnection
    
    - ping:                ping packet
    - packet:              data packet
    
    - reconnect_attempt:   reconnection attempt (previously: "reconnect_attempt" & "reconnecting")
    - reconnect:           successful reconnection
    - reconnect_error:     reconnection failure
    - reconnect_failed:    reconnection failure after all attempts
    
    For reference, the Socket instance emits the following events:
    
    - connect:             successful connection to a Namespace
    - connect_error:       connection failure
    - disconnect:          disconnection
    darrachequesne committed Oct 27, 2020
    Configuration menu
    Copy the full SHA
    969debe View commit details
    Browse the repository at this point in the history

Commits on Oct 30, 2020

  1. Configuration menu
    Copy the full SHA
    0939395 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ffa2804 View commit details
    Browse the repository at this point in the history
Loading