diff --git a/CHANGELOG.md b/CHANGELOG.md index 3129664..0d2e1c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,25 @@ and this project adheres to ## [Unreleased] -## [0.7.3] - 2024-03-20 +## [0.7.4] - 2025-02-21 + +### Added + +- Add disable sys auth +- Add sys remount endpoint +- Add missing parameters to generate intermediate request + +### Changed + +- The internal testsuite use now testcontainers instead of dockertest +- Improve the testing speed by regrouping integration tests +- Reduce log verbosity on some trace + +### Fixed + +- Fix the readme example compilation + +## [0.7.3] - 2024-11-08 ### Added @@ -189,7 +207,8 @@ and this project adheres to - Initial release -[unreleased]: https://github.com/jmgilman/vaultrs/compare/v0.7.3...HEAD +[unreleased]: https://github.com/jmgilman/vaultrs/compare/v0.7.4...HEAD +[0.7.4]: https://github.com/jmgilman/vaultrs/compare/v0.7.3...v0.7.4 [0.7.3]: https://github.com/jmgilman/vaultrs/compare/v0.7.2...v0.7.3 [0.7.2]: https://github.com/jmgilman/vaultrs/compare/v0.7.1...v0.7.2 [0.7.1]: https://github.com/jmgilman/vaultrs/compare/v0.7.0...v0.7.1 diff --git a/Cargo.toml b/Cargo.toml index 43ac7a2..724cd86 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaultrs" -version = "0.7.3" +version = "0.7.4" authors = ["Joshua Gilman "] description = "An asynchronous Rust client library for the Hashicorp Vault API." license = "MIT" diff --git a/README.md b/README.md index 5efc515..169edf4 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Then, add `vaultrs` as a dependency to your cargo.toml: ```toml [dependencies] -vaultrs = "0.7.3" +vaultrs = "0.7.4" ``` 2. To use [rust-native-tls](https://github.com/sfackler/rust-native-tls), which @@ -68,7 +68,7 @@ vaultrs = "0.7.3" ```toml [dependencies] -vaultrs = { version = "0.7.3", default-features = false, features = [ "native-tls" ] } +vaultrs = { version = "0.7.4", default-features = false, features = [ "native-tls" ] } ``` ## Usage diff --git a/vaultrs-login/Cargo.toml b/vaultrs-login/Cargo.toml index 5d47f38..93dfb18 100644 --- a/vaultrs-login/Cargo.toml +++ b/vaultrs-login/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "vaultrs-login" -version = "0.2.2" +version = "0.2.3" authors = ["Joshua Gilman "] description = "Adds login support for Vault clients from vaultrs." license = "MIT" @@ -31,7 +31,7 @@ tiny_http = { version = "0.12.0", optional = true } tokio = { version = "1.26.0", optional = true } tracing = "0.1.37" url = "2.3.1" -vaultrs = { version = "0.7.3", path = ".." } +vaultrs = { version = "0.7.4", path = ".." } [dev-dependencies] reqwest = "0.11.15" diff --git a/vaultrs-login/README.md b/vaultrs-login/README.md index c1d3ba0..980c496 100644 --- a/vaultrs-login/README.md +++ b/vaultrs-login/README.md @@ -8,7 +8,7 @@ Add `vaultrs-login` as a dependency to your cargo.toml: ```toml [dependencies] -vaultrs-login = "0.2.2" +vaultrs-login = "0.2.3" ``` ## Usage