Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
13 changes: 10 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,20 @@ jobs:
cargo install cargo-zigbuild --quiet

- name: Build
# Linux targets enable `kube` and `redis` features for K8s Ingress + distributed rate-limiting.
# macOS keeps default features (no K8s deployment use case).
run: |
if [[ "${{ matrix.target }}" == *"linux"* ]]; then
FEATURES="--features kube,redis"
else
FEATURES=""
fi
if [ "${{ matrix.use_cross }}" = "true" ]; then
cross build -p a3s-gateway --release --target ${{ matrix.target }}
cross build -p a3s-gateway --release --target ${{ matrix.target }} $FEATURES
elif [ "${{ matrix.use_zigbuild }}" = "true" ]; then
cargo zigbuild -p a3s-gateway --release --target ${{ matrix.target }}
cargo zigbuild -p a3s-gateway --release --target ${{ matrix.target }} $FEATURES
else
cargo build -p a3s-gateway --release --target ${{ matrix.target }}
cargo build -p a3s-gateway --release --target ${{ matrix.target }} $FEATURES
fi

- name: Strip (Linux gnu)
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.1] - 2026-05-15

### Fixed

- Linux release binaries (and OCI images published to ghcr.io) are now built with
the `kube` and `redis` features enabled, so the published image can act as a
Kubernetes Ingress Controller and use Redis-backed distributed rate limiting
out of the box. Prior 1.0.0 image had `default = []` features only and logged
`Kubernetes provider configured but the 'kube' feature is not enabled` when
used with a `providers.kubernetes` config block.

## [1.0.0] - 2026-05-12

### Breaking
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "a3s-gateway"
version = "1.0.0"
version = "1.0.1"
edition = "2021"
rust-version = "1.88"
authors = ["A3S Lab"]
Expand Down
Loading