Skip to content

Commit 176375f

Browse files
chore: release
1 parent 64aa70f commit 176375f

File tree

16 files changed

+93
-30
lines changed

16 files changed

+93
-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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.2](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.11.1...htsget-actix-v0.11.2) - 2025-09-03
11+
12+
### Added
13+
14+
- add auth logic to post requests and always allow headers to succeed
15+
- add suppressed errors options to axum and actix ticket servers
16+
1017
## [0.11.1](https://github.com/umccr/htsget-rs/compare/htsget-actix-v0.11.0...htsget-actix-v0.11.1) - 2025-08-21
1118

1219
### Other

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.11.1"
3+
version = "0.11.2"
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.7.2", path = "../htsget-http", default-features = false }
44-
htsget-search = { version = "0.11.3", path = "../htsget-search", default-features = false }
45-
htsget-config = { version = "0.16.1", path = "../htsget-config", default-features = false }
46-
htsget-axum = { version = "0.6.1", path = "../htsget-axum", default-features = false }
43+
htsget-http = { version = "0.7.3", path = "../htsget-http", default-features = false }
44+
htsget-search = { version = "0.11.4", path = "../htsget-search", default-features = false }
45+
htsget-config = { version = "0.17.0", path = "../htsget-config", default-features = false }
46+
htsget-axum = { version = "0.6.2", 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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.6.2](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.6.1...htsget-axum-v0.6.2) - 2025-09-03
11+
12+
### Added
13+
14+
- add auth logic to post requests and always allow headers to succeed
15+
- add suppressed errors options to axum and actix ticket servers
16+
17+
### Fixed
18+
19+
- cors layer should run before auth to handle OPTIONS requests without authentication
20+
21+
### Other
22+
23+
- add more robust start/end range tests and document suppressed errors with diagrams.
24+
1025
## [0.6.1](https://github.com/umccr/htsget-rs/compare/htsget-axum-v0.6.0...htsget-axum-v0.6.1) - 2025-08-21
1126

1227
### Other

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.6.1"
3+
version = "0.6.2"
44
rust-version = "1.86"
55
authors = ["Marko Malenic <[email protected]>"]
66
edition = "2024"
@@ -57,9 +57,9 @@ reqwest = { version = "0.12", default-features = false, features = ["json", "rus
5757
thiserror = "2"
5858
tracing = "0.1"
5959

60-
htsget-config = { version = "0.16.1", path = "../htsget-config", default-features = false }
61-
htsget-search = { version = "0.11.3", path = "../htsget-search", default-features = false }
62-
htsget-http = { version = "0.7.2", path = "../htsget-http", default-features = false }
60+
htsget-config = { version = "0.17.0", path = "../htsget-config", default-features = false }
61+
htsget-search = { version = "0.11.4", path = "../htsget-search", default-features = false }
62+
htsget-http = { version = "0.7.3", path = "../htsget-http", default-features = false }
6363

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

htsget-config/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.17.0](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.16.1...htsget-config-v0.17.0) - 2025-09-03
11+
12+
### Added
13+
14+
- add auth logic to post requests and always allow headers to succeed
15+
- *(config)* add suppress errors and add hint options for config
16+
17+
### Other
18+
19+
- add more robust start/end range tests and document suppressed errors with diagrams.
20+
1021
## [0.16.1](https://github.com/umccr/htsget-rs/compare/htsget-config-v0.16.0...htsget-config-v0.16.1) - 2025-08-21
1122

1223
### Fixed

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.16.1"
3+
version = "0.17.0"
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: 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.3](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.7.2...htsget-http-v0.7.3) - 2025-09-03
11+
12+
### Added
13+
14+
- add auth logic to post requests and always allow headers to succeed
15+
- *(http)* implement suppressing errors in http middleware and get/post routes
16+
17+
### Other
18+
19+
- add more robust start/end range tests and document suppressed errors with diagrams.
20+
- add header query authorization test
21+
1022
## [0.7.2](https://github.com/umccr/htsget-rs/compare/htsget-http-v0.7.1...htsget-http-v0.7.2) - 2025-08-21
1123

1224
### Other

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.7.2"
3+
version = "0.7.3"
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.11.3", path = "../htsget-search", default-features = false }
25-
htsget-config = { version = "0.16.1", path = "../htsget-config", default-features = false }
24+
htsget-search = { version = "0.11.4", path = "../htsget-search", default-features = false }
25+
htsget-config = { version = "0.17.0", 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: 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.7.4](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.7.3...htsget-lambda-v0.7.4) - 2025-09-03
11+
12+
### Other
13+
14+
- update Cargo.lock dependencies
15+
1016
## [0.7.3](https://github.com/umccr/htsget-rs/compare/htsget-lambda-v0.7.2...htsget-lambda-v0.7.3) - 2025-08-21
1117

1218
### Other

0 commit comments

Comments
 (0)