Skip to content

Commit b2169a3

Browse files
authored
Merge pull request #4338 from esphome/bump-2024.10.0b2
2024.10.0b2
2 parents df1c714 + 699dd72 commit b2169a3

File tree

13 files changed

+27
-132
lines changed

13 files changed

+27
-132
lines changed

.github/workflows/component-image.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
component: ${{ needs.prepare.outputs.name }}
5151

5252
- name: Upload
53-
uses: actions/upload-artifact@v4.3.4
53+
uses: actions/upload-artifact@v4.4.3
5454
id: upload-artifact
5555
with:
5656
name: ${{ needs.prepare.outputs.name }}

Doxygen

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "ESPHome"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2024.10.0b1
41+
PROJECT_NUMBER = 2024.10.0b2
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ESPHOME_PATH = ../esphome
2-
ESPHOME_REF = 2024.10.0b1
2+
ESPHOME_REF = 2024.10.0b2
33
PAGEFIND_VERSION=1.1.0
44
PAGEFIND=pagefind
55
NET_PAGEFIND=../pagefindbin/pagefind

_static/version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024.10.0b1
1+
2024.10.0b2

automations/actions.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ time period.
191191
``if`` Action
192192
*************
193193

194-
This action first evaluated a certain condition (``if:``) and then either
195-
executes the ``then:`` branch or the ``else:`` branch depending on the output of the condition.
194+
This action first evaluates the ``condition:`` and then either
195+
executes the ``then:`` branch if the condition returns true or the ``else:`` branch if the condition returns false.
196196

197197
After the chosen branch (``then`` or ``else``) is done with execution, the next action is performed.
198198

changelog/2024.10.0.rst

+12
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,14 @@ Breaking Changes
4747
- CSE7766 needs even parity :esphomepr:`7549` by :ghuser:`ssieb` (breaking-change)
4848
- [web_server] v3 entity grouping :esphomepr:`6833` by :ghuser:`RFDarter` (breaking-change)
4949

