-
Notifications
You must be signed in to change notification settings - Fork 640
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: serde-rs/json
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.89
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: serde-rs/json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.90
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 7 commits
- 7 files changed
- 1 contributor
Commits on Nov 23, 2022
-
Resolve needless_borrowed_reference clippy lints
error: dereferencing a tuple pattern where every element takes a reference --> src/value/de.rs:997:18 | 997 | Some(&Value::Array(ref v)) => { | ^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference = note: `-D clippy::needless-borrowed-reference` implied by `-D clippy::all` help: try removing the `&` and `ref` parts | 997 - Some(&Value::Array(ref v)) => { 997 + Some(Value::Array(v)) => { | error: dereferencing a tuple pattern where every element takes a reference --> src/value/de.rs:1024:18 | 1024 | Some(&Value::Object(ref v)) => visit_object_ref(v, visitor), | ^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_borrowed_reference help: try removing the `&` and `ref` parts | 1024 - Some(&Value::Object(ref v)) => visit_object_ref(v, visitor), 1024 + Some(Value::Object(v)) => visit_object_ref(v, visitor), |Configuration menu - View commit details
-
Copy full SHA for 9295c96 - Browse repository at this point
Copy the full SHA 9295c96View commit details -
Fix renamed let_underscore_drop lint
error: lint `clippy::let_underscore_drop` has been renamed to `let_underscore_drop` --> tests/test.rs:9:5 | 9 | clippy::let_underscore_drop, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^ help: use the new name: `let_underscore_drop` | = note: `-D renamed-and-removed-lints` implied by `-D warnings`Configuration menu - View commit details
-
Copy full SHA for ecad462 - Browse repository at this point
Copy the full SHA ecad462View commit details
Commits on Nov 26, 2022
-
Time out workflows after 45 minutes
GitHub's default timeout is 6 hours. Recently some of my GitHub Actions jobs have started randomly stalling for that long, which is inconvenient because it ties up a chunk of my runner quota. It apepars to be very rare for a job to recover after stalling. It's better to time out quicker and retry on a different runner.
Configuration menu - View commit details
-
Copy full SHA for 0b54871 - Browse repository at this point
Copy the full SHA 0b54871View commit details
Commits on Dec 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 8794844 - Browse repository at this point
Copy the full SHA 8794844View commit details
Commits on Dec 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 0a43394 - Browse repository at this point
Copy the full SHA 0a43394View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8753829 - Browse repository at this point
Copy the full SHA 8753829View commit details
Commits on Dec 17, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 331511d - Browse repository at this point
Copy the full SHA 331511dView 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 v1.0.89...v1.0.90