Compare commits
161 Commits
2024.6.2
...
dependabot
4
.github/workflows/bump-version.yml
vendored
4
.github/workflows/bump-version.yml
vendored
@@ -15,8 +15,8 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
continue-on-error: true
|
continue-on-error: true
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.7
|
- uses: actions/checkout@v4.2.2
|
||||||
- uses: actions/setup-python@v5.1.0
|
- uses: actions/setup-python@v5.3.0
|
||||||
with:
|
with:
|
||||||
python-version: "3.11"
|
python-version: "3.11"
|
||||||
- run: pip install -r script/requirements.txt
|
- run: pip install -r script/requirements.txt
|
||||||
|
|||||||
10
.github/workflows/devcontainer-build.yaml
vendored
10
.github/workflows/devcontainer-build.yaml
vendored
@@ -19,20 +19,20 @@ jobs:
|
|||||||
build:
|
build:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4.1.7
|
- uses: actions/checkout@v4.2.2
|
||||||
- name: Log in to the GitHub container registry
|
- name: Log in to the GitHub container registry
|
||||||
uses: docker/login-action@v3.2.0
|
uses: docker/login-action@v3.3.0
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
with:
|
with:
|
||||||
registry: ghcr.io
|
registry: ghcr.io
|
||||||
username: ${{ github.repository_owner }}
|
username: ${{ github.repository_owner }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3.0.0
|
uses: docker/setup-qemu-action@v3.2.0
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3.3.0
|
uses: docker/setup-buildx-action@v3.7.1
|
||||||
- name: Build and Push
|
- name: Build and Push
|
||||||
uses: docker/build-push-action@v6.0.2
|
uses: docker/build-push-action@v6.9.0
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
file: .devcontainer/Dockerfile
|
file: .devcontainer/Dockerfile
|
||||||
|
|||||||
6
.github/workflows/lint.yml
vendored
6
.github/workflows/lint.yml
vendored
@@ -19,9 +19,9 @@ jobs:
|
|||||||
channel: dev
|
channel: dev
|
||||||
steps:
|
steps:
|
||||||
- name: ⤵️ Check out code from GitHub
|
- name: ⤵️ Check out code from GitHub
|
||||||
uses: actions/checkout@v4.1.7
|
uses: actions/checkout@v4.2.2
|
||||||
- name: 🛠 Setup Python
|
- name: 🛠 Setup Python
|
||||||
uses: actions/setup-python@v5.1.0
|
uses: actions/setup-python@v5.3.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.11'
|
python-version: '3.11'
|
||||||
- name: 🛠 Install dependencies
|
- name: 🛠 Install dependencies
|
||||||
@@ -29,6 +29,6 @@ jobs:
|
|||||||
- name: 🛠 Generate files from template
|
- name: 🛠 Generate files from template
|
||||||
run: python script/generate.py ${{ matrix.channels.channel }}
|
run: python script/generate.py ${{ matrix.channels.channel }}
|
||||||
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
|
||||||
uses: frenck/action-addon-linter@v2.15.1
|
uses: frenck/action-addon-linter@v2.17.1
|
||||||
with:
|
with:
|
||||||
path: "./${{ matrix.channels.folder }}"
|
path: "./${{ matrix.channels.folder }}"
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
## 2024.6.2
|
## 2024.10.2
|
||||||
|
|
||||||
- [core] Fix package merging with lists of primitives [esphome#6952](https://github.com/esphome/esphome/pull/6952) by [@jesserockz](https://github.com/jesserockz)
|
- Humanized the missing MQTT log topic error message [esphome#7634](https://github.com/esphome/esphome/pull/7634) by [@solarkennedy](https://github.com/solarkennedy)
|
||||||
- [update] Set entity_category to config & Publish state to logs [esphome#6954](https://github.com/esphome/esphome/pull/6954) by [@jesserockz](https://github.com/jesserockz)
|
- [lvgl] Some properties were not templatable (Bugfix) [esphome#7655](https://github.com/esphome/esphome/pull/7655) by [@clydebarrow](https://github.com/clydebarrow)
|
||||||
- Fix infinite loop in http_request for ESP-IDF. [esphome#6963](https://github.com/esphome/esphome/pull/6963) by [@kpfleming](https://github.com/kpfleming)
|
- [voice_assistant] Bugfix: Fix crash on start [esphome#7662](https://github.com/esphome/esphome/pull/7662) by [@kahrendt](https://github.com/kahrendt)
|
||||||
- ESP-IDF 4.x expects seconds for esp_task_wdt_init(), not milliseconds. [esphome#6964](https://github.com/esphome/esphome/pull/6964) by [@kpfleming](https://github.com/kpfleming)
|
|
||||||
- Onewire [esphome#6967](https://github.com/esphome/esphome/pull/6967) by [@ssieb](https://github.com/ssieb)
|
|
||||||
- [http_request] memory leak fix [esphome#6973](https://github.com/esphome/esphome/pull/6973) by [@gabest11](https://github.com/gabest11)
|
|
||||||
- Await cg.get_variable in Update component [esphome#6974](https://github.com/esphome/esphome/pull/6974) by [@bkaufx](https://github.com/bkaufx)
|
|
||||||
- [one-wire] fix potential hang [esphome#6976](https://github.com/esphome/esphome/pull/6976) by [@ssieb](https://github.com/ssieb)
|
|
||||||
- [midea] fix fan speed compatibility with some models [esphome#6978](https://github.com/esphome/esphome/pull/6978) by [@dudanov](https://github.com/dudanov)
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ backup_exclude:
|
|||||||
init: false
|
init: false
|
||||||
startup: services
|
startup: services
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: 2024.6.2
|
version: 2024.10.2
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: Beta version of ESPHome add-on
|
description: Beta version of ESPHome add-on
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Dev Add-On
|
# ESPHome Device Compiler (Development branch)
|
||||||
|
|
||||||
[![ESPHome logo][logo]][website]
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
@@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
This add-on allows you to write configurations and turn your microcontrollers
|
||||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation][website]
|
[View the ESPHome documentation][website]
|
||||||
|
|||||||
@@ -32,10 +32,10 @@ backup_exclude:
|
|||||||
- '*/*/'
|
- '*/*/'
|
||||||
init: false
|
init: false
|
||||||
startup: services
|
startup: services
|
||||||
name: ESPHome (dev)
|
name: ESPHome Device Compiler (dev)
|
||||||
version: 2024.7.0-dev20240624
|
version: 2024.11.0-dev20241024
|
||||||
slug: esphome-dev
|
slug: esphome-dev
|
||||||
description: Development version of ESPHome add-on
|
description: Development version of ESPHome Device Compiler
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
stage: experimental
|
stage: experimental
|
||||||
advanced: true
|
advanced: true
|
||||||
|
|||||||
@@ -1,12 +1,6 @@
|
|||||||
## 2024.6.2
|
## 2024.10.2
|
||||||
|
|
||||||
- [core] Fix package merging with lists of primitives [esphome#6952](https://github.com/esphome/esphome/pull/6952) by [@jesserockz](https://github.com/jesserockz)
|
- Humanized the missing MQTT log topic error message [esphome#7634](https://github.com/esphome/esphome/pull/7634) by [@solarkennedy](https://github.com/solarkennedy)
|
||||||
- [update] Set entity_category to config & Publish state to logs [esphome#6954](https://github.com/esphome/esphome/pull/6954) by [@jesserockz](https://github.com/jesserockz)
|
- [lvgl] Some properties were not templatable (Bugfix) [esphome#7655](https://github.com/esphome/esphome/pull/7655) by [@clydebarrow](https://github.com/clydebarrow)
|
||||||
- Fix infinite loop in http_request for ESP-IDF. [esphome#6963](https://github.com/esphome/esphome/pull/6963) by [@kpfleming](https://github.com/kpfleming)
|
- [voice_assistant] Bugfix: Fix crash on start [esphome#7662](https://github.com/esphome/esphome/pull/7662) by [@kahrendt](https://github.com/kahrendt)
|
||||||
- ESP-IDF 4.x expects seconds for esp_task_wdt_init(), not milliseconds. [esphome#6964](https://github.com/esphome/esphome/pull/6964) by [@kpfleming](https://github.com/kpfleming)
|
|
||||||
- Onewire [esphome#6967](https://github.com/esphome/esphome/pull/6967) by [@ssieb](https://github.com/ssieb)
|
|
||||||
- [http_request] memory leak fix [esphome#6973](https://github.com/esphome/esphome/pull/6973) by [@gabest11](https://github.com/gabest11)
|
|
||||||
- Await cg.get_variable in Update component [esphome#6974](https://github.com/esphome/esphome/pull/6974) by [@bkaufx](https://github.com/bkaufx)
|
|
||||||
- [one-wire] fix potential hang [esphome#6976](https://github.com/esphome/esphome/pull/6976) by [@ssieb](https://github.com/ssieb)
|
|
||||||
- [midea] fix fan speed compatibility with some models [esphome#6978](https://github.com/esphome/esphome/pull/6978) by [@dudanov](https://github.com/dudanov)
|
|
||||||
|
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ backup_exclude:
|
|||||||
init: false
|
init: false
|
||||||
startup: services
|
startup: services
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: 2024.6.2
|
version: 2024.10.2
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
@@ -45,10 +45,10 @@ base: &base
|
|||||||
esphome-dev:
|
esphome-dev:
|
||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome-dev
|
directory: esphome-dev
|
||||||
name: ESPHome (dev)
|
name: ESPHome Device Compiler (dev)
|
||||||
version: "2024.7.0-dev20240624" # DEV
|
version: "2024.11.0-dev20241024" # DEV
|
||||||
slug: esphome-dev
|
slug: esphome-dev
|
||||||
description: "Development version of ESPHome add-on"
|
description: "Development version of ESPHome Device Compiler"
|
||||||
url: https://next.esphome.io/
|
url: https://next.esphome.io/
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
stage: experimental
|
stage: experimental
|
||||||
@@ -70,7 +70,7 @@ esphome-beta:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome-beta
|
directory: esphome-beta
|
||||||
name: ESPHome (beta)
|
name: ESPHome (beta)
|
||||||
version: "2024.6.2" # BETA
|
version: "2024.10.2" # BETA
|
||||||
slug: esphome-beta
|
slug: esphome-beta
|
||||||
description: "Beta version of ESPHome add-on"
|
description: "Beta version of ESPHome add-on"
|
||||||
url: https://beta.esphome.io/
|
url: https://beta.esphome.io/
|
||||||
@@ -84,7 +84,7 @@ esphome-stable:
|
|||||||
<<: *base
|
<<: *base
|
||||||
directory: esphome
|
directory: esphome
|
||||||
name: ESPHome
|
name: ESPHome
|
||||||
version: "2024.6.2" # STABLE
|
version: "2024.10.2" # STABLE
|
||||||
slug: esphome
|
slug: esphome
|
||||||
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
||||||
image: ghcr.io/esphome/esphome-hassio
|
image: ghcr.io/esphome/esphome-hassio
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
# ESPHome Dev Add-On
|
# ESPHome Device Compiler (Development branch)
|
||||||
|
|
||||||
[![ESPHome logo][logo]][website]
|
[![ESPHome logo][logo]][website]
|
||||||
|
|
||||||
@@ -7,13 +7,13 @@
|
|||||||
|
|
||||||
## About
|
## About
|
||||||
|
|
||||||
This add-on allows you to manage and program your ESP8266 and ESP32 based microcontrollers
|
This add-on allows you to write configurations and turn your microcontrollers
|
||||||
directly through Home Assistant **with no programming experience required**. All you need to do
|
into smart home devices directly through Home Assistant **with no programming experience required**.
|
||||||
is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
All you need to do is write YAML configuration files; the rest (over-the-air updates, compiling) is all
|
||||||
handled by ESPHome.
|
handled by ESPHome.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img title="ESPHome dashboard screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
<img title="ESPHome Device Compiler screenshot" src="https://github.com/esphome/home-assistant-addon/raw/main/esphome-dev/images/screenshot.png" width="700px"></img>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
[View the ESPHome documentation][website]
|
[View the ESPHome documentation][website]
|
||||||
|
|||||||
Reference in New Issue
Block a user