Skip to content

Commit

Permalink
Update ureq, fixing broken redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
jyn514 committed Dec 6, 2020
1 parent cf04292 commit d95151f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 15 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,11 @@
#### Fixed

* Fragment errors are now shortened to use the directory being checked as the base, the same as normal 'file not found errors'. [PR#127]
* 307 and 308 redirects are now followed. Previously, they would erroneously be reported as an error. [PR#129]

[PR#118]: https://github.com/deadlinks/cargo-deadlinks/pull/118
[PR#127]: https://github.com/deadlinks/cargo-deadlinks/pull/127
[PR#129]: https://github.com/deadlinks/cargo-deadlinks/pull/129

<a name="0.6.2"></a>
## 0.6.2 (2020-11-27)
Expand Down
22 changes: 8 additions & 14 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ num_cpus = "1.8"
once_cell = "1.5.1"
rayon = "1.0"
regex = { version = "1", default-features = false, features = ["std", "perf"] }
ureq = { version = "1.5.2", features = ["tls"], default-features = false }
ureq = { version = "1.5.4", features = ["tls"], default-features = false }
serde = "1.0"
serde_derive = "1.0"
url = "2"
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//! <https://tinyurl.com/rnxcavf>
use std::{
fmt,
path::{Path, PathBuf},
Expand Down
2 changes: 2 additions & 0 deletions tests/working_http_check/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
/// Foo function
///
/// Has something to do with [some website](http://example.com).
///
/// Should also follow 308 redirects: <https://tinyurl.com/rnxcavf>
pub fn foo() {}

/// Bar function
Expand Down

0 comments on commit d95151f

Please sign in to comment.