Skip to content

Commit

Permalink
Merge pull request #193 from umccr/release-plz/2023-07-11T05-20-42Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
mmalenic committed Jul 11, 2023
2 parents 5ca33fc + 6a2c3b6 commit bebe875
Show file tree
Hide file tree
Showing 13 changed files with 82 additions and 26 deletions.
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions htsget-actix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.4.5...htsget-actix-v0.5.0) - 2023-07-11

### Added
- [**breaking**] implement client tls config
- [**breaking**] add server config to certificate key pair

## [0.4.5](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.4.4...htsget-actix-v0.4.5) - 2023-06-25

### Other
Expand Down
10 changes: 5 additions & 5 deletions htsget-actix/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-actix"
version = "0.4.5"
version = "0.5.0"
rust-version = "1.65"
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand All @@ -23,10 +23,10 @@ rustls-pemfile = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures-util = { version = "0.3" }
htsget-http = { version = "0.4.5", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.5.3", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.6.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.4.4", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
htsget-http = { version = "0.4.6", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.6.0", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.7.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.0", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
futures = { version = "0.3" }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }

Expand Down
20 changes: 20 additions & 0 deletions htsget-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.7.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.6.2...htsget-config-v0.7.0) - 2023-07-11

### Added
- move hyper client construction to config and copy it to url storage
- *(config)* [**breaking**] unflatten tls config making it common across all structs that use it
- [**breaking**] implement client tls config
- [**breaking**] add server config to certificate key pair
- [**breaking**] add stronger types for certificate key pairs
- introduce cert and key parsing into config

### Fixed
- add hyper-rustls for all features

### Other
- *(config)* update docs for combined TLS config
- *(config)* add tls client config test
- *(config)* fix tests with new server config structs
- *(config)* use parsed certificates and keys directly in tests
- update for http client config

## [0.6.2](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.6.1...htsget-config-v0.6.2) - 2023-06-20

### Other
Expand Down
2 changes: 1 addition & 1 deletion htsget-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-config"
version = "0.6.2"
version = "0.7.0"
rust-version = "1.64"
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand Down
5 changes: 5 additions & 0 deletions htsget-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.6](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.5...htsget-http-v0.4.6) - 2023-07-11

### Other
- updated the following local packages: htsget-config, htsget-search, htsget-test

## [0.4.5](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.4...htsget-http-v0.4.5) - 2023-06-25

### Other
Expand Down
8 changes: 4 additions & 4 deletions htsget-http/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-http"
version = "0.4.5"
version = "0.4.6"
rust-version = "1.65"
authors = ["Daniel del Castillo de la Rosa <delcastillodelarosadaniel@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand All @@ -19,9 +19,9 @@ default = []
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
http = "0.2"
htsget-search = { version = "0.5.3", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.6.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.4.4", path = "../htsget-test", default-features = false }
htsget-search = { version = "0.6.0", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.7.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.0", path = "../htsget-test", default-features = false }
futures = { version = "0.3" }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
5 changes: 5 additions & 0 deletions htsget-lambda/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.6](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.5...htsget-lambda-v0.4.6) - 2023-07-11

### Other
- update dependencies

## [0.4.5](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.4...htsget-lambda-v0.4.5) - 2023-06-25

### Other
Expand Down
10 changes: 5 additions & 5 deletions htsget-lambda/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-lambda"
version = "0.4.5"
version = "0.4.6"
rust-version = "1.65"
authors = ["Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand All @@ -20,10 +20,10 @@ tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
tower-http = { version = "0.4", features = ["cors"] }
lambda_http = { version = "0.8" }
lambda_runtime = { version = "0.8" }
htsget-config = { version = "0.6.2", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.5.3", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.5", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.4.4", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
htsget-config = { version = "0.7.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.6.0", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.6", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.5.0", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
serde = { version = "1.0" }
serde_json = "1.0"
mime = "0.3"
Expand Down
12 changes: 12 additions & 0 deletions htsget-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.6.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.5.3...htsget-search-v0.6.0) - 2023-07-11

### Added
- move hyper client construction to config and copy it to url storage
- [**breaking**] implement client tls config
- [**breaking**] add server config to certificate key pair
- [**breaking**] add stronger types for certificate key pairs
- introduce cert and key parsing into config

### Other
- Merge branch 'main' of https://github.com/umccr/htsget-rs into fix/http1

## [0.5.3](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.5.2...htsget-search-v0.5.3) - 2023-06-25

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions htsget-search/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-search"
version = "0.5.3"
version = "0.6.0"
rust-version = "1.65"
authors = ["Christian Perez Llamas <chrispz@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down Expand Up @@ -46,8 +46,8 @@ hyper-rustls = { version = "0.23", features = ["rustls-native-certs", "http2", "

# Error control, tracing, config
thiserror = "1.0"
htsget-config = { version = "0.6.2", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.4.4", path = "../htsget-test", features = ["cors-tests"], default-features = false }
htsget-config = { version = "0.7.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.0", path = "../htsget-test", features = ["cors-tests"], default-features = false }
tracing = "0.1"
base64 = "0.21"
serde = "1.0"
Expand Down
8 changes: 8 additions & 0 deletions htsget-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.0](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.4.4...htsget-test-v0.5.0) - 2023-07-11

### Added
- [**breaking**] implement client tls config
- [**breaking**] add server config to certificate key pair
- [**breaking**] add stronger types for certificate key pairs
- introduce cert and key parsing into config

## [0.4.4](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.4.3...htsget-test-v0.4.4) - 2023-06-20

### Other
Expand Down
4 changes: 2 additions & 2 deletions htsget-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-test"
version = "0.4.4"
version = "0.5.0"
rust-version = "1.65"
authors = ["Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand Down Expand Up @@ -34,7 +34,7 @@ default = []

[dependencies]
# Server tests dependencies
htsget-config = { version = "0.6.2", path = "../htsget-config", default-features = false, optional = true }
htsget-config = { version = "0.7.0", path = "../htsget-config", default-features = false, optional = true }

noodles = { version = "0.42", optional = true, features = ["async", "bgzf", "vcf"] }

Expand Down

0 comments on commit bebe875

Please sign in to comment.