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
42 changes: 42 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,48 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/tarka/vicarian/compare/v0.4.0...v0.5.0) - 2026-09-17

### <!-- 0 -->Features

- *(tls)* Add comments and clarifications of the dummy/noop cert handler.
- *(rustls)* Move to Pingora 0.9 and enable rustls
- Convert to use Rustls Pingora backend

### <!-- 3 -->Documentation

- Update status of project.

### Other

- Remove redundant async from redirector.
- COMPRESSIBLE should be static not consts, and minor cleanups.
- Remove phf.
- Simplify looking up ACME profile parameters.
- Update tlsserver validity days
- Cleanup HSTS and Via handling in static.
- Break large closure in acme.rs into new() fn.
- Remove unnecessary .expect()
- Dedup some destructuring code.
- Dependency update
- Minor formatting.
- Better name for `from` in HostCertificate
- Use Authority from the http crate to parse out hostname/port.
- Clean-up and de-dup mimetype handling
- Convert metrics initialisation to be more data-driven.
- Minor coding style cleanups from review.
- Remove unnecessary collection of hostnames into a Vec
- Use unicase for certificate host lookups.
- Simplify validate_path() logic.
- Remove unnecessary .clone()
- Use unicase to handle case-insensitive host matching
- Remove unnecessary usage of tracing-log
- Use a standard hashmap for route_by_host as we never update after startup.
- Simplify some startup data conversions.
- Enable port 80 by default (principle of least surprise).
- Cleanup after rustls rework
- Fix some incorrect context strings.

## [0.4.0](https://github.com/tarka/vicarian/compare/v0.3.4...v0.4.0) - 2026-09-09

This release changes the configuration language from Corn to a HCL-derived DSL. An annotated reference config file is available in example/vicarian-full.hcl.
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,7 +1,7 @@
[package]
name = "vicarian"
description = "Vicarian is a TLS-first reverse-proxy server with ACME support"
version = "0.4.0"
version = "0.5.0"
edition = "2024"

authors = ["Steve Smith <tarkasteve@gmail.com>"]
Expand Down
Loading