From 9ec006a3e4ea51d19f8ee51efbdadaadd2290b78 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Tue, 25 Nov 2025 13:35:49 +0100 Subject: [PATCH] bump(mosq): 2.0.20~4 -> 2.0.20~5 2.0.20~5 Features - Add support for basic MQTT authentication (65b58aa0) Bug Fixes - Add optional mqtt deps to examples (6f6110e3) - Update example to optionally use basic mqtt auth (38384852) - Fix unpwd-check wrap function (ba3377b2) - Fix the version check (9fbb6e6d) --- components/mosquitto/.cz.yaml | 2 +- components/mosquitto/CHANGELOG.md | 13 +++++++++++++ components/mosquitto/idf_component.yml | 2 +- components/mosquitto/port/priv_include/config.h | 2 +- 4 files changed, 16 insertions(+), 3 deletions(-) diff --git a/components/mosquitto/.cz.yaml b/components/mosquitto/.cz.yaml index 03fb62076..783db7aad 100644 --- a/components/mosquitto/.cz.yaml +++ b/components/mosquitto/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(mosq): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py mosquitto tag_format: mosq-v$version - version: 2.0.20~4 + version: 2.0.20~5 version_files: - idf_component.yml diff --git a/components/mosquitto/CHANGELOG.md b/components/mosquitto/CHANGELOG.md index ba631add9..c03456408 100644 --- a/components/mosquitto/CHANGELOG.md +++ b/components/mosquitto/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [2.0.20~5](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_5) + +### Features + +- Add support for basic MQTT authentication ([65b58aa0](https://github.com/espressif/esp-protocols/commit/65b58aa0)) + +### Bug Fixes + +- Add optional mqtt deps to examples ([6f6110e3](https://github.com/espressif/esp-protocols/commit/6f6110e3)) +- Update example to optionally use basic mqtt auth ([38384852](https://github.com/espressif/esp-protocols/commit/38384852)) +- Fix unpwd-check wrap function ([ba3377b2](https://github.com/espressif/esp-protocols/commit/ba3377b2)) +- Fix the version check ([9fbb6e6d](https://github.com/espressif/esp-protocols/commit/9fbb6e6d)) + ## [2.0.20~4](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_4) ### Features diff --git a/components/mosquitto/idf_component.yml b/components/mosquitto/idf_component.yml index f61fdb4e5..8b4c142d1 100644 --- a/components/mosquitto/idf_component.yml +++ b/components/mosquitto/idf_component.yml @@ -1,4 +1,4 @@ -version: "2.0.20~4" +version: "2.0.20~5" url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto description: The component provides a simple ESP32 port of mosquitto broker dependencies: diff --git a/components/mosquitto/port/priv_include/config.h b/components/mosquitto/port/priv_include/config.h index 73dad3d6b..545bfaf78 100644 --- a/components/mosquitto/port/priv_include/config.h +++ b/components/mosquitto/port/priv_include/config.h @@ -20,4 +20,4 @@ #undef isspace #define isspace(__c) (__ctype_lookup((int)__c)&_S) -#define VERSION "v2.0.20~4" +#define VERSION "v2.0.20~5"