Skip to content

Commit bcad145

Browse files
committed
Merge branch 'current' into next
2 parents ad4919f + 6120648 commit bcad145

File tree

534 files changed

+1590
-1590
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

534 files changed

+1590
-1590
lines changed

content/automations/actions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ At least one of `condition`, `all` or `any` must be provided.
232232

233233
### `lambda` Action
234234

235-
This action executes an arbitrary piece of C++ code (see [Lambda](#config-lambda)).
235+
This action executes an arbitrary piece of C++ code (see [Lambda](/automations/templates#config-lambda)).
236236

237237
```yaml
238238
on_...:
@@ -480,7 +480,7 @@ on_...:
480480

481481
### `lambda` Condition
482482

483-
This condition performs an arbitrary piece of C++ code (see [Lambda](#config-lambda))
483+
This condition performs an arbitrary piece of C++ code (see [Lambda](/automations/templates#config-lambda))
484484
and can be used to create conditional flow in actions.
485485

486486
```yaml

content/automations/templates.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,14 @@ using the lambda syntax as described/shown above.
9898

9999
## All Lambda Calls
100100

101-
- [Sensor](#sensor-lambda_calls)
102-
- [Binary Sensor](#binary_sensor-lambda_calls)
103-
- [Switch](#switch-lambda_calls)
104-
- [Display](#display-engine)
105-
- [Cover](#cover-lambda_calls)
106-
- [Text Sensor](#text_sensor-lambda_calls)
107-
- [Stepper](#stepper-lambda_calls)
108-
- [Number](#number-lambda_calls)
101+
- [Sensor](/components/sensor#sensor-lambda_calls)
102+
- [Binary Sensor](/components/binary_sensor#binary_sensor-lambda_calls)
103+
- [Switch](/components/switch#switch-lambda_calls)
104+
- [Display](/components/display#display-engine)
105+
- [Cover](/components/cover#cover-lambda_calls)
106+
- [Text Sensor](/components/text_sensor#text_sensor-lambda_calls)
107+
- [Stepper](/components/stepper#stepper-lambda_calls)
108+
- [Number](/components/number#number-lambda_calls)
109109

110110
## See Also
111111

content/changelog/2021.10.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ native component is still better and preferred if it exists.
6969
## Text Sensor filters
7070

7171
`text_sensors` now have `filters` that allow you to do string manipulation before the value is
72-
given to the frontend. Check out the [docs here](#text_sensor-filters).
72+
given to the frontend. Check out the [docs here](/components/text_sensor#text_sensor-filters).
7373

7474
## Lighting
7575

@@ -80,7 +80,7 @@ could build a "fake" addressable light from regular rgb leds.
8080

8181
## Graphs
8282

83-
There is new [Graph](#display-graphs) building functions for displays that will allow you to
83+
There is new [Graph](/components/graph#display-graphs) building functions for displays that will allow you to
8484
draw the history of sensors over time. See the docs for examples and images on what this looks like.
8585

8686
## `wait_until`

content/changelog/2021.9.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ devices with encryption. This is scheduled to be available in Home Assistant 202
3737

3838
## Git Packages
3939

40-
[Packages](#config-git_packages) have been extended to allow loading (multiple) YAML file(s) from a git repo.
40+
[Packages](/components/packages#config-git_packages) have been extended to allow loading (multiple) YAML file(s) from a git repo.
4141
Take a look at the examples to see how to use them.
4242

4343
## Midea AC

content/changelog/2022.4.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ flashing custom firmware to the stm32 via ESPHome which is required to use the c
5050

5151
{{< ghuser name="OttoWinter" >}} has given everyone a way to use Google Fonts in their YAML and displays without
5252
having to manually download TTF font files. The example below will automatically download and cache the Roboto
53-
TTF font file required so you can utilise it. See the [Font Renderer Component](#display-fonts) documentation
53+
TTF font file required so you can utilise it. See the [Font Renderer Component](/components/font#display-fonts) documentation
5454
for more details.
5555

5656
```yaml

content/changelog/2024.10.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ grouping feature that allows for custom/user defined groups of entities.
2626
This is also a breaking change as the previous `web_server_sorting_weight` has been moved into a new
2727
`web_server` -> `sorting_weight` configuration entry for the entity.
2828

29-
Please see [Entity sorting](#config-webserver-sorting) for the latest documentation on these features.
29+
Please see [Entity sorting](/components/web_server#config-webserver-sorting) for the latest documentation on these features.
3030

3131
## ESP32 Advanced MAC Address Configuration
3232

3333
ESPHome now supports reading a custom MAC address from the ESP32 eFuse blocks and will read and use it by default if
3434
there is data burned into the eFuses. If you would like to disable this, or the eFuse has data burned that is not a
3535
MAC address into those eFuses, then you can add `ignore_efuse_custom_mac: true` to your ESP32 `advanced`
36-
configuration. See [ESP32 Advanced Configuration](#esp32-advanced_configuration) for more details.
36+
configuration. See [ESP32 Advanced Configuration](/components/esp32#esp32-advanced_configuration) for more details.
3737

3838
## CSE7766 Breaking Changes
3939

content/changelog/2024.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ See the {{< docref "/components/sensor/bme280" "component documentation" >}} for
4242

4343
{{< ghuser name="ssieb" >}} has changed the CSE7766 sensor from appearing to be a polling component.
4444
It has a high update rate, so if you don't want to send a lot of data to HA, you can
45-
add the [throttle_average](#sensor-filters) filter
45+
add the [throttle_average](/components/sensor#sensor-filters) filter
4646
with the time period you were using for the update interval (the default is 60s) to each
4747
sensor. The example in the sensor doc page has been updated to show this.
4848

content/changelog/2025.2.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ your microcontroller/board.
4242
In this release, we've removed support for the "old style" of configuring your microcontroller/board. If you're still
4343
using it, you'll need to update your configurations to use the new style. A brief explanation is
4444
[in this pull request](https://github.com/esphome/esphome/pull/8118), but for more detail, please see the
45-
[documentation for your microcontroller platform](#devices).
45+
[documentation for your microcontroller platform](/components#devices).
4646

4747
## Removal of Custom Components
4848

content/changelog/v1.10.0.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ in it, so it will take time until the next release for this to be finished.
123123

124124
- You can now configured multiple WiFi networks to connect to. The best one will be chosen automatically.
125125
This is along with a *complete* rewrite of the WiFi component which now interacts directly with the ESP SDK.
126-
([Connecting to Multiple Networks](#wifi-networks))
126+
([Connecting to Multiple Networks](/components/wifi#wifi-networks))
127127

128128
- GPIO Switches have a new option `restore_mode` to configure how their values should be restored on boot.
129129
({{< docref "/components/switch/gpio" >}})

content/changelog/v1.12.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ It's release day! 🎉 Today I'm happy to release ESPHome 1.12.0. What's new? A
2121
stuff got added! Let me walk you through it:
2222

2323
Before 1.12, it was only possible to transfer data from ESPHome to Home Assistant (with the
24-
`homeassistant.service` call). With 1.12 you get [User-defined services](#api-device-actions),
24+
`homeassistant.service` call). With 1.12 you get [User-defined services](/components/api#api-device-actions),
2525
just define a service in your ESPHome file and call it like any other service from HA. All the
2626
rest (like variables, data validation, etc) are handled automatically!
2727

@@ -50,9 +50,9 @@ suggestions for validation errors) and bug fixes to make your life easier.
5050
## Other notable changes
5151

5252
- Added `calibrate_linear` sensor filter for easier calibration of sensors
53-
([sensor-filter-calibrate_linear](#sensor-filter-calibrate_linear))
53+
([sensor-filter-calibrate_linear](/components/sensor/filter/multiply#sensor-filter-calibrate_linear))
5454

55-
- Added `for` parameter to [binary_sensor.is_on](#binary_sensor-is_on_condition) condition.
55+
- Added `for` parameter to [binary_sensor.is_on](/components/binary_sensor#binary_sensor-is_on_condition) condition.
5656
- Added `streamer_mode`, `status_use_ping` and `relative_url` options to the Hass.io addon
5757
(see addon description).
5858

0 commit comments

Comments
 (0)