Merge pull request #3617 from esphome/bump-2024.2.0b3

2024.2.0b3
This commit is contained in:
Jesse Hills 2024-02-21 11:38:25 +13:00 committed by GitHub
commit 488078cc26
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 26 additions and 6 deletions

View File

@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
# could be handy for archiving the generated documentation or if some version
# control system is used.
PROJECT_NUMBER = 2024.2.0b2
PROJECT_NUMBER = 2024.2.0b3
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a

View File

@ -1,5 +1,5 @@
ESPHOME_PATH = ../esphome
ESPHOME_REF = 2024.2.0b2
ESPHOME_REF = 2024.2.0b3
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2024.2.0b2
2024.2.0b3

View File

@ -50,6 +50,11 @@ Beta Changes
- WRGB Use correct multiplier :esphomepr:`6237` by :ghuser:`mhetzi`
- Add optional minimum esphome version to microWakeWord manifest :esphomepr:`6240` by :ghuser:`jesserockz`
- Fix xl9535 pin reads :esphomepr:`6242` by :ghuser:`jesserockz`
- hold interrupt disable for dallas one-wire :esphomepr:`6244` by :ghuser:`ssieb`
- Fix tm1651 enum :esphomepr:`6248` by :ghuser:`kbx81`
- Clear UART read buffer before sending next command :esphomepr:`6200` by :ghuser:`fototakas`
- Voice Assistant: add on_idle trigger and fix nevermind :esphomepr:`6141` by :ghuser:`synesthesiam`
- Tuya Fan component fix to handle enum datapoint type :esphomepr:`6135` by :ghuser:`sibowler`
All changes
^^^^^^^^^^^
@ -162,6 +167,17 @@ All changes
- update docstrings in cpp_generator.py :esphomepr:`6212` by :ghuser:`nielsnl68`
- Fixed group mask logic for WLED Sync fix :esphomepr:`6193` by :ghuser:`ChuckMash`
- Add micro_wake_word component :esphomepr:`6136` by :ghuser:`kahrendt` (new-integration)
- AUTO_LOAD ``sensor`` for ``shelly_dimmer`` :esphomepr:`6223` by :ghuser:`kbx81`
- Add more debugging logs to microWakeWord :esphomepr:`6238` by :ghuser:`kahrendt`
- Fix to RF receiver for Drayton Digistat heating controller :esphomepr:`6235` by :ghuser:`marshn`
- WRGB Use correct multiplier :esphomepr:`6237` by :ghuser:`mhetzi`
- Add optional minimum esphome version to microWakeWord manifest :esphomepr:`6240` by :ghuser:`jesserockz`
- Fix xl9535 pin reads :esphomepr:`6242` by :ghuser:`jesserockz`
- hold interrupt disable for dallas one-wire :esphomepr:`6244` by :ghuser:`ssieb`
- Fix tm1651 enum :esphomepr:`6248` by :ghuser:`kbx81`
- Clear UART read buffer before sending next command :esphomepr:`6200` by :ghuser:`fototakas`
- Voice Assistant: add on_idle trigger and fix nevermind :esphomepr:`6141` by :ghuser:`synesthesiam`
- Tuya Fan component fix to handle enum datapoint type :esphomepr:`6135` by :ghuser:`sibowler`
Past Changelogs
---------------

View File

@ -64,6 +64,8 @@ Configuration:
(voice response) playback starts. Requires ``speaker`` to be configured.
- **on_tts_stream_end** (*Optional*, :ref:`Automation <automation>`): An automation to perform when audio stream
(voice response) playback ends. Requires ``speaker`` to be configured.
- **on_idle** (*Optional*, :ref:`Automation <automation>`): An automation to perform
when the voice assistant is idle (no other actions/states are in progress).
- **on_error** (*Optional*, :ref:`Automation <automation>`): An automation to perform
when the voice assistant has encountered an error. The error code and message are available to
automations as the variables ``code`` and ``message``.

View File

@ -69,7 +69,7 @@ author = "ESPHome"
# The short X.Y version.
version = "2024.2"
# The full version, including alpha/beta/rc tags.
release = "2024.2.0b2"
release = "2024.2.0b3"
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@ -42,7 +42,7 @@ From your configuration files folder, run
::
esphome <MY_DEVICE>.yaml compile
esphome compile <MY_DEVICE>.yaml
replacing ``<MY_DEVICE>.yaml`` with your configuration file and navigate to the ``<MY_DEVICE>/.pioenvs/<MY_DEVICE>/`` folder.

View File

@ -143,6 +143,7 @@ Contributors
- `balk77 (@balk77) <https://github.com/balk77>`__
- `Paulus Schoutsen (@balloob) <https://github.com/balloob>`__
- `Andrew Zaborowski (@balrog-kun) <https://github.com/balrog-kun>`__
- `Josh Barnard (@barndawgie) <https://github.com/barndawgie>`__
- `BarryMar (@BarryMar) <https://github.com/BarryMar>`__
- `bartoszpierzchlewicz (@bartoszpierzchlewicz) <https://github.com/bartoszpierzchlewicz>`__
- `BartoszPierzchlewiczMacrix (@BartoszPierzchlewiczMacrix) <https://github.com/BartoszPierzchlewiczMacrix>`__
@ -460,6 +461,7 @@ Contributors
- `EtienneMD (@EtienneMD) <https://github.com/EtienneMD>`__
- `Evan Coleman (@evandcoleman) <https://github.com/evandcoleman>`__
- `Clemens Kirchgatterer (@everslick) <https://github.com/everslick>`__
- `Everything Smart Home (@EverythingSmartHome) <https://github.com/EverythingSmartHome>`__
- `Evgeni Golov (@evgeni) <https://github.com/evgeni>`__
- `evlo (@evlo) <https://github.com/evlo>`__
- `Expaso (@Expaso) <https://github.com/Expaso>`__
@ -1327,4 +1329,4 @@ Contributors
- `Zsolt Zsiros (@ZsZs73) <https://github.com/ZsZs73>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated February 19, 2024.*
*This page was last updated February 21, 2024.*