Merge pull request #3367 from esphome/bump-2023.11.0b6

2023.11.0b6
This commit is contained in:
Jesse Hills 2023-11-14 16:16:27 +13:00 committed by GitHub
commit 6819309313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 17 additions and 8 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 = 2023.11.0b5
PROJECT_NUMBER = 2023.11.0b6
# 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 = 2023.11.0b5
ESPHOME_REF = 2023.11.0b6
.PHONY: html html-strict cleanhtml deploy help live-html Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify

View File

@ -1 +1 @@
2023.11.0b5
2023.11.0b6

View File

@ -112,6 +112,9 @@ Beta Changes
- Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco`
- Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco`
- Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz`
- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco`
- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco`
- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81`
All changes
^^^^^^^^^^^
@ -226,6 +229,9 @@ All changes
- Migrate to using aioesphomeapi for the log runner to fix multiple issues :esphomepr:`5733` by :ghuser:`bdraco`
- Bump zeroconf to 0.123.0 :esphomepr:`5736` by :ghuser:`bdraco`
- Handle wake word not set up internally :esphomepr:`5738` by :ghuser:`jesserockz`
- dashboard: remove usage of codecs module :esphomepr:`5741` by :ghuser:`bdraco`
- dashboard: Run get_serial_ports in the executor :esphomepr:`5740` by :ghuser:`bdraco`
- Generate partitions.csv based on flash size :esphomepr:`5697` by :ghuser:`kbx81`
Past Changelogs
---------------

View File

@ -23,13 +23,16 @@ Configuration variables:
choose a generic board from Espressif such as ``esp32dev``.
- **framework** (*Optional*): Options for the underlying framework used by ESPHome.
See :ref:`esp32-arduino_framework` and :ref:`esp32-espidf_framework`.
- **flash_size** (*Optional*, string): The amount of flash memory available on the ESP32 board/module. One of ``4MB``,
``8MB``, ``16MB`` or ``32MB``. Defaults to ``4MB``. **Warning: specifying a size larger than that available on your
board will cause the ESP32 to fail to boot.**
- **variant** (*Optional*, string): The variant of the ESP32 that is used on this board. One of ``esp32``,
``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board, if
``esp32s2``, ``esp32s3``, ``esp32c3`` and ``esp32h2``. Defaults to the variant that is detected from the board; if
a board that's unknown to ESPHome is used, this option is mandatory.
.. note::
Support for the ESP32-S2 and ESP32-C3 is still in development and there could be issues.
Support for ESP32 variants such as the S2, S3 and C3 is still in development and there could be issues.
GPIO Pin Numbering
------------------

View File

@ -147,7 +147,7 @@ Increments through speed levels of the fan with the given ID when executed. If t
id: fan_1
off_speed_cycle: true
# Shorthand:
- fan.cycle_speed:: fan_1
- fan.cycle_speed: fan_1
Configuration options:

View File

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

View File

@ -1253,4 +1253,4 @@ Contributors
- `Zsolt Zsiros (@ZsZs73) <https://github.com/ZsZs73>`__
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
*This page was last updated November 13, 2023.*
*This page was last updated November 14, 2023.*