From e80b2cf88334047fa16f865e6f9d5ae42cc5b821 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 00:08:29 +0000 Subject: [PATCH] chore: release --- CHANGELOG.md | 40 ++++++++++++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 42 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61e3267..20aeb85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,46 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.0](https://github.com/alexrudy/hyperdriver/compare/v0.6.0...v0.7.0) - 2024-10-01 + +### ⛰️ Features + +- expose tcp and unix listeners in stream module +- Improved span tracing +- improved tracing for checkouts +- refactor connector +- Make the happy eyeballs algorithm default timeout 30s +- [**breaking**] remove `TransportStream` type. +- [**breaking**] remove PID file module, publish as separate crate +- feat!(discovery): remove discovery support +- *(body)* [**breaking**] Remove the TryCloneRequest trait from the body module. +- *(client)* [**breaking**] Remove support for retries from the client + +### 🐛 Bug Fixes + +- Ensure that services polled to readiness are used directly + +### ⚙️ Miscellaneous Tasks + +- update dependencies +- cargo-deny configuration tweaks +- Add cargo-deny to CI +- improve checkout docs +- Bump rustls-native-certs from 0.7.2 to 0.8.0 +- fix docstrings so clippy in rust-1.82 is happy +- Bump webpki-roots from 0.26.3 to 0.26.5 +- Bump tokio from 1.39.3 to 1.40.0 +- Bump tower from 0.5.0 to 0.5.1 +- Bump clap from 4.5.16 to 4.5.17 +- remote httpbin tests, make them examples as a script +- make dependabot go in proper section in changelog +- add release-plz config to customize changelog +- cargo-machete ignore target/ directory +- Bump rustls-native-certs from 0.7.1 to 0.7.2 +- Bump serde from 1.0.204 to 1.0.207 +- Bump tempfile from 3.11.0 to 3.12.0 +- Bump clap from 4.5.13 to 4.5.15 + ## [0.6.0](https://github.com/alexrudy/hyperdriver/compare/v0.5.6...v0.6.0) - 2024-08-11 ### Other diff --git a/Cargo.lock b/Cargo.lock index 8a18f8e..c62375e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -721,7 +721,7 @@ dependencies = [ [[package]] name = "hyperdriver" -version = "0.6.0" +version = "0.7.0" dependencies = [ "axum", "bytes", diff --git a/Cargo.toml b/Cargo.toml index efb237e..e5399cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hyperdriver" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "The missing middle for Hyper - Servers and Clients with ergonomic APIs" license = "MIT"