Merge pull request #5263 from esphome/bump-2023.8.0b4

2023.8.0b4
This commit is contained in:
Jesse Hills 2023-08-17 14:30:18 +12:00 committed by GitHub
commit 7df80eadcf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View file

@ -35,7 +35,8 @@ RUN \
python3-dev=3.9.2-3 \
zlib1g-dev=1:1.2.11.dfsg-2+deb11u2 \
libjpeg-dev=1:2.0.6-4 \
libcairo2=1.16.0-5; \
libcairo2=1.16.0-5 \
libfreetype-dev=2.10.4+dfsg-1+deb11u1; \
fi; \
rm -rf \
/tmp/* \

View file

@ -486,7 +486,7 @@ void WiFiComponent::wifi_event_callback_(esphome_wifi_event_id_t event, esphome_
ESP_LOGV(TAG, "Event: Connected ssid='%s' bssid=" LOG_SECRET("%s") " channel=%u, authmode=%s", buf,
format_mac_addr(it.bssid).c_str(), it.channel, get_auth_mode_str(it.authmode));
#if LWIP_IPV6
WiFi.enableIpV6();
this->set_timeout(100, [] { WiFi.enableIpV6(); });
#endif /* LWIP_IPV6 */
break;

View file

@ -1,6 +1,6 @@
"""Constants used by esphome."""
__version__ = "2023.8.0b3"
__version__ = "2023.8.0b4"
ALLOWED_NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789-_"
VALID_SUBSTITUTIONS_CHARACTERS = (

View file

@ -11,7 +11,7 @@ esptool==4.6.2
click==8.1.6
esphome-dashboard==20230711.0
aioesphomeapi==15.0.0
zeroconf==0.74.0
zeroconf==0.80.0
# esp-idf requires this, but doesn't bundle it by default
# https://github.com/espressif/esp-idf/blob/220590d599e134d7a5e7f1e683cc4550349ffbf8/requirements.txt#L24