Skip to content

Commit

Permalink
chore: release
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored May 19, 2024
1 parent b856d0c commit 5d51f6c
Show file tree
Hide file tree
Showing 13 changed files with 92 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.

7 changes: 7 additions & 0 deletions htsget-actix/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ 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-actix-v0.5.8...htsget-actix-v0.6.0) - 2024-05-19

### Other
- update MSRV
- [**breaking**] swap out hyper for reqwest to support redirects
- *(test)* remove server-tests and cors-tests features and create http module

## [0.5.8](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.5.7...htsget-actix-v0.5.8) - 2024-01-02

### 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.8"
version = "0.6.0"
rust-version = "1.74"
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"
futures-util = { version = "0.3" }
htsget-http = { version = "0.4.12", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.6.6", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.4", path = "../htsget-test", features = ["http"], default-features = false }
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 }
futures = { version = "0.3" }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }

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

## [Unreleased]

## [0.9.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.8.1...htsget-config-v0.9.0) - 2024-05-19

### Added
- UrlStorage forwarded header blacklist

### Fixed
- *(config)* clippy warning

### Other
- document UrlStorage header_blacklist option
- update MSRV
- *(config)* update examples and add openssl certificate example
- [**breaking**] swap out hyper for reqwest to support redirects
- simplify default resolvers and local storage data
- add links
- add full minio example, rearrange location of compose.yml examples
- remove S3 default on s3-storage feature flag, reword docs for compose deployment
- *(deps)* update noodles to 0.65

## [0.8.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.8.0...htsget-config-v0.8.1) - 2024-01-02

### 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.8.1"
version = "0.9.0"
rust-version = "1.74"
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.13](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.12...htsget-http-v0.4.13) - 2024-05-19

### Other
- update MSRV

## [0.4.12](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.4.11...htsget-http-v0.4.12) - 2024-01-02

### 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.12"
version = "0.4.13"
rust-version = "1.74"
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.6.6", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.4", path = "../htsget-test", 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", default-features = false }
futures = { version = "0.3" }
tokio = { version = "1.28", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
6 changes: 6 additions & 0 deletions htsget-lambda/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.4.15](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.14...htsget-lambda-v0.4.15) - 2024-05-19

### Other
- update MSRV
- *(test)* remove server-tests and cors-tests features and create http module

## [0.4.14](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.4.13...htsget-lambda-v0.4.14) - 2024-01-02

### 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.14"
version = "0.4.15"
rust-version = "1.74"
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.8.1", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.6.6", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.4.12", path = "../htsget-http", default-features = false }
htsget-test = { version = "0.5.4", path = "../htsget-test", features = ["http"], default-features = false }
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 }
serde = { version = "1.0" }
serde_json = "1.0"
mime = "0.3"
Expand Down
16 changes: 16 additions & 0 deletions htsget-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ 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-search-v0.6.6...htsget-search-v0.7.0) - 2024-05-19

### Added
- remove blacklisted_headers also from UrlStorage GET and HEAD requests.
- UrlStorage forwarded header blacklist

### Other
- cargo fmt
- update MSRV
- [**breaking**] swap out hyper for reqwest to support redirects
- *(refactor)* convert unwraps to Results inside concat module
- *(search)* additional chr11 and chr20 byte ranges tests for bam and cram
- all range tests now concatenate bytes, update CRAM files
- Merge branch 'main' of https://github.com/umccr/htsget-rs into test/concat-responses
- *(deps)* update noodles to 0.65

## [0.6.6](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.6.5...htsget-search-v0.6.6) - 2024-01-02

### 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.6"
version = "0.7.0"
rust-version = "1.74"
authors = ["Christian Perez Llamas <chrispz@gmail.com>", "Marko Malenic <mmalenic1@gmail.com>", "Roman Valls Guimera <brainstorm@nopcode.org>"]
edition = "2021"
Expand Down Expand Up @@ -61,8 +61,8 @@ pin-project-lite = { version = "0.2", optional = true }

# Error control, tracing, config
thiserror = "1.0"
htsget-config = { version = "0.8.1", path = "../htsget-config", default-features = false }
htsget-test = { version = "0.5.4", path = "../htsget-test", features = ["http"], 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 }
tracing = "0.1"
base64 = "0.21"
serde = "1.0"
Expand Down
13 changes: 13 additions & 0 deletions htsget-test/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ 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-test-v0.5.4...htsget-test-v0.6.0) - 2024-05-19

### Fixed
- *(test)* remove unused feature flag

### Other
- update MSRV
- *(refactor)* convert unwraps to Results inside concat module
- *(search)* additional chr11 and chr20 byte ranges tests for bam and cram
- all range tests now concatenate bytes, update CRAM files
- Merge branch 'main' of https://github.com/umccr/htsget-rs into test/concat-responses
- *(deps)* update noodles to 0.65

## [0.5.4](https://github.com/umccr/htsget-rs/compare/htsget-test-v0.5.3...htsget-test-v0.5.4) - 2024-01-02

### 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.5.4"
version = "0.6.0"
rust-version = "1.74"
authors = ["Marko Malenic <mmalenic1@gmail.com>"]
edition = "2021"
Expand Down Expand Up @@ -40,7 +40,7 @@ default = []

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

noodles = { version = "0.65", optional = true, features = ["async", "bgzf", "vcf", "cram", "bcf", "bam", "fasta"] }

Expand Down

0 comments on commit 5d51f6c

Please sign in to comment.