Skip to content

Commit

Permalink
chore(abs): clear query pairs [#257]
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Jan 30, 2025
1 parent ad763dc commit 9329453
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 12 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.

2 changes: 1 addition & 1 deletion spider/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider"
version = "2.27.25"
version = "2.27.27"
authors = [
"j-mendez <jeff@spider.cloud>"
]
Expand Down
1 change: 1 addition & 0 deletions spider/src/utils/abs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ pub(crate) fn parse_absolute_url(url: &str) -> Option<Box<Url>> {
match url::Url::parse(url) {
Ok(mut u) => {
convert_abs_url(&mut u);
u.set_query(None);
Some(Box::new(u))
}
_ => None,
Expand Down
2 changes: 1 addition & 1 deletion spider_chrome/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_chrome"
version = "2.27.25"
version = "2.27.27"
rust-version = "1.70"
authors = [
"j-mendez <jeff@spider.cloud>"
Expand Down
2 changes: 1 addition & 1 deletion spider_cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_cli"
version = "2.27.25"
version = "2.27.27"
authors = [
"j-mendez <jeff@spider.cloud>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_transformations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_transformations"
version = "2.27.25"
version = "2.27.27"
authors = [
"j-mendez <jeff@spider.cloud>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_utils"
version = "2.27.25"
version = "2.27.27"
authors = [
"j-mendez <jeff@spider.cloud>"
]
Expand Down
2 changes: 1 addition & 1 deletion spider_worker/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spider_worker"
version = "2.27.25"
version = "2.27.27"
authors = [
"j-mendez <jeff@spider.cloud>"
]
Expand Down

0 comments on commit 9329453

Please sign in to comment.