From 3a9f66239b063ac1f3d3123e0574101174b26929 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 19:04:36 +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/check-arduino.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-arduino.yml b/.github/workflows/check-arduino.yml index adb330f..e818685 100644 --- a/.github/workflows/check-arduino.yml +++ b/.github/workflows/check-arduino.yml @@ -19,7 +19,7 @@ jobs: uses: actions/checkout@v4 - name: Arduino Lint - uses: arduino/arduino-lint-action@v1 + uses: arduino/arduino-lint-action@v2 with: compliance: specification library-manager: update From 32e43bbfa2b714ebd404a388b1d239a2f651d52f Mon Sep 17 00:00:00 2001 From: pennam Date: Mon, 7 Apr 2025 15:27:29 +0200 Subject: [PATCH 2/3] Add configuration define to disable br_sslio_close --- src/BearSSLClient.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/BearSSLClient.cpp b/src/BearSSLClient.cpp index 0e5b31a..3653d90 100644 --- a/src/BearSSLClient.cpp +++ b/src/BearSSLClient.cpp @@ -203,10 +203,11 @@ void BearSSLClient::flush() void BearSSLClient::stop() { if (_client->connected()) { +#if !defined(ARDUINO_BEARSSL_DISABLE_TLS_CLOSE) if ((br_ssl_engine_current_state(&_sc.eng) & BR_SSL_CLOSED) == 0) { br_sslio_close(&_ioc); } - +#endif _client->stop(); } } From e9f249b8dfc84aee60ebb574e5fd233432661b0c Mon Sep 17 00:00:00 2001 From: Mattia Pennasilico Date: Wed, 9 Apr 2025 08:35:24 +0200 Subject: [PATCH 3/3] Release 1.7.5 --- library.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library.properties b/library.properties index f2b94b6..f39e1b4 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=ArduinoBearSSL -version=1.7.4 +version=1.7.5 author=Arduino maintainer=Arduino sentence=Port of BearSSL to Arduino.