diff --git a/Makefile b/Makefile index e2327c2040..bfbf0fa7c2 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ ESPHOME_PATH = ../esphome -ESPHOME_REF = 2024.11.2 +ESPHOME_REF = 2024.11.3 PAGEFIND_VERSION=1.1.1 PAGEFIND=pagefind NET_PAGEFIND=../pagefindbin/pagefind diff --git a/changelog/2024.11.0.rst b/changelog/2024.11.0.rst index 576c16c785..8533d6e498 100644 --- a/changelog/2024.11.0.rst +++ b/changelog/2024.11.0.rst @@ -61,6 +61,20 @@ Release 2024.11.2 - November 27 - fix 32 char SSIDs :esphomepr:`7834` by :ghuser:`ssieb` - [honeywell] use warning instead of failing :esphomepr:`7862` by :ghuser:`ssieb` +Release 2024.11.3 - December 6 +------------------------------ + +- [opentherm] Fix out of memory errors on ESP8266 :esphomepr:`7835` by :ghuser:`olegtarasov` +- fix local time timestamp calculation :esphomepr:`7807` by :ghuser:`ssieb` +- [online_image]Don't access decoder if not initialized :esphomepr:`7882` by :ghuser:`guillempages` +- Add IRAM_ATTR to all functions used during interrupts on esp8266 chips. :esphomepr:`7840` by :ghuser:`FreeBear-nc` +- [st7920] Remove unnecessary warning when drawing outside display bounds :esphomepr:`7868` by :ghuser:`jesserockz` +- Fix recalc_timestamp_utc :esphomepr:`7894` by :ghuser:`RouNNdeL` +- Cast port to int for ota pushing :esphomepr:`7888` by :ghuser:`jesserockz` +- [lvgl] Bugfixes :esphomepr:`7896` by :ghuser:`clydebarrow` +- [lvgl] Fix msgbox content :esphomepr:`7912` by :ghuser:`clydebarrow` +- [esp32] Fix crash with empty `platformio_options:` value :esphomepr:`7920` by :ghuser:`clydebarrow` + Full list of changes -------------------- diff --git a/components/packages.rst b/components/packages.rst index 93c0778f00..f8aaf993c9 100644 --- a/components/packages.rst +++ b/components/packages.rst @@ -128,8 +128,12 @@ As an example, if the configuration needed to support three garage doors using t file: garage-door.yaml vars: door_name: Left + middle_garage_door: !include + file: garage-door.yaml vars: door_name: Middle + right_garage_door: !include + file: garage-door.yaml vars: door_name: Right diff --git a/components/spi.rst b/components/spi.rst index f3cd46bd3a..ca9e6eeec4 100644 --- a/components/spi.rst +++ b/components/spi.rst @@ -152,7 +152,7 @@ SPI modes: ---------- SPI devices operate in one of four modes as per the table below. The choice of mode is dictated by the requirements -of the speficic peripheral chip. +of the specific peripheral chip. .. csv-table:: Supported Modes :header: "Mode", "Clock Idle Polarity", "Clock Phase", "Data shifted on", "Data sampled on" diff --git a/guides/contributing.rst b/guides/contributing.rst index 08cd04c4bf..d9c52d1d9f 100644 --- a/guides/contributing.rst +++ b/guides/contributing.rst @@ -205,9 +205,11 @@ adhere to the following order: `Google.com `__ +.. _contributing-referrals: + .. note:: - Referral links are only permitted if they provide a direct benefit to the ESPHome project. + Referral links are only permitted if they provide a direct benefit to the ESPHome project. This policy applies to all official ESPHome documentation and websites. - **References**: To reference another document, use the ``:doc:`` and ``:ref:`` roles (references are set up globally diff --git a/guides/supporters.rst b/guides/supporters.rst index 3a9aba73a4..8c9c87a7eb 100644 --- a/guides/supporters.rst +++ b/guides/supporters.rst @@ -98,6 +98,7 @@ Contributors - `Alessandro Ranellucci (@alranel) `__ - `Maxime Gauduin (@alucryd) `__ - `alva (@alva-seal) `__ +- `Amaery (@Amaery) `__ - `Andreas Mandel (@amandel) `__ - `Andrew McFague (@amcfague) `__ - `Amish Vishwakarma (@amishv) `__ @@ -822,6 +823,7 @@ Contributors - `Tim Smeets (@ikilledmypc) `__ - `iKK001 (@iKK001) `__ - `ilium007 (@ilium007) `__ +- `Ilias Lolis (@ilolis) `__ - `Iman Ahmadvand (@IMAN4K) `__ - `Michael (@imeekle) `__ - `imgbot[bot] (@imgbot[bot]) `__ @@ -1444,6 +1446,7 @@ Contributors - `Paul Deen (@PaulAntonDeen) `__ - `Paul Monigatti (@paulmonigatti) `__ - `Paul Nicholls (@pauln) `__ +- `Paul Schulz (@PaulSchulz) `__ - `Pavlo Dudnytskyi (@paveldn) `__ - `Bartłomiej Biernacki (@pax0r) `__ - `Pierre-Alexis Ciavaldini (@pciavald) `__ @@ -2033,4 +2036,4 @@ Contributors - `Christian Zufferey (@zuzu59) `__ - `Zynth-dev (@Zynth-dev) `__ -*This page was last updated November 27, 2024.* +*This page was last updated December 6, 2024.*