diff --git a/metrics-util/CHANGELOG.md b/metrics-util/CHANGELOG.md index 63e336df..1d974ecf 100644 --- a/metrics-util/CHANGELOG.md +++ b/metrics-util/CHANGELOG.md @@ -12,6 +12,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Bump MSRV to 1.65.0. +- `RecoverableRecorder` no longer functions as a drop guard itself, and instead returns a new + type, `RecoveryHandle`, which provides that functionality. ([#414](https://github.com/metrics-rs/metrics/pull/414)) + +### Removed + +- Support for per-thread mode in `DebuggingRecorder`. Users should now use + `metrics::with_local_recorder` instead, which is inherently per-thread. ## [0.15.1] - 2023-07-02 diff --git a/metrics/CHANGELOG.md b/metrics/CHANGELOG.md index 32370022..200713fc 100644 --- a/metrics/CHANGELOG.md +++ b/metrics/CHANGELOG.md @@ -17,9 +17,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 `&'static str` or `String` were allowed. There's still work to be done to also support labels in this regard. +- Support for local recorders. ([#414](https://github.com/metrics-rs/metrics/pull/414)) + + This is a large feature, and is documented in [RELEASES.md](RELEASES.md). + ### Changed - Bump MSRV to 1.65.0. +- `SetRecorderError` now returns the recorder given to `set_global_recorder` if another global + recorder was already installed instead of leaking it. ([#414](https://github.com/metrics-rs/metrics/pull/414)) ## [0.21.1] - 2023-07-02