Skip to content
Permalink

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
Choose a base ref
...
head repository: serde-rs/json
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.90
Choose a head ref
  • 7 commits
  • 7 files changed
  • 1 contributor

Commits on Nov 23, 2022

  1. 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),
             |
    dtolnay committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    9295c96 View commit details
    Browse the repository at this point in the history
  2. 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`
    dtolnay committed Nov 23, 2022
    Configuration menu
    Copy the full SHA
    ecad462 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2022

  1. 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.
    dtolnay committed Nov 26, 2022
    Configuration menu
    Copy the full SHA
    0b54871 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2022

  1. Configuration menu
    Copy the full SHA
    8794844 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2022

  1. Update build status badge

    dtolnay committed Dec 16, 2022
    Configuration menu
    Copy the full SHA
    0a43394 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    8753829 View commit details
    Browse the repository at this point in the history

Commits on Dec 17, 2022

  1. Release 1.0.90

    dtolnay committed Dec 17, 2022
    Configuration menu
    Copy the full SHA
    331511d View commit details
    Browse the repository at this point in the history
Loading