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
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,18 @@ 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.2] - 2026-05-16

### Fixed

- Fixed `tokio-rt-worker` panic on startup when the Kubernetes Ingress watcher
opened its first TLS connection to the apiserver
(`Could not automatically determine the process-level CryptoProvider from
Rustls crate features`). With `kube` and `redis` features both pulling in
rustls 0.23 alongside `aws-lc-rs` and `ring`, rustls refuses to auto-select a
provider; the gateway now installs `rustls::crypto::ring` as the process
default at the top of `main()` before any TLS client is constructed.

## [1.0.1] - 2026-05-15

### Fixed
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.1"
version = "1.0.2"
edition = "2021"
rust-version = "1.88"
authors = ["A3S Lab"]
Expand Down
4 changes: 2 additions & 2 deletions deploy/helm/a3s-gateway/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ apiVersion: v2
name: a3s-gateway
description: A3S Gateway — high-performance HTTP/TCP/UDP reverse proxy
type: application
version: 1.0.0
appVersion: "1.0.0"
version: 1.0.2
appVersion: "1.0.2"
5 changes: 5 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ struct ManagementApiArgs {

#[tokio::main]
async fn main() -> a3s_gateway::Result<()> {
// rustls 0.23 with both `aws-lc-rs` and `ring` in the dep graph refuses to
// auto-pick a CryptoProvider; install `ring` explicitly so kube-rs/reqwest
// TLS clients don't panic on first use.
let _ = rustls::crypto::ring::default_provider().install_default();

let cli = Cli::parse();

// Handle update subcommand early
Expand Down
Loading