1
0

Compare commits

...

56 Commits

9 changed files with 30 additions and 19 deletions

View File

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

View File

@@ -19,20 +19,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.1
- name: Log in to the GitHub container registry
uses: docker/login-action@v2.2.0
uses: docker/login-action@v3.0.0
if: github.event_name != 'pull_request'
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2.2.0
uses: docker/setup-qemu-action@v3.0.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2.10.0
uses: docker/setup-buildx-action@v3.0.0
- name: Build and Push
uses: docker/build-push-action@v4.1.1
uses: docker/build-push-action@v5.1.0
with:
context: .
file: .devcontainer/Dockerfile

View File

@@ -19,16 +19,16 @@ jobs:
channel: dev
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.1.1
- name: 🛠 Setup Python
uses: actions/setup-python@v4
uses: actions/setup-python@v4.8.0
with:
python-version: '3.x'
python-version: '3.11'
- name: 🛠 Install dependencies
run: pip install -r script/requirements.txt
- 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,3 +1,6 @@
## 2023.10.4
## 2024.3.2
- 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)
- Update current_based_cover bugfix [esphome#5587](https://github.com/esphome/esphome/pull/5587) by [@rogerbusser](https://github.com/rogerbusser) - Fixes ip include on arduino 2.7.4 [esphome#5620](https://github.com/esphome/esphome/pull/5620) by [@HeMan](https://github.com/HeMan) - Fix bug when requesting italic gfonts [esphome#5623](https://github.com/esphome/esphome/pull/5623) by [@dewet22](https://github.com/dewet22) - Handle enum type in tuya text_sensor [esphome#5626](https://github.com/esphome/esphome/pull/5626) by [@jesserockz](https://github.com/jesserockz)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome (beta)
version: 2023.10.4
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,3 +1,6 @@
## 2023.10.4
## 2024.3.2
- 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)
- Update current_based_cover bugfix [esphome#5587](https://github.com/esphome/esphome/pull/5587) by [@rogerbusser](https://github.com/rogerbusser) - Fixes ip include on arduino 2.7.4 [esphome#5620](https://github.com/esphome/esphome/pull/5620) by [@HeMan](https://github.com/HeMan) - Fix bug when requesting italic gfonts [esphome#5623](https://github.com/esphome/esphome/pull/5623) by [@dewet22](https://github.com/dewet22) - Handle enum type in tuya text_sensor [esphome#5626](https://github.com/esphome/esphome/pull/5626) by [@jesserockz](https://github.com/jesserockz)

View File

@@ -30,8 +30,9 @@ schema:
backup_exclude:
- '*/*/'
init: false
startup: services
name: ESPHome
version: 2023.10.4
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.10.4' # 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.10.4' # 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