diff --git a/Cargo.lock b/Cargo.lock index f1108cb3..0a388f4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1929,7 +1929,7 @@ dependencies = [ [[package]] name = "htsget-actix" -version = "0.6.0" +version = "0.6.1" dependencies = [ "actix-cors", "actix-web", @@ -1955,7 +1955,7 @@ dependencies = [ [[package]] name = "htsget-config" -version = "0.9.0" +version = "0.10.0" dependencies = [ "async-trait", "clap", @@ -1983,7 +1983,7 @@ dependencies = [ [[package]] name = "htsget-http" -version = "0.4.13" +version = "0.4.14" dependencies = [ "futures", "htsget-config", @@ -1998,7 +1998,7 @@ dependencies = [ [[package]] name = "htsget-lambda" -version = "0.4.15" +version = "0.4.16" dependencies = [ "async-trait", "bytes", @@ -2022,7 +2022,7 @@ dependencies = [ [[package]] name = "htsget-search" -version = "0.7.0" +version = "0.7.1" dependencies = [ "async-trait", "aws-config", @@ -2057,7 +2057,7 @@ dependencies = [ [[package]] name = "htsget-test" -version = "0.6.0" +version = "0.6.1" dependencies = [ "async-trait", "aws-config", diff --git a/htsget-actix/CHANGELOG.md b/htsget-actix/CHANGELOG.md index 2f7d38ef..721761fc 100644 --- a/htsget-actix/CHANGELOG.md +++ b/htsget-actix/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.6.0...htsget-actix-v0.6.1) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.6.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.8...htsget-actix-v0.6.0) - 2024-05-19 ### Other diff --git a/htsget-actix/Cargo.toml b/htsget-actix/Cargo.toml index 3e5248a8..701add17 100644 --- a/htsget-actix/Cargo.toml +++ b/htsget-actix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-actix" -version = "0.6.0" +version = "0.6.1" rust-version = "1.74" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -24,10 +24,10 @@ rustls-pemfile = "2" serde = { version = "1", features = ["derive"] } serde_json = "1" futures-util = { version = "0.3" } -htsget-http = { version = "0.4.13", path = "../htsget-http", default-features = false } -htsget-search = { version = "0.7.0", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.9.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.6.0", path = "../htsget-test", features = ["http"], default-features = false } +htsget-http = { version = "0.4.14", path = "../htsget-http", default-features = false } +htsget-search = { version = "0.7.1", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.10.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.6.1", path = "../htsget-test", features = ["http"], default-features = false } futures = { version = "0.3" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } diff --git a/htsget-config/CHANGELOG.md b/htsget-config/CHANGELOG.md index 1588df21..ddfd447d 100644 --- a/htsget-config/CHANGELOG.md +++ b/htsget-config/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.10.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.9.0...htsget-config-v0.10.0) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.9.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.8.1...htsget-config-v0.9.0) - 2024-05-19 ### Added diff --git a/htsget-config/Cargo.toml b/htsget-config/Cargo.toml index b71844ca..c2f2e99c 100644 --- a/htsget-config/Cargo.toml +++ b/htsget-config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-config" -version = "0.9.0" +version = "0.10.0" rust-version = "1.74" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" diff --git a/htsget-http/CHANGELOG.md b/htsget-http/CHANGELOG.md index d7dbdccd..646a34a7 100644 --- a/htsget-http/CHANGELOG.md +++ b/htsget-http/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.14](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.13...htsget-http-v0.4.14) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.4.13](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.12...htsget-http-v0.4.13) - 2024-05-19 ### Other diff --git a/htsget-http/Cargo.toml b/htsget-http/Cargo.toml index f0da5a7c..ce08be08 100644 --- a/htsget-http/Cargo.toml +++ b/htsget-http/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-http" -version = "0.4.13" +version = "0.4.14" rust-version = "1.74" authors = ["Daniel del Castillo de la Rosa ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -19,9 +19,9 @@ default = [] thiserror = "1" serde = { version = "1", features = ["derive"] } http = "1" -htsget-search = { version = "0.7.0", path = "../htsget-search", default-features = false } -htsget-config = { version = "0.9.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.6.0", path = "../htsget-test", default-features = false } +htsget-search = { version = "0.7.1", path = "../htsget-search", default-features = false } +htsget-config = { version = "0.10.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.6.1", path = "../htsget-test", default-features = false } futures = { version = "0.3" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tracing = "0.1" diff --git a/htsget-lambda/CHANGELOG.md b/htsget-lambda/CHANGELOG.md index 7a17a002..44c2792c 100644 --- a/htsget-lambda/CHANGELOG.md +++ b/htsget-lambda/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.4.16](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.15...htsget-lambda-v0.4.16) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.4.15](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.14...htsget-lambda-v0.4.15) - 2024-05-19 ### Other diff --git a/htsget-lambda/Cargo.toml b/htsget-lambda/Cargo.toml index 156ad2b0..20218d13 100644 --- a/htsget-lambda/Cargo.toml +++ b/htsget-lambda/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-lambda" -version = "0.4.15" +version = "0.4.16" rust-version = "1.74" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -20,10 +20,10 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread"] } tower-http = { version = "0.5", features = ["cors"] } lambda_http = { version = "0.11" } lambda_runtime = { version = "0.11" } -htsget-config = { version = "0.9.0", path = "../htsget-config", default-features = false } -htsget-search = { version = "0.7.0", path = "../htsget-search", default-features = false } -htsget-http = { version = "0.4.13", path = "../htsget-http", default-features = false } -htsget-test = { version = "0.6.0", path = "../htsget-test", features = ["http"], default-features = false } +htsget-config = { version = "0.10.0", path = "../htsget-config", default-features = false } +htsget-search = { version = "0.7.1", path = "../htsget-search", default-features = false } +htsget-http = { version = "0.4.14", path = "../htsget-http", default-features = false } +htsget-test = { version = "0.6.1", path = "../htsget-test", features = ["http"], default-features = false } serde = { version = "1" } serde_json = "1" mime = "0.3" diff --git a/htsget-search/CHANGELOG.md b/htsget-search/CHANGELOG.md index 705e2879..be470d34 100644 --- a/htsget-search/CHANGELOG.md +++ b/htsget-search/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.7.1](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.7.0...htsget-search-v0.7.1) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.7.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.6...htsget-search-v0.7.0) - 2024-05-19 ### Added diff --git a/htsget-search/Cargo.toml b/htsget-search/Cargo.toml index 9693ce37..c13c1456 100644 --- a/htsget-search/Cargo.toml +++ b/htsget-search/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-search" -version = "0.7.0" +version = "0.7.1" rust-version = "1.74" authors = ["Christian Perez Llamas ", "Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -62,8 +62,8 @@ pin-project-lite = { version = "0.2", optional = true } # Error control, tracing, config thiserror = "1" -htsget-config = { version = "0.9.0", path = "../htsget-config", default-features = false } -htsget-test = { version = "0.6.0", path = "../htsget-test", features = ["http"], default-features = false } +htsget-config = { version = "0.10.0", path = "../htsget-config", default-features = false } +htsget-test = { version = "0.6.1", path = "../htsget-test", features = ["http"], default-features = false } tracing = "0.1" base64 = "0.22" serde = "1" diff --git a/htsget-test/CHANGELOG.md b/htsget-test/CHANGELOG.md index 1798d56b..365d7684 100644 --- a/htsget-test/CHANGELOG.md +++ b/htsget-test/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.1](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.6.0...htsget-test-v0.6.1) - 2024-05-22 + +### Other +- major dep updates, rustls 0.21 -> 0.23, http 0.2 -> 1, reqwest 0.11 -> 0.12, noodles 0.65 -> 0.74 + minor bumps for other crates depending on these. +- Merge branch 'main' of https://github.com/umccr/htsget-rs into mio_h2_bump + ## [0.6.0](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.4...htsget-test-v0.6.0) - 2024-05-19 ### Fixed diff --git a/htsget-test/Cargo.toml b/htsget-test/Cargo.toml index 73c2f023..e178360f 100644 --- a/htsget-test/Cargo.toml +++ b/htsget-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htsget-test" -version = "0.6.0" +version = "0.6.1" rust-version = "1.74" authors = ["Marko Malenic ", "Roman Valls Guimera "] edition = "2021" @@ -40,7 +40,7 @@ default = [] [dependencies] # Server tests dependencies -htsget-config = { version = "0.9.0", path = "../htsget-config", default-features = false, optional = true } +htsget-config = { version = "0.10.0", path = "../htsget-config", default-features = false, optional = true } noodles = { version = "0.74", optional = true, features = ["async", "bgzf", "vcf", "cram", "bcf", "bam", "fasta"] }