Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ziggurat/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 4 additions & 3 deletions ziggurat/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion ziggurat/config.yaml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading