From 9de885d0f655e83c2b7cfb4c04d91bbeba779655 Mon Sep 17 00:00:00 2001 From: Yann Simon Date: Thu, 10 Oct 2024 09:47:12 +0200 Subject: [PATCH] add changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cf00b83..cf27699 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. # [Unreleased] +- Compatibility with `axum = "0.8"`. This also updates `matchit` to `0.8`, changing how group pattern are described: + for example, `with_group_patterns_as("/foo", &["/foo/:bar"])` needs to be changed to `with_group_patterns_as("/foo", &["/foo/{bar}"])`. + The metrics values are also impacted: for example, the value `"/foo/:bar"` is now `"/foo/{bar}"`. [\#69] + # [0.7.0] - 2024-07-20 ### Changed