From 84caca465df6408696c79811d48fabb2bb60a8db Mon Sep 17 00:00:00 2001 From: David Cermak Date: Mon, 20 Jan 2025 17:57:07 +0100 Subject: [PATCH] bump(mdns): 1.4.3 -> 1.5.0 1.5.0 Features - supported removal of subtype when updating service (4ad88e29) Bug Fixes - Fix zero-sized VLA clang-tidy warnings (196198ec) - Remove dead store to arg variable shared (e838bf03) - Fix name mangling not to use strcpy() (99b54ac3) - Fix potential null derefernce in _mdns_execute_action() (f5be2f41) - Fix AFL test mock per espressif/esp-idf@a5bc08fb55c (3d8835cf) - Fixed potential out-of-bound interface error (24f55ce9) - Fixed incorrect error conversion (8f8516cc) - Fixed potential overflow when allocating txt data (75a8e864) - Move MDNS_NAME_BUF_LEN to public headers (907087c0, #724) - Cleanup includes in mdns.c (68a9e148, #725) - Allow advertizing service with port==0 (827ea65f) - Fixed complier warning if MDNS_MAX_SERVICES==0 (95377216, #611) --- components/mdns/.cz.yaml | 2 +- components/mdns/CHANGELOG.md | 21 +++++++++++++++++++++ components/mdns/idf_component.yml | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/components/mdns/.cz.yaml b/components/mdns/.cz.yaml index a8390acf2..33938973c 100644 --- a/components/mdns/.cz.yaml +++ b/components/mdns/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(mdns): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py mdns tag_format: mdns-v$version - version: 1.4.3 + version: 1.5.0 version_files: - idf_component.yml diff --git a/components/mdns/CHANGELOG.md b/components/mdns/CHANGELOG.md index 2fae36991..1740ab906 100644 --- a/components/mdns/CHANGELOG.md +++ b/components/mdns/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## [1.5.0](https://github.com/espressif/esp-protocols/commits/mdns-v1.5.0) + +### Features + +- supported removal of subtype when updating service ([4ad88e29](https://github.com/espressif/esp-protocols/commit/4ad88e29)) + +### Bug Fixes + +- Fix zero-sized VLA clang-tidy warnings ([196198ec](https://github.com/espressif/esp-protocols/commit/196198ec)) +- Remove dead store to arg variable shared ([e838bf03](https://github.com/espressif/esp-protocols/commit/e838bf03)) +- Fix name mangling not to use strcpy() ([99b54ac3](https://github.com/espressif/esp-protocols/commit/99b54ac3)) +- Fix potential null derefernce in _mdns_execute_action() ([f5be2f41](https://github.com/espressif/esp-protocols/commit/f5be2f41)) +- Fix AFL test mock per espressif/esp-idf@a5bc08fb55c ([3d8835cf](https://github.com/espressif/esp-protocols/commit/3d8835cf)) +- Fixed potential out-of-bound interface error ([24f55ce9](https://github.com/espressif/esp-protocols/commit/24f55ce9)) +- Fixed incorrect error conversion ([8f8516cc](https://github.com/espressif/esp-protocols/commit/8f8516cc)) +- Fixed potential overflow when allocating txt data ([75a8e864](https://github.com/espressif/esp-protocols/commit/75a8e864)) +- Move MDNS_NAME_BUF_LEN to public headers ([907087c0](https://github.com/espressif/esp-protocols/commit/907087c0), [#724](https://github.com/espressif/esp-protocols/issues/724)) +- Cleanup includes in mdns.c ([68a9e148](https://github.com/espressif/esp-protocols/commit/68a9e148), [#725](https://github.com/espressif/esp-protocols/issues/725)) +- Allow advertizing service with port==0 ([827ea65f](https://github.com/espressif/esp-protocols/commit/827ea65f)) +- Fixed complier warning if MDNS_MAX_SERVICES==0 ([95377216](https://github.com/espressif/esp-protocols/commit/95377216), [#611](https://github.com/espressif/esp-protocols/issues/611)) + ## [1.4.3](https://github.com/espressif/esp-protocols/commits/mdns-v1.4.3) ### Features diff --git a/components/mdns/idf_component.yml b/components/mdns/idf_component.yml index 1e43ed704..091fcba04 100644 --- a/components/mdns/idf_component.yml +++ b/components/mdns/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.4.3" +version: "1.5.0" description: "Multicast UDP service used to provide local network service and host discovery." url: "https://github.com/espressif/esp-protocols/tree/master/components/mdns" issues: "https://github.com/espressif/esp-protocols/issues"