Skip to content

Commit 336330c

Browse files
chore: release
1 parent 4b11531 commit 336330c

File tree

16 files changed

+106
-30
lines changed

16 files changed

+106
-30
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

htsget-actix/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.1](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.12.0...htsget-actix-v0.12.1) - 2025-10-29
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [0.12.0](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.11.3...htsget-actix-v0.12.0) - 2025-10-27
1117

1218
### Added

htsget-actix/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-actix"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
rust-version = "1.86"
55
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
66
edition = "2024"
@@ -40,10 +40,10 @@ axum = { version = "0.8", features = ["http2"] }
4040
tracing-actix-web = "0.7"
4141
tracing = "0.1"
4242

43-
htsget-http = { version = "0.8.0", path = "../htsget-http", default-features = false }
44-
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
45-
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
46-
htsget-axum = { version = "0.8.0", path = "../htsget-axum", default-features = false }
43+
htsget-http = { version = "0.8.1", path = "../htsget-http", default-features = false }
44+
htsget-search = { version = "0.12.2", path = "../htsget-search", default-features = false }
45+
htsget-config = { version = "0.19.1", path = "../htsget-config", default-features = false }
46+
htsget-axum = { version = "0.8.1", path = "../htsget-axum", default-features = false }
4747

4848
[dev-dependencies]
4949
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }

htsget-axum/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.8.0...htsget-axum-v0.8.1) - 2025-10-29
11+
12+
### Added
13+
14+
- *(http)* forward error context and code with better message
15+
16+
### Fixed
17+
18+
- *(http)* authorization and authentication should be independent
19+
- *(http)* add hint should be separate to remote location search
20+
21+
### Other
22+
23+
- Merge pull request #341 from umccr/fix/test-elsa-integration
24+
- remove debug statements and revert lambda http dependency
25+
1026
## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.7.0...htsget-axum-v0.8.0) - 2025-10-27
1127

1228
### Added

htsget-axum/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-axum"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
rust-version = "1.86"
55
authors = ["Marko Malenic <[email protected]>"]
66
edition = "2024"
@@ -58,9 +58,9 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "rus
5858
thiserror = "2"
5959
tracing = "0.1"
6060

61-
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
62-
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
63-
htsget-http = { version = "0.8.0", path = "../htsget-http", default-features = false }
61+
htsget-config = { version = "0.19.1", path = "../htsget-config", default-features = false }
62+
htsget-search = { version = "0.12.2", path = "../htsget-search", default-features = false }
63+
htsget-http = { version = "0.8.1", path = "../htsget-http", default-features = false }
6464

6565
[dev-dependencies]
6666
htsget-test = { path = "../htsget-test", features = ["http"], default-features = false }

htsget-config/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.19.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.19.0...htsget-config-v0.19.1) - 2025-10-29
11+
12+
### Fixed
13+
14+
- *(http)* add hint should be separate to remote location search
15+
16+
### Other
17+
18+
- Merge pull request #341 from umccr/fix/test-elsa-integration
19+
1020
## [0.19.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.18.0...htsget-config-v0.19.0) - 2025-10-27
1121

1222
### Added

htsget-config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-config"
3-
version = "0.19.0"
3+
version = "0.19.1"
44
rust-version = "1.86"
55
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
66
edition = "2024"

htsget-http/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.8.1](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.8.0...htsget-http-v0.8.1) - 2025-10-29
11+
12+
### Added
13+
14+
- *(http)* forward a wrapped error completely
15+
- *(http)* forward error context and code with better message
16+
17+
### Fixed
18+
19+
- *(lambda)* path context dependency
20+
- *(http)* authorization and authentication should be independent
21+
- *(http)* add hint should be separate to remote location search
22+
- *(http)* debug remote locations
23+
24+
### Other
25+
26+
- Merge pull request #341 from umccr/fix/test-elsa-integration
27+
- remove unused clone
28+
- remove debug statements and revert lambda http dependency
29+
1030
## [0.8.0](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.7.4...htsget-http-v0.8.0) - 2025-10-27
1131

1232
### Added

htsget-http/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "htsget-http"
3-
version = "0.8.0"
3+
version = "0.8.1"
44
rust-version = "1.86"
55
authors = ["Daniel del Castillo de la Rosa <[email protected]>", "Marko Malenic <[email protected]>", "Roman Valls Guimera <[email protected]>"]
66
edition = "2024"
@@ -21,8 +21,8 @@ thiserror = "2"
2121
serde = { version = "1", features = ["derive"] }
2222
serde_json = "1"
2323
http = "1"
24-
htsget-search = { version = "0.12.1", path = "../htsget-search", default-features = false }
25-
htsget-config = { version = "0.19.0", path = "../htsget-config", default-features = false }
24+
htsget-search = { version = "0.12.2", path = "../htsget-search", default-features = false }
25+
htsget-config = { version = "0.19.1", path = "../htsget-config", default-features = false }
2626
futures = { version = "0.3" }
2727
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
2828
tracing = "0.1"

htsget-lambda/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.7.6](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.7.5...htsget-lambda-v0.7.6) - 2025-10-29
11+
12+
### Fixed
13+
14+
- *(lambda)* path context dependency
15+
- *(http)* authorization and authentication should be independent
16+
17+
### Other
18+
19+
- Merge pull request #341 from umccr/fix/test-elsa-integration
20+
- remove debug statements and revert lambda http dependency
21+
1022
## [0.7.5](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.7.4...htsget-lambda-v0.7.5) - 2025-09-25
1123

1224
### Added

0 commit comments

Comments
 (0)