Skip to content

Commit a473f41

Browse files
committed
cargo fmt && cargo clippy + prep for 0.4.113 release
1 parent ad9520a commit a473f41

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# `fastn` Change Log
22

3+
## 17 September 2025
4+
5+
### fastn: 0.4.113
6+
7+
- fix: Do not override query params of http processor's target url. PR #2209.
8+
39
## 20 August 2025
410

511
### fastn: 0.4.112

fastn-core/src/library2022/processor/http.rs

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -112,17 +112,14 @@ pub async fn process(
112112
req_config.config.package.clone()
113113
};
114114

115-
let (mut url, mountpoint, mut conf) = {
116-
let (mut url, mountpoint, conf) =
117-
fastn_core::config::utils::get_clean_url(&package, req_config, url.as_str())
118-
.await
119-
.map_err(|e| ftd::interpreter::Error::ParseError {
120-
message: format!("invalid url: {e:?}"),
121-
doc_id: doc.name.to_string(),
122-
line_number,
123-
})?;
124-
(url, mountpoint, conf)
125-
};
115+
let (mut url, mountpoint, mut conf) =
116+
fastn_core::config::utils::get_clean_url(&package, req_config, url.as_str())
117+
.await
118+
.map_err(|e| ftd::interpreter::Error::ParseError {
119+
message: format!("invalid url: {e:?}"),
120+
doc_id: doc.name.to_string(),
121+
line_number,
122+
})?;
126123

127124
tracing::info!(?url);
128125

fastn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fastn"
3-
version = "0.4.112"
3+
version = "0.4.113"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

0 commit comments

Comments
 (0)