From 1c09530645f244be0b2f936e2eccdf85982fc187 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 12 Nov 2021 16:12:32 +1300 Subject: [PATCH 1/3] Bump version to 2021.11.0b3 --- Doxygen | 2 +- Makefile | 2 +- _static/version | 2 +- conf.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Doxygen b/Doxygen index 3e2f5875f..8e1c85279 100644 --- a/Doxygen +++ b/Doxygen @@ -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 = 2021.11.0b2 +PROJECT_NUMBER = 2021.11.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 diff --git a/Makefile b/Makefile index 5d957c707..a7c3ac090 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = 2021.11.0b2 +ESPHOME_REF = 2021.11.0b3 .PHONY: html html-strict cleanhtml deploy help webserver Makefile netlify netlify-api api netlify-dependencies svg2png copy-svg2png minify diff --git a/_static/version b/_static/version index 5afa20f56..bb06421e1 100644 --- a/_static/version +++ b/_static/version @@ -1 +1 @@ -2021.11.0b2 \ No newline at end of file +2021.11.0b3 \ No newline at end of file diff --git a/conf.py b/conf.py index 06c78b949..320230630 100644 --- a/conf.py +++ b/conf.py @@ -69,7 +69,7 @@ author = "Otto Winter" # The short X.Y version. version = "2021.11" # The full version, including alpha/beta/rc tags. -release = "2021.11.0b2" +release = "2021.11.0b3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. From 343a0660168bf474b2622ca2b6e889495cf27016 Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 12 Nov 2021 16:31:52 +1300 Subject: [PATCH 2/3] Update changelog for 2021.11.0b3 --- changelog/2021.11.0.rst | 51 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) diff --git a/changelog/2021.11.0.rst b/changelog/2021.11.0.rst index c1c06cc3c..ac822ea14 100644 --- a/changelog/2021.11.0.rst +++ b/changelog/2021.11.0.rst @@ -16,7 +16,49 @@ ESPHome 2021.11.0 - 17th November 2021 Improv via Serial, components/improv_serial, improv.svg -TBD +State of the Open Smart Home +---------------------------- + +Write something here... + + +Improv via Serial +----------------- + +After we created :doc:`/components/esp32_improv`, we thought it might be a good idea to implement the same for serial connections. +See the docs here for :doc:`Improv via Serial ` and the +`website documentation `__ for implementing a client or implementing improv in other firmware. + +Entity Categories for Home Assistant +------------------------------------ + +Home Assistant added support for `Entity Categories `__ +and with this release certain ESPHome entites such as the restart switch and uptime sensors will have the config and diagnostic categories set respectively. +The category can be overridden by the user in the yaml configuration. + +Repeat Action +------------- + +:ghuser:`oxan` has implemented a ``repeat`` action for those that want to execute a list of actions x number of times without just copying and pasting them. + +Device name length +------------------ + +The maximum length of the device name has been limited to 31 characters to fall in line with standards and you will get +an error if you try to set a device name longer than that. + +BH1750 +------ + +When using the default resolution of 0.5 for the BH17850, the result is now divided by 2 as per the finidings of the community. + + +Binary sensor device classes +---------------------------- + +:esphomepr:`2703` brings the binary sensor device classes up to date with Home Assistant, but this means that +the ``update`` ``device_class`` for binary sensors has been removed, you will get an error in your configuration if +you are using this device class. Full list of changes -------------------- @@ -49,6 +91,7 @@ Breaking Changes - Add option to use MQTT abbreviations :esphomepr:`2641` by :ghuser:`paulmonigatti` (breaking-change) - Add restore_mode to rotary_encoder :esphomepr:`2643` by :ghuser:`niklasweber` (breaking-change) - Neopixelbus redo method definitions :esphomepr:`2616` by :ghuser:`OttoWinter` (new-feature) (breaking-change) +- Update device classes for binary sensors :esphomepr:`2703` by :ghuser:`lcavalli` (breaking-change) Beta fixes ^^^^^^^^^^ @@ -57,6 +100,9 @@ Beta fixes - [remote_transmitter] accurate pulse timing for ESP8266 :esphomepr:`2476` by :ghuser:`CarlosGS` - Uart debugging support :esphomepr:`2478` by :ghuser:`mmakaay` - Enable addressable light power supply based on raw values :esphomepr:`2690` by :ghuser:`oxan` +- Remove my.ha links from improv :esphomepr:`2695` by :ghuser:`jesserockz` +- Only allow prometheus when using arduino :esphomepr:`2697` by :ghuser:`jesserockz` +- Update device classes for binary sensors :esphomepr:`2703` by :ghuser:`lcavalli` (breaking-change) All changes ^^^^^^^^^^^ @@ -149,6 +195,9 @@ All changes - [remote_transmitter] accurate pulse timing for ESP8266 :esphomepr:`2476` by :ghuser:`CarlosGS` - Uart debugging support :esphomepr:`2478` by :ghuser:`mmakaay` - Enable addressable light power supply based on raw values :esphomepr:`2690` by :ghuser:`oxan` +- Remove my.ha links from improv :esphomepr:`2695` by :ghuser:`jesserockz` +- Only allow prometheus when using arduino :esphomepr:`2697` by :ghuser:`jesserockz` +- Update device classes for binary sensors :esphomepr:`2703` by :ghuser:`lcavalli` (breaking-change) Past Changelogs --------------- From 4cf2a43d021b6ec2408fe92ce0361965ddc12bbb Mon Sep 17 00:00:00 2001 From: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Date: Fri, 12 Nov 2021 16:32:11 +1300 Subject: [PATCH 3/3] Update supporters for 2021.11.0b3 --- guides/supporters.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/guides/supporters.rst b/guides/supporters.rst index 78577b516..2ab9dee95 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -392,6 +392,7 @@ Contributors - `Fredrik Lindqvist (@Landrash) `__ - `larsonmpdx (@larsonmpdx) `__ - `Laszlo Gazdag (@lazlyhu) `__ +- `lcavalli (@lcavalli) `__ - `lein1013 (@lein1013) `__ - `Riku Lindblad (@lepinkainen) `__ - `Luca Gugelmann (@lgugelmann) `__ @@ -746,4 +747,4 @@ Contributors - `ZTX18 (@ZTX18) `__ - `Christian Zufferey (@zuzu59) `__ -*This page was last updated November 11, 2021.* +*This page was last updated November 12, 2021.*