Compare commits
58 Commits
6
.github/workflows/bump-version.yml
vendored
6
.github/workflows/bump-version.yml
vendored
@@ -15,10 +15,10 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
steps:
|
||||
- uses: actions/checkout@v4.0.0
|
||||
- uses: actions/setup-python@v4
|
||||
- uses: actions/checkout@v4.1.1
|
||||
- uses: actions/setup-python@v4.8.0
|
||||
with:
|
||||
python-version: '3.x'
|
||||
python-version: '3.11'
|
||||
- run: pip install -r script/requirements.txt
|
||||
- run: script/bump-version.py ${{ github.event.inputs.version }}
|
||||
- name: Write Beta changelog
|
||||
|
||||
10
.github/workflows/devcontainer-build.yaml
vendored
10
.github/workflows/devcontainer-build.yaml
vendored
@@ -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
|
||||
|
||||
8
.github/workflows/lint.yml
vendored
8
.github/workflows/lint.yml
vendored
@@ -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 }}"
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
## 2023.9.3
|
||||
## 2024.2.2
|
||||
|
||||
- Bump zeroconf from 0.112.0 to 0.115.0 [esphome#5432](https://github.com/esphome/esphome/pull/5432) by [@dependabot[bot]](https://github.com/apps/dependabot)
|
||||
- add pin config for denky_d4 [esphome#5471](https://github.com/esphome/esphome/pull/5471) by [@alucryd](https://github.com/alucryd)
|
||||
- Support RP2040 hardware SPI [esphome#5466](https://github.com/esphome/esphome/pull/5466) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- Bump zeroconf from 0.115.0 to 0.115.1 [esphome#5470](https://github.com/esphome/esphome/pull/5470) by [@dependabot[bot]](https://github.com/apps/dependabot)
|
||||
- Sleep mode fix for BP5758D driver [esphome#5461](https://github.com/esphome/esphome/pull/5461) by [@dwildstr](https://github.com/dwildstr)
|
||||
- Tuya Number: split "multiply" to a separate option [esphome#5458](https://github.com/esphome/esphome/pull/5458) by [@paravoid](https://github.com/paravoid)
|
||||
- CSE7766: Fix energy calculation [esphome#6286](https://github.com/esphome/esphome/pull/6286) by [@puuu](https://github.com/puuu)
|
||||
- handling with the negative temperature in the sensor tmp102 [esphome#6316](https://github.com/esphome/esphome/pull/6316) by [@FlyingFeng2021](https://github.com/FlyingFeng2021)
|
||||
- fix tmp102 negative calculation [esphome#6320](https://github.com/esphome/esphome/pull/6320) by [@ssieb](https://github.com/ssieb)
|
||||
- auto load output for now [esphome#6309](https://github.com/esphome/esphome/pull/6309) by [@ssieb](https://github.com/ssieb)
|
||||
- Add wake word phrase to voice assistant start command [esphome#6290](https://github.com/esphome/esphome/pull/6290) by [@jesserockz](https://github.com/jesserockz)
|
||||
|
||||
|
||||
@@ -30,8 +30,9 @@ schema:
|
||||
backup_exclude:
|
||||
- '*/*/'
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome (beta)
|
||||
version: 2023.9.3
|
||||
version: 2024.2.2
|
||||
slug: esphome-beta
|
||||
description: Beta version of ESPHome add-on
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
@@ -31,6 +31,7 @@ schema:
|
||||
backup_exclude:
|
||||
- '*/*/'
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome (dev)
|
||||
version: dev
|
||||
slug: esphome-dev
|
||||
|
||||
@@ -1,9 +1,8 @@
|
||||
## 2023.9.3
|
||||
## 2024.2.2
|
||||
|
||||
- Bump zeroconf from 0.112.0 to 0.115.0 [esphome#5432](https://github.com/esphome/esphome/pull/5432) by [@dependabot[bot]](https://github.com/apps/dependabot)
|
||||
- add pin config for denky_d4 [esphome#5471](https://github.com/esphome/esphome/pull/5471) by [@alucryd](https://github.com/alucryd)
|
||||
- Support RP2040 hardware SPI [esphome#5466](https://github.com/esphome/esphome/pull/5466) by [@clydebarrow](https://github.com/clydebarrow)
|
||||
- Bump zeroconf from 0.115.0 to 0.115.1 [esphome#5470](https://github.com/esphome/esphome/pull/5470) by [@dependabot[bot]](https://github.com/apps/dependabot)
|
||||
- Sleep mode fix for BP5758D driver [esphome#5461](https://github.com/esphome/esphome/pull/5461) by [@dwildstr](https://github.com/dwildstr)
|
||||
- Tuya Number: split "multiply" to a separate option [esphome#5458](https://github.com/esphome/esphome/pull/5458) by [@paravoid](https://github.com/paravoid)
|
||||
- CSE7766: Fix energy calculation [esphome#6286](https://github.com/esphome/esphome/pull/6286) by [@puuu](https://github.com/puuu)
|
||||
- handling with the negative temperature in the sensor tmp102 [esphome#6316](https://github.com/esphome/esphome/pull/6316) by [@FlyingFeng2021](https://github.com/FlyingFeng2021)
|
||||
- fix tmp102 negative calculation [esphome#6320](https://github.com/esphome/esphome/pull/6320) by [@ssieb](https://github.com/ssieb)
|
||||
- auto load output for now [esphome#6309](https://github.com/esphome/esphome/pull/6309) by [@ssieb](https://github.com/ssieb)
|
||||
- Add wake word phrase to voice assistant start command [esphome#6290](https://github.com/esphome/esphome/pull/6290) by [@jesserockz](https://github.com/jesserockz)
|
||||
|
||||
|
||||
@@ -30,8 +30,9 @@ schema:
|
||||
backup_exclude:
|
||||
- '*/*/'
|
||||
init: false
|
||||
startup: services
|
||||
name: ESPHome
|
||||
version: 2023.9.3
|
||||
version: 2024.2.2
|
||||
slug: esphome
|
||||
description: ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
@@ -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.9.3' # BETA
|
||||
version: '2024.2.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.9.3' # STABLE
|
||||
version: '2024.2.2' # STABLE
|
||||
slug: esphome
|
||||
description: "ESPHome add-on for intelligently managing all your ESP8266/ESP32 devices"
|
||||
image: ghcr.io/esphome/esphome-hassio
|
||||
|
||||
Reference in New Issue
Block a user