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-cpp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: ec4d540
Choose a base ref
...
head repository: socketio/socket.io-client-cpp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: aba189c
Choose a head ref
  • 10 commits
  • 9 files changed
  • 7 contributors

Commits on Jan 15, 2021

  1. Configuration menu
    Copy the full SHA
    1b42ce7 View commit details
    Browse the repository at this point in the history
  2. fix: lower the minimum CMake supported version

    If CMake doesn't understand C++11-related property,
    simply use the COMPILE_FLAGS property
    dkmoon authored and darrachequesne committed Jan 15, 2021
    Configuration menu
    Copy the full SHA
    b196fa7 View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2021

  1. Configuration menu
    Copy the full SHA
    d1c73b7 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e7de4eb View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2021

  1. feat: allow resource path to be set in connection URI (#134)

    Please note that this implementation differs from the JS one, where the
    resource path is the namespace you want to reach:
    
    ```js
    const socket = io("https://example.com/my-namespace", {
      path: "/my-custom-path/"
    });
    ```
    
    Here, we will have:
    
    ```C++
    sio::client h;
    h.connect("https://example.com/my-custom-path/");
    h.socket("/my-namespace")->emit("hello");
    ```
    joelnordell authored Feb 14, 2021
    Configuration menu
    Copy the full SHA
    36a8cd4 View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2021

  1. Configuration menu
    Copy the full SHA
    e7f17c6 View commit details
    Browse the repository at this point in the history
  2. docs: update compatibility table for Socket.IO v4

    The v4 contains only a few breaking changes at the API level on the
    server-side, so the current C++ client is compatible.
    
    Reference: https://socket.io/docs/v4/migrating-from-3-x-to-4-0/
    darrachequesne committed Mar 24, 2021
    Configuration menu
    Copy the full SHA
    0581aab View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2021

  1. Configuration menu
    Copy the full SHA
    e8ea707 View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2021

  1. Configuration menu
    Copy the full SHA
    82d39a9 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2021

  1. chore(release): 3.1.0

    darrachequesne committed Oct 12, 2021
    Configuration menu
    Copy the full SHA
    aba189c View commit details
    Browse the repository at this point in the history
Loading