Skip to content

Commit

Permalink
Merge pull request #213 from umccr/release-plz-2023-11-01T08-45-44Z
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
brainstorm authored Nov 2, 2023
2 parents e54e08a + f3d9c7b commit 1821070
Show file tree
Hide file tree
Showing 13 changed files with 67 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.

5 changes: 5 additions & 0 deletions htsget-actix/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.5.7](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.6...htsget-actix-v0.5.7) - 2023-11-02

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

## [0.5.6](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.5...htsget-actix-v0.5.6) - 2023-10-30

### 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.5.6"
version = "0.5.7"
rust-version = "1.70"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>"]
edition = "2021"
Expand All @@ -23,10 +23,10 @@ rustls-pemfile = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1"
futures-util = { version = "0.3" }
htsget-http = { version = "0.4.10", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.6.4", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.7.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.2", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
htsget-http = { version = "0.4.11", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.6.5", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.3", 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
9 changes: 9 additions & 0 deletions htsget-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.7.1...htsget-config-v0.8.0) - 2023-11-02

### Added
- *(search)* remove response scheme because response url can specify it
- *(config)* add response url to config

### Fixed
- *(s3)* properly handle first capture group bucket and add warnings for s3 errors

## [0.7.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.7.0...htsget-config-v0.7.1) - 2023-09-06

### 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.7.1"
version = "0.8.0"
rust-version = "1.70"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>"]
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.11](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.10...htsget-http-v0.4.11) - 2023-11-02

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

## [0.4.10](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.9...htsget-http-v0.4.10) - 2023-10-30

### 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.10"
version = "0.4.11"
rust-version = "1.70"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>"]
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.6.4", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.7.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.2", path = "../htsget-test", default-features = false }
htsget-search = { version = "0.6.5", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.3", 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.13](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.12...htsget-lambda-v0.4.13) - 2023-11-02

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

## [0.4.12](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.11...htsget-lambda-v0.4.12) - 2023-10-30

### 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.12"
version = "0.4.13"
rust-version = "1.70"
authors = ["Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
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.7.1", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.6.4", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.10", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.5.2", path = "../htsget-test", features = ["server-tests", "cors-tests"], default-features = false }
htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.6.5", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.11", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.5.3", 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.5](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.4...htsget-search-v0.6.5) - 2023-11-02

### Added
- *(search)* remove response scheme because response url can specify it
- *(search)* add response url option to url storage

### Fixed
- *(s3)* properly handle first capture group bucket and add warnings for s3 errors

### Other
- Merge pull request [#216](https://github.com/umccr/htsget-rs/pull/216) from umccr/feat/response_url

## [0.6.4](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.3...htsget-search-v0.6.4) - 2023-10-30

### Other
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.6.4"
version = "0.6.5"
rust-version = "1.65"
authors = ["Christian Perez Llamas <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2021"
Expand Down Expand Up @@ -59,8 +59,8 @@ hyper-rustls = { version = "0.24", features = ["rustls-native-certs", "http2", "

# Error control, tracing, config
thiserror = "1.0"
htsget-config = { version = "0.7.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.2", path = "../htsget-test", features = ["cors-tests"], default-features = false }
htsget-config = { version = "0.8.0", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.3", path = "../htsget-test", features = ["cors-tests"], default-features = false }
tracing = "0.1"
base64 = "0.21"
serde = "1.0"
Expand Down
5 changes: 5 additions & 0 deletions htsget-test/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.5.3](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.2...htsget-test-v0.5.3) - 2023-11-02

### Other
- updated the following local packages: htsget-config

## [0.5.2](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.1...htsget-test-v0.5.2) - 2023-09-06

### Fixed
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.5.2"
version = "0.5.3"
rust-version = "1.67"
authors = ["Marko Malenic <[email protected]>"]
edition = "2021"
Expand Down Expand Up @@ -45,7 +45,7 @@ default = []

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

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

Expand Down

0 comments on commit 1821070

Please sign in to comment.