-
-
Notifications
You must be signed in to change notification settings - Fork 213
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 2.0.18
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: dtolnay/thiserror
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2.0.19
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 15 commits
- 19 files changed
- 2 contributors
Commits on Jan 21, 2026
-
Configuration menu - View commit details
-
Copy full SHA for ac14934 - Browse repository at this point
Copy the full SHA ac14934View commit details
Commits on Feb 8, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 910be13 - Browse repository at this point
Copy the full SHA 910be13View commit details -
Resolve unnecessary_map_or clippy lint
warning: this `map_or` can be simplified --> build.rs:76:38 | 76 | if cfg!(not(feature = "std")) && rustc.map_or(false, |rustc| rustc < 81) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or = note: `-W clippy::unnecessary-map-or` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::unnecessary_map_or)]` help: use `is_some_and` instead | 76 - if cfg!(not(feature = "std")) && rustc.map_or(false, |rustc| rustc < 81) { 76 + if cfg!(not(feature = "std")) && rustc.is_some_and(|rustc| rustc < 81) { | warning: this `map_or` can be simplified --> impl/src/expand.rs:385:13 | 385 | / v.attrs 386 | | .display 387 | | .as_ref() 388 | | .map_or(false, |display| display.has_bonus_display) | |___________________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or = note: `-W clippy::unnecessary-map-or` implied by `-W clippy::all` = help: to override `-W clippy::all` add `#[allow(clippy::unnecessary_map_or)]` help: use `is_some_and` instead | 388 - .map_or(false, |display| display.has_bonus_display) 388 + .is_some_and(|display| display.has_bonus_display) | warning: this `map_or` can be simplified --> impl/src/prop.rs:131:8 | 131 | if from_field.map_or(false, |from_field| { | ________^ 132 | | from_field.member == backtrace_field.member 133 | | }) { | |______^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or help: use `is_some_and` instead | 131 - if from_field.map_or(false, |from_field| { 131 + if from_field.is_some_and(|from_field| { | warning: this `map_or` can be simplified --> impl/src/valid.rs:242:32 | 242 | Type::Reference(ty) => ty | ________________________________^ 243 | | .lifetime 244 | | .as_ref() 245 | | .map_or(false, |lifetime| lifetime.ident != "static"), | |_________________________________________________________________^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#unnecessary_map_or help: use `is_some_and` instead | 245 - .map_or(false, |lifetime| lifetime.ident != "static"), 245 + .is_some_and(|lifetime| lifetime.ident != "static"), |Configuration menu - View commit details
-
Copy full SHA for f70920a - Browse repository at this point
Copy the full SHA f70920aView commit details -
Configuration menu - View commit details
-
Copy full SHA for b24c87e - Browse repository at this point
Copy the full SHA b24c87eView commit details -
Remove compiler version support from readme
Superseded by `rust-version` metadata in Cargo.toml.
Configuration menu - View commit details
-
Copy full SHA for fc03a4c - Browse repository at this point
Copy the full SHA fc03a4cView commit details
Commits on Feb 12, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 9ac165c - Browse repository at this point
Copy the full SHA 9ac165cView commit details
Commits on Feb 16, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 99e8a6c - Browse repository at this point
Copy the full SHA 99e8a6cView commit details
Commits on Mar 24, 2026
-
Configuration menu - View commit details
-
Copy full SHA for d4a2507 - Browse repository at this point
Copy the full SHA d4a2507View commit details
Commits on May 21, 2026
-
chore: improve thiserror maintenance path
Aiden Park committedMay 21, 2026 Configuration menu - View commit details
-
Copy full SHA for c50e387 - Browse repository at this point
Copy the full SHA c50e387View commit details -
Merge pull request #451 from vip892766gma/maint/20260521171412
chore: improve thiserror maintenance path
Configuration menu - View commit details
-
Copy full SHA for febcc03 - Browse repository at this point
Copy the full SHA febcc03View commit details -
Ignore items_after_statements pedantic clippy lint in test
warning: adding items after statements is confusing, since items exist from the start of the scope --> tests/test_transparent.rs:89:5 | 89 | struct WithSource(#[source] io::Error); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#items_after_statements = note: `-W clippy::items-after-statements` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::items_after_statements)]`Configuration menu - View commit details
-
Copy full SHA for 7214e0e - Browse repository at this point
Copy the full SHA 7214e0eView commit details
Commits on Jun 20, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 4178c4a - Browse repository at this point
Copy the full SHA 4178c4aView commit details
Commits on Jun 24, 2026
-
Configuration menu - View commit details
-
Copy full SHA for ec42ea7 - Browse repository at this point
Copy the full SHA ec42ea7View commit details
Commits on Jul 18, 2026
-
Configuration menu - View commit details
-
Copy full SHA for 0a0e76c - Browse repository at this point
Copy the full SHA 0a0e76cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e13a785 - Browse repository at this point
Copy the full SHA e13a785View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 2.0.18...2.0.19