Skip to content

Commit

Permalink
Release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Oct 28, 2023
1 parent 50a606d commit b10a8ff
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 1 deletion.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@
[Figment]: https://crates.io/crates/figment
[Font Awesome]: https://fontawesome.com/
[Keep a Changelog]: https://keepachangelog.com/en/1.0.0/
[OpenAPI]: https://www.openapis.org/
[RapiDoc]: https://mrin9.github.io/RapiDoc/
[Redoc]: https://redoc.ly/
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
[Swagger]: https://swagger.io/
[Tera]: https://crates.io/crates/tera
[Tracing]: https://crates.io/crates/tracing

Expand All @@ -16,6 +20,34 @@ The format is based on [Keep a Changelog][], and this project adheres to
[Semantic Versioning][].


## 0.3.0 (28 October 2023)

### Added

- Added `health` module
- Added `/api/ping` endpoint
- Added `stats` module
- Added `/api/stats` endpoint with request count, response count, response
times, open connections, memory usage, summary data per period, and
breakdown per endpoint
- Added `/api/stats/history` endpoint with type selector and from/limit
constraints
- Added `/api/stats/feed` websocket endpoint with type selector
- Implemented using a central statistics queue and circular buffers for
historical data
- Per-second tick clock to keep statistics up-to-date
- Configurable buffer sizes and summary periods
- Added [OpenAPI][] functionality, including UIs for [Swagger][], [Rapidoc][],
and [Redoc][]
- Added developer documentation
- Added API integration documentation

### Changed

- Changed memory allocator to `jemalloc`
- Improved error logging


## 0.2.0 (25 September 2023)

### Added
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "terracotta"
version = "0.2.0"
version = "0.3.0"
description = "Boilerplate webserver application based on Axum"
categories = ["asynchronous", "authentication", "rust-patterns", "web-programming", "web-programming::http-server"]
keywords = ["web", "server", "boilerplate", "example", "authentication"]
Expand Down

0 comments on commit b10a8ff

Please sign in to comment.