1
0

Compare commits

...

36 Commits

9 changed files with 21 additions and 20 deletions

View File

@@ -16,7 +16,7 @@ jobs:
continue-on-error: true
steps:
- uses: actions/checkout@v4.1.1
- uses: actions/setup-python@v4.7.1
- uses: actions/setup-python@v4.8.0
with:
python-version: '3.11'
- run: pip install -r script/requirements.txt

View File

@@ -32,7 +32,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3.0.0
- name: Build and Push
uses: docker/build-push-action@v5.0.0
uses: docker/build-push-action@v5.1.0
with:
context: .
file: .devcontainer/Dockerfile

View File

@@ -21,7 +21,7 @@ jobs:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.1.1
- name: 🛠 Setup Python
uses: actions/setup-python@v4.7.1
uses: actions/setup-python@v4.8.0
with:
python-version: '3.11'
- name: 🛠 Install dependencies
@@ -29,6 +29,6 @@ jobs:
- name: 🛠 Generate files from template
run: python script/generate.py ${{ matrix.channels.channel }}
- name: 🚀 Run Home Assistant Add-on Lint on ${{ matrix.channels.channel }}
uses: frenck/action-addon-linter@v2.13.2
uses: frenck/action-addon-linter@v2.15.0
with:
path: "./${{ matrix.channels.folder }}"

View File

@@ -1,8 +1,6 @@
## 2023.11.3
## 2024.3.2
- include payload_open when a lock supports OPEN [esphome#5809](https://github.com/esphome/esphome/pull/5809) by [@ccutrer](https://github.com/ccutrer)
- dashboard: Fix online status when api is disabled [esphome#5791](https://github.com/esphome/esphome/pull/5791) by [@bdraco](https://github.com/bdraco)
- fix: compile errors with fonts [esphome#5808](https://github.com/esphome/esphome/pull/5808) by [@cvandesande](https://github.com/cvandesande)
- Early return when there are no wifi scan results [esphome#5797](https://github.com/esphome/esphome/pull/5797) by [@jesserockz](https://github.com/jesserockz)
- Add some additional VA triggers, part 2 [esphome#5811](https://github.com/esphome/esphome/pull/5811) by [@kbx81](https://github.com/kbx81)
- Fix logger compile error on ESP32-C6 [esphome#6323](https://github.com/esphome/esphome/pull/6323) by [@DAVe3283](https://github.com/DAVe3283)
- Add missing ethernet types [esphome#6444](https://github.com/esphome/esphome/pull/6444) by [@ssieb](https://github.com/ssieb)
- fix: changing the content source when playing is paused blocks the player [esphome#6454](https://github.com/esphome/esphome/pull/6454) by [@NewoPL](https://github.com/NewoPL)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome (beta)
version: 2023.11.3
version: 2024.3.2
slug: esphome-beta
description: Beta version of ESPHome add-on
image: ghcr.io/esphome/esphome-hassio

View File

@@ -31,6 +31,7 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome (dev)
version: dev
slug: esphome-dev

View File

@@ -1,8 +1,6 @@
## 2023.11.3
## 2024.3.2
- include payload_open when a lock supports OPEN [esphome#5809](https://github.com/esphome/esphome/pull/5809) by [@ccutrer](https://github.com/ccutrer)
- dashboard: Fix online status when api is disabled [esphome#5791](https://github.com/esphome/esphome/pull/5791) by [@bdraco](https://github.com/bdraco)
- fix: compile errors with fonts [esphome#5808](https://github.com/esphome/esphome/pull/5808) by [@cvandesande](https://github.com/cvandesande)
- Early return when there are no wifi scan results [esphome#5797](https://github.com/esphome/esphome/pull/5797) by [@jesserockz](https://github.com/jesserockz)
- Add some additional VA triggers, part 2 [esphome#5811](https://github.com/esphome/esphome/pull/5811) by [@kbx81](https://github.com/kbx81)
- Fix logger compile error on ESP32-C6 [esphome#6323](https://github.com/esphome/esphome/pull/6323) by [@DAVe3283](https://github.com/DAVe3283)
- Add missing ethernet types [esphome#6444](https://github.com/esphome/esphome/pull/6444) by [@ssieb](https://github.com/ssieb)
- fix: changing the content source when playing is paused blocks the player [esphome#6454](https://github.com/esphome/esphome/pull/6454) by [@NewoPL](https://github.com/NewoPL)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome
version: 2023.11.3
version: 2024.3.2
slug: esphome
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
image: ghcr.io/esphome/esphome-hassio

View File

@@ -39,6 +39,8 @@ base: &base
- "*/*/"
# Disable docker init for s6
init: false
# Make sure dashboard is available for core
startup: services
esphome-dev:
<<: *base
@@ -68,7 +70,7 @@ esphome-beta:
<<: *base
directory: esphome-beta
name: ESPHome (beta)
version: '2023.11.3' # BETA
version: '2024.3.2' # BETA
slug: esphome-beta
description: "Beta version of ESPHome add-on"
url: https://beta.esphome.io/
@@ -82,7 +84,7 @@ esphome-stable:
<<: *base
directory: esphome
name: ESPHome
version: '2023.11.3' # STABLE
version: '2024.3.2' # STABLE
slug: esphome
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
image: ghcr.io/esphome/esphome-hassio