diff --git a/CHANGELOG.md b/CHANGELOG.md index a1e502c..cfc8fc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. ## [unreleased] +## [0.1.6](https://github.com/async-profiler/rust-agent/compare/v0.1.5...v0.1.6) - 2025-05-20 + +### Added + +- support not enabling default features for AWS and Reqwest (`aws-metadata-no-defaults`, `s3-no-defaults`) + ## [0.1.5](https://github.com/async-profiler/rust-agent/compare/v0.1.4...v0.1.5) - 2025-05-20 ### Added diff --git a/Cargo.lock b/Cargo.lock index 41a234b..28f8604 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -114,7 +114,7 @@ dependencies = [ [[package]] name = "async-profiler-agent" -version = "0.1.5" +version = "0.1.6" dependencies = [ "anyhow", "async-trait", @@ -299,9 +299,9 @@ dependencies = [ [[package]] name = "aws-sdk-sso" -version = "1.68.0" +version = "1.69.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd5f01ea61fed99b5fe4877abff6c56943342a56ff145e9e0c7e2494419008be" +checksum = "6e9c2e5f57f4a5b7f7e7a1c54427d679ab2337a29e578efbd005e244fd90c4ea" dependencies = [ "aws-credential-types", "aws-runtime", @@ -321,9 +321,9 @@ dependencies = [ [[package]] name = "aws-sdk-ssooidc" -version = "1.69.0" +version = "1.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "27454e4c55aaa4ef65647e3a1cf095cb834ca6d54e959e2909f1fef96ad87860" +checksum = "0acaed9a89e82afa50045f68d27bc927600bdc0cc7d617dec61dfb9e6952d22f" dependencies = [ "aws-credential-types", "aws-runtime", @@ -343,9 +343,9 @@ dependencies = [ [[package]] name = "aws-sdk-sts" -version = "1.69.0" +version = "1.70.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ffd6ef5d00c94215960fabcdf2d9fe7c090eed8be482d66d47b92d4aba1dd4aa" +checksum = "015851dba63fbf22c70c278d8e60c85f008d03640c5b40908730802e1267f651" dependencies = [ "aws-credential-types", "aws-runtime", @@ -2046,7 +2046,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 976c8f1..d132435 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "async-profiler-agent" -version = "0.1.5" +version = "0.1.6" description = "Rust agent for async-profiler" license = "Apache-2.0" repository = "https://github.com/async-profiler/rust-agent"