From 1bea68969469a9374d355f44d2cd4dc3588b339c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 11:00:40 +0000 Subject: [PATCH 1/3] Bump arduino/arduino-lint-action from 1 to 2 Bumps [arduino/arduino-lint-action](https://github.com/arduino/arduino-lint-action) from 1 to 2. - [Release notes](https://github.com/arduino/arduino-lint-action/releases) - [Commits](https://github.com/arduino/arduino-lint-action/compare/v1...v2) --- updated-dependencies: - dependency-name: arduino/arduino-lint-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/arduino-lint.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/arduino-lint.yaml b/.github/workflows/arduino-lint.yaml index f99b9d4..6550c8e 100644 --- a/.github/workflows/arduino-lint.yaml +++ b/.github/workflows/arduino-lint.yaml @@ -5,6 +5,6 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: arduino/arduino-lint-action@v1 + - uses: arduino/arduino-lint-action@v2 with: library-manager: update From daf04b0560acba881464c1654b557c3395be9b99 Mon Sep 17 00:00:00 2001 From: OCH <18335360+omarcostahamido@users.noreply.github.com> Date: Sat, 16 Nov 2024 18:47:10 +0000 Subject: [PATCH 2/3] Update WebSocketClientSocketIOack.ino - fix some typos --- .../WebSocketClientSocketIOack.ino | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/esp32/WebSocketClientSocketIOack/WebSocketClientSocketIOack.ino b/examples/esp32/WebSocketClientSocketIOack/WebSocketClientSocketIOack.ino index af3572f..0e0fb5b 100644 --- a/examples/esp32/WebSocketClientSocketIOack/WebSocketClientSocketIOack.ino +++ b/examples/esp32/WebSocketClientSocketIOack/WebSocketClientSocketIOack.ino @@ -54,7 +54,7 @@ void socketIOEvent(socketIOmessageType_t type, uint8_t * payload, size_t length) // Message Includes a ID for a ACK (callback) if(id) { - // creat JSON message for Socket.IO (ack) + // create JSON message for Socket.IO (ack) DynamicJsonDocument docOut(1024); JsonArray array = docOut.to(); @@ -130,11 +130,11 @@ void loop() { if(now - messageTimestamp > 2000) { messageTimestamp = now; - // creat JSON message for Socket.IO (event) + // create JSON message for Socket.IO (event) DynamicJsonDocument doc(1024); JsonArray array = doc.to(); - // add evnet name + // add event name // Hint: socket.on('event_name', .... array.add("event_name"); @@ -142,7 +142,7 @@ void loop() { JsonObject param1 = array.createNestedObject(); param1["now"] = (uint32_t) now; - // JSON to String (serializion) + // JSON to String (serialization) String output; serializeJson(doc, output); From 1789a18ddb0319dc707be3a6588e26f3b3afc04f Mon Sep 17 00:00:00 2001 From: Akashdeep Deb Date: Sun, 29 Dec 2024 17:25:08 +0800 Subject: [PATCH 3/3] Update README.md (#927) * Update README.md Updating README to include ESP32 support in client mode * Update README.md --------- Co-authored-by: Markus <974709+Links2004@users.noreply.github.com> --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index bc37c8a..672c649 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,7 @@ a WebSocket Server and Client for Arduino based on RFC6455. ### wss / SSL ### supported for: - wss client on the ESP8266 + - wss / SSL for ESP32 in client mode - wss / SSL is not natively supported in WebSocketsServer however it is possible to achieve secure websockets by running the device behind an SSL proxy. See [Nginx](examples/Nginx/esp8266.ssl.reverse.proxy.conf) for a sample Nginx server configuration file to enable this.