50+
Beta Changes
51+
^^^^^^^^^^^^
52+
53+
- fix uart settings check :esphomepr:`7573` by :ghuser:`ssieb`
54+
- [web_server] Event component grouping :esphomepr:`7586` by :ghuser:`RFDarter`
55+
- [touchscreen] Fix coordinates when using rotation :esphomepr:`7591` by :ghuser:`clydebarrow`
56+
- Fix update sequence when update is set to false (#5225) :esphomepr:`7407` by :ghuser:`edge90`
57+
5058
All changes
5159
^^^^^^^^^^^
5260

@@ -128,6 +136,10 @@ All changes
128136
- Bump actions/upload-artifact from 4.4.1 to 4.4.2 :esphomepr:`7569` by :ghuser:`dependabot[bot]`
129137
- Bump actions/cache from 4.1.0 to 4.1.1 :esphomepr:`7570` by :ghuser:`dependabot[bot]`
130138
- Bump actions/cache from 4.1.0 to 4.1.1 in /.github/actions/restore-python :esphomepr:`7571` by :ghuser:`dependabot[bot]`
139+
- fix uart settings check :esphomepr:`7573` by :ghuser:`ssieb`
140+
- [web_server] Event component grouping :esphomepr:`7586` by :ghuser:`RFDarter`
141+
- [touchscreen] Fix coordinates when using rotation :esphomepr:`7591` by :ghuser:`clydebarrow`
142+
- Fix update sequence when update is set to false (#5225) :esphomepr:`7407` by :ghuser:`edge90`
131143

132144
Past Changelogs
133145
---------------

components/climate/midea.rst

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ The ``midea`` component creates a Midea air conditioner climate device.
2222

2323
Control is possible with a custom dongle. Example of hardware implementation is `IoT Uni Dongle <https://github.com/dudanov/iot-uni-dongle>`_ or `Midea SLWF-01pro <https://smartlight.me/smart-home-devices/wifi-devices/wifi-dongle-air-conditioners-midea-idea-electrolux-for-home-assistant>`_ (`CloudFree <https://cloudfree.shop/product/ductless-hvac-wi-fi-module/>`_, `Tindie <https://www.tindie.com/products/smartlightme/wifi-dongle-for-air-conditioners-midea-electrolux>`_).
2424

25+
The Midea air conditioner requires the UART to be configured with ``baud_rate: 9600``. The hardware requires **5V logic levels** and does not appear to work with 3.3V logic levels. Use a logic level shifter if building your own dongle.
26+
2527
.. code-block:: yaml
2628
2729
# Example configuration entry

components/event/index.rst

+1
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ One of ``id`` or ``name`` is required.
7474

7575
See https://www.home-assistant.io/integrations/event/#device-class
7676
for a list of available options.
77+
- If Webserver enabled and version 3 is selected, All other options from Webserver Component.. See :ref:`Webserver Version 3 <config-webserver-version-3-options>`.
7778

7879
Automations:
7980

components/light/color_temperature.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ and the other channel controls the brightness.
2323
Configuration variables:
2424
------------------------
2525

26-
- **color_temperature** (**Required**, :ref:`config-id`): The id of the float :ref:`output` to use for the color temperature.
27-
- **brightness** (**Required**, :ref:`config-id`): The id of the float :ref:`output` to use for the brightness.
26+
- **color_temperature** (**Required**, :ref:`config-id`): The id of the float :ref:`output` to use for the color temperature. It returns a float from 0 to 1 in the mired scale. Hereby 0 corresponds to the cold white temperature and 1 to the warm white temperature.
27+
- **brightness** (**Required**, :ref:`config-id`): The id of the float :ref:`output` to use for the brightness. It returns a float from 0 to 1.
2828
- **cold_white_color_temperature** (**Required**, float): The coldest color temperature supported by this light. This
2929
is the lowest value when expressed in `mireds <https://en.wikipedia.org/wiki/Mired>`__, or the highest value when
3030
expressed in Kelvin.

components/sensor/max31856.rst

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ MAX31856 Thermocouple Temperature Sensor
77

88
The ``MAX31856`` temperature sensor allows you to use your MAX31856 Thermocouple
99
temperature sensor (`datasheet <https://datasheets.maximintegrated.com/en/ds/MAX31856.pdf>`__) with ESPHome.
10-
Although the chip supports multiple thermocouple types, this component only implements the ``K`` type.
1110

1211
.. figure:: images/max31856-full.jpg
1312
:align: center

conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
# The short X.Y version.
7070
version = "2024.10"
7171
# The full version, including alpha/beta/rc tags.
72-
release = "2024.10.0b1"
72+
release = "2024.10.0b2"
7373

7474
# The language for content autogenerated by Sphinx. Refer to documentation
7575
# for a list of supported languages.

cookbook/http_request_sensor.rst

-121
This file was deleted.

guides/supporters.rst

+3-1
Original file line numberDiff line numberDiff line change
@@ -1491,6 +1491,7 @@ Contributors
14911491
- `puuu (@puuu) <https://github.com/puuu>`__
14921492
- `Pascal Vizeli (@pvizeli) <https://github.com/pvizeli>`__
14931493
- `Alex (@pxe-la) <https://github.com/pxe-la>`__
1494+
- `Pietro (@PxPert) <https://github.com/PxPert>`__
14941495
- `[pʲɵs] (@pyos) <https://github.com/pyos>`__
14951496
- `Peter Zich (@pzich) <https://github.com/pzich>`__
14961497
- `QbaF (@QbaF) <https://github.com/QbaF>`__
@@ -1659,6 +1660,7 @@ Contributors
16591660
- `sherbang (@sherbang) <https://github.com/sherbang>`__
16601661
- `Shish (@shish) <https://github.com/shish>`__
16611662
- `Shreyas Karnik (@shreyaskarnik) <https://github.com/shreyaskarnik>`__
1663+
- `Sherman K (@shrmnk) <https://github.com/shrmnk>`__
16621664
- `shuchitak (@shuchitak) <https://github.com/shuchitak>`__
16631665
- `sibowler (@sibowler) <https://github.com/sibowler>`__
16641666
- `signix (@signix) <https://github.com/signix>`__
@@ -1995,4 +1997,4 @@ Contributors
19951997
- `Christian Zufferey (@zuzu59) <https://github.com/zuzu59>`__
19961998
- `Zynth-dev (@Zynth-dev) <https://github.com/Zynth-dev>`__
19971999

1998-
*This page was last updated October 9, 2024.*
2000+
*This page was last updated October 14, 2024.*

0 commit comments

Comments
 (0)