From 9b7566cd88eaa239e831ca03ec388266f259903e Mon Sep 17 00:00:00 2001 From: puddly <32534428+puddly@users.noreply.github.com> Date: Wed, 29 Jul 2026 00:14:37 -0400 Subject: [PATCH 1/2] Bump ziggurat to latest dev --- ziggurat/CHANGELOG.md | 8 ++++++++ ziggurat/Dockerfile | 7 ++++--- ziggurat/config.yaml | 3 ++- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ziggurat/CHANGELOG.md b/ziggurat/CHANGELOG.md index b17fd6e..10742e4 100644 --- a/ziggurat/CHANGELOG.md +++ b/ziggurat/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.3.0 + + - Bump ziggurat to daa41ff9. + - Routing hints API for fast startup with ZHA. + - Switch from the JSON API to the binary transport API. + - Properly send the transport key to joining Zigbee 3.0 devices. + - Many other fixes. + ## 0.2.0 - Bump ziggurat to the 0.1.0 release on crates.io. diff --git a/ziggurat/Dockerfile b/ziggurat/Dockerfile index 731bbc7..bbc6842 100644 --- a/ziggurat/Dockerfile +++ b/ziggurat/Dockerfile @@ -2,9 +2,9 @@ ARG BUILD_FROM=ghcr.io/home-assistant/base:3.23 FROM rust:1-alpine AS builder -RUN apk add --no-cache musl-dev +RUN apk add --no-cache git musl-dev -ARG ZIGGURAT_VERSION=0.1.0 +ARG ZIGGURAT_VERSION=daa41ff919120ff010731fd6d399bb2f677e2042 ENV CARGO_PROFILE_RELEASE_LTO=true \ CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1 \ @@ -15,7 +15,8 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ --mount=type=cache,target=/tmp/cargo-target \ CARGO_TARGET_DIR=/tmp/cargo-target \ cargo install ziggurat-server \ - --version "${ZIGGURAT_VERSION}" \ + --git "https://github.com/zigpy/ziggurat" \ + --rev "${ZIGGURAT_VERSION}" \ --bin ziggurat \ --locked \ --root /usr/local diff --git a/ziggurat/config.yaml b/ziggurat/config.yaml index 024173d..20f0580 100644 --- a/ziggurat/config.yaml +++ b/ziggurat/config.yaml @@ -1,9 +1,10 @@ --- -version: 0.2.0 +version: 0.3.0 slug: ziggurat name: Ziggurat Zigbee Server description: Open source host-side Zigbee stack written in Rust url: https://github.com/zigpy/ziggurat +homeassistant: 2026.8.0b0 arch: - aarch64 - amd64 From 27cd2008f13c89405c45824779c2f2f20a7d9053 Mon Sep 17 00:00:00 2001 From: puddly <32534428+puddly@users.noreply.github.com> Date: Wed, 29 Jul 2026 09:59:40 -0400 Subject: [PATCH 2/2] Bump to 96face24 --- ziggurat/CHANGELOG.md | 2 +- ziggurat/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ziggurat/CHANGELOG.md b/ziggurat/CHANGELOG.md index 10742e4..b75ff22 100644 --- a/ziggurat/CHANGELOG.md +++ b/ziggurat/CHANGELOG.md @@ -2,7 +2,7 @@ ## 0.3.0 - - Bump ziggurat to daa41ff9. + - Bump ziggurat to 96face24. - Routing hints API for fast startup with ZHA. - Switch from the JSON API to the binary transport API. - Properly send the transport key to joining Zigbee 3.0 devices. diff --git a/ziggurat/Dockerfile b/ziggurat/Dockerfile index bbc6842..1395f68 100644 --- a/ziggurat/Dockerfile +++ b/ziggurat/Dockerfile @@ -4,7 +4,7 @@ FROM rust:1-alpine AS builder RUN apk add --no-cache git musl-dev -ARG ZIGGURAT_VERSION=daa41ff919120ff010731fd6d399bb2f677e2042 +ARG ZIGGURAT_VERSION=96face24e321f990d80ad5269bd9d1b2efc3c8fc ENV CARGO_PROFILE_RELEASE_LTO=true \ CARGO_PROFILE_RELEASE_CODEGEN_UNITS=1 \