Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.11.3...htsget-actix-v0.12.0) - 2025-10-27

### Added

- [**breaking**] use http client config before constructing it in the builder
- use config user-agent for call-outs to authorization server

## [0.11.3](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.11.2...htsget-actix-v0.11.3) - 2025-09-25

### Added
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.11.3"
version = "0.12.0"
rust-version = "1.86"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2024"
Expand Down Expand Up @@ -40,10 +40,10 @@ axum = { version = "0.8", features = ["http2"] }
tracing-actix-web = "0.7"
tracing = "0.1"

htsget-http = { version = "0.7.4", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.12.0", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-axum = { version = "0.7.0", path = "../htsget-axum", default-features = false }
htsget-http = { version = "0.8.0", path = "../htsget-http", default-features = false }
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
htsget-axum = { version = "0.8.0", path = "../htsget-axum", default-features = false }

[dev-dependencies]
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }
Expand Down
7 changes: 7 additions & 0 deletions htsget-axum/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ 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-axum-v0.7.0...htsget-axum-v0.8.0) - 2025-10-27

### Added

- [**breaking**] use http client config before constructing it in the builder
- use config user-agent for call-outs to authorization server

## [0.7.0](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.6.2...htsget-axum-v0.7.0) - 2025-09-25

### Added
Expand Down
8 changes: 4 additions & 4 deletions htsget-axum/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-axum"
version = "0.7.0"
version = "0.8.0"
rust-version = "1.86"
authors = ["Marko Malenic <[email protected]>"]
edition = "2024"
Expand Down Expand Up @@ -58,9 +58,9 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "rus
thiserror = "2"
tracing = "0.1"

htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.12.0", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.7.4", path = "../htsget-http", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
htsget-http = { version = "0.8.0", path = "../htsget-http", default-features = false }

[dev-dependencies]
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }
Expand Down
22 changes: 22 additions & 0 deletions htsget-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.19.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.18.0...htsget-config-v0.19.0) - 2025-10-27

### Added

- *(http)* implement the forward id logic
- *(config)* add an option to forward the id of the path segment
- *(http)* implement forward extension type logic
- *(config)* add forward endpoint type option
- *(config)* add backend as alias
- [**breaking**] use http client config before constructing it in the builder
- *(config)* [**breaking**] add user agent option for http clients and add alias for location in response

### Fixed

- *(config)* set package info in all locations including sub-properties of ticket server

### Other

- *(config)* fix mention of authorization locations
- *(config)* clarify docs and function names
- *(config)* fix test case

## [0.18.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.17.0...htsget-config-v0.18.0) - 2025-09-25

### Added
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.18.0"
version = "0.19.0"
rust-version = "1.86"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2024"
Expand Down
10 changes: 10 additions & 0 deletions htsget-http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ 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-http-v0.7.4...htsget-http-v0.8.0) - 2025-10-27

### Added

- *(http)* implement the forward id logic
- *(http)* implement forward extension type logic
- [**breaking**] use http client config before constructing it in the builder
- use config user-agent for call-outs to authorization server
- *(config)* [**breaking**] add user agent option for http clients and add alias for location in response

## [0.7.4](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.7.3...htsget-http-v0.7.4) - 2025-09-25

### Added
Expand Down
6 changes: 3 additions & 3 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.7.4"
version = "0.8.0"
rust-version = "1.86"
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2024"
Expand All @@ -21,8 +21,8 @@ thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
http = "1"
htsget-search = { version = "0.12.0", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
futures = { version = "0.3" }
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
tracing = "0.1"
Expand Down
6 changes: 3 additions & 3 deletions htsget-lambda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ tracing = "0.1"
futures = "0.3"
serde_json = "1"

htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-http = { version = "0.7.4", path = "../htsget-http", default-features = false }
htsget-axum = { version = "0.7.0", path = "../htsget-axum", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
htsget-http = { version = "0.8.0", path = "../htsget-http", default-features = false }
htsget-axum = { version = "0.8.0", path = "../htsget-axum", default-features = false }
6 changes: 6 additions & 0 deletions htsget-search/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.12.1](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.12.0...htsget-search-v0.12.1) - 2025-10-27

### Added

- use config user-agent for call-outs to authorization server

## [0.12.0](https://github.com/umccr/htsget-rs/compare/htsget-search-v0.11.4...htsget-search-v0.12.0) - 2025-09-25

### Added
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.12.0"
version = "0.12.1"
rust-version = "1.86"
authors = ["Christian Perez Llamas <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
edition = "2024"
Expand Down Expand Up @@ -43,8 +43,8 @@ noodles = { version = "0.100", features = ["async", "core", "bgzf", "bam", "bcf"
http = "1"
tracing = "0.1"

htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-storage = { version = "0.5.0", path = "../htsget-storage", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
htsget-storage = { version = "0.5.1", path = "../htsget-storage", default-features = false }

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

## [Unreleased]

## [0.5.1](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.5.0...htsget-storage-v0.5.1) - 2025-10-27

### Added

- use config user-agent for call-outs to authorization server

## [0.5.0](https://github.com/umccr/htsget-rs/compare/htsget-storage-v0.4.4...htsget-storage-v0.5.0) - 2025-09-25

### Added
Expand Down
4 changes: 2 additions & 2 deletions htsget-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "htsget-storage"
version = "0.5.0"
version = "0.5.1"
rust-version = "1.86"
authors = ["Marko Malenic <[email protected]>"]
edition = "2024"
Expand Down Expand Up @@ -60,7 +60,7 @@ thiserror = "2"
tracing = "0.1"
base64 = "0.22"

htsget-config = { version = "0.18.0", path = "../htsget-config", default-features = false }
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }

[dev-dependencies]
tower-http = { version = "0.6", features = ["fs"] }
Expand Down
2 changes: 1 addition & 1 deletion htsget-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ default = []

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

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

Expand Down