From b2dd463146f45bd1d95e1a6fdb5a7bb796aa5222 Mon Sep 17 00:00:00 2001 From: Jeremiah Senkpiel Date: Tue, 12 Jan 2021 16:54:28 -0800 Subject: [PATCH] 0.2.0 - Changed the api mounting point to be versioned - e.g. `/api/v1`. - This is based on argument position of the route handlers provided to `preroll::main!`. - Changed routes setup function to instead receive `Route<'_, Arc>`. - Added `"test"` feature (makes UUIDs such as `correlation_id` be constant an nil). - Added `"custom_middleware"` feature to add an extra hook into `preroll::main!`. - Added an always-enabled `GET /monitor/ping` which responds only with `service_name`. - This is excluded from middleware. - Added a debug-mode-only `GET /internal-error` for easy testing. - Exposed and documented `JsonError`. - Improved http error output for `assert_json_error`. --- Cargo.toml | 2 +- Changelog.md | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 454c0d3..c5a262f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ members = [ [package] name = "preroll" -version = "0.1.2" +version = "0.2.0" authors = [ "Jeremiah Senkpiel ", ] diff --git a/Changelog.md b/Changelog.md index 70851f2..bf2868c 100644 --- a/Changelog.md +++ b/Changelog.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0] - 2021-01-12 + +- Changed the api mounting point to be versioned - e.g. `/api/v1`. + - This is based on argument position of the route handlers provided to `preroll::main!`. +- Changed routes setup function to instead receive `Route<'_, Arc>`. +- Added `"test"` feature (makes UUIDs such as `correlation_id` be constant an nil). +- Added `"custom_middleware"` feature to add an extra hook into `preroll::main!`. +- Added an always-enabled `GET /monitor/ping` which responds only with `service_name`. + - This is excluded from middleware. +- Added a debug-mode-only `GET /internal-error` for easy testing. +- Exposed and documented `JsonError`. +- Improved http error output for `assert_json_error`. + ## [0.1.2] - 2021-01-06 - Fixed `honeycomb` feature. _(Incorrect `cfg` statements.)_