Skip to content

Commit 3bfa003

Browse files
authored
Merge pull request #944 from david-cermak/bump/mdns_v1.9.1
[mdns]: Bump to `v1.9.1`
2 parents 1444d57 + ace7fca commit 3bfa003

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

.github/workflows/mdns__host-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ jobs:
7777
idf_ver: ["latest"]
7878

7979
runs-on: ubuntu-22.04
80-
container: aflplusplus/aflplusplus
80+
container: aflplusplus/aflplusplus:v4.34c
8181
steps:
8282
- name: Checkout esp-protocols
8383
uses: actions/checkout@v4

components/mdns/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(mdns): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py mdns
55
tag_format: mdns-v$version
6-
version: 1.9.0
6+
version: 1.9.1
77
version_files:
88
- idf_component.yml

components/mdns/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [1.9.1](https://github.com/espressif/esp-protocols/commits/mdns-v1.9.1)
4+
5+
### Bug Fixes
6+
7+
- Fix to use tagged AFL image + minor format fix ([2b2f009a](https://github.com/espressif/esp-protocols/commit/2b2f009a))
8+
- Fix unused variable `dcst` warning for wifi-remote chips ([081eef88](https://github.com/espressif/esp-protocols/commit/081eef88))
9+
310
## [1.9.0](https://github.com/espressif/esp-protocols/commits/mdns-v1.9.0)
411

512
### Features

components/mdns/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "1.9.0"
1+
version: "1.9.1"
22
description: "Multicast UDP service used to provide local network service and host discovery."
33
url: "https://github.com/espressif/esp-protocols/tree/master/components/mdns"
44
issues: "https://github.com/espressif/esp-protocols/issues"

components/mdns/mdns.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4493,7 +4493,7 @@ void mdns_preset_if_handle_system_event(void *arg, esp_event_base_t event_base,
44934493
return;
44944494
}
44954495

4496-
#if MDNS_ESP_WIFI_ENABLED && (CONFIG_MDNS_PREDEF_NETIF_STA || CONFIG_MDNS_PREDEF_NETIF_AP)
4496+
#if MDNS_ESP_WIFI_ENABLED && (CONFIG_MDNS_PREDEF_NETIF_STA || CONFIG_MDNS_PREDEF_NETIF_AP)
44974497
if (event_base == WIFI_EVENT) {
44984498
esp_netif_dhcp_status_t dcst;
44994499
switch (event_id) {

0 commit comments

Comments
 (0)