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.72
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.73
Choose a head ref
  • 11 commits
  • 8 files changed
  • 1 contributor

Commits on Nov 25, 2021

  1. Configuration menu
    Copy the full SHA
    4a0924c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #831 from serde-rs/from_u32

    Skip error codepath on hex escape outside the surrogate range
    dtolnay authored Nov 25, 2021
    Configuration menu
    Copy the full SHA
    fc0ca07 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2021

  1. Ignore needless_late_init Clippy lint

        error: unneeded late initalization
           --> tests/../src/lexical/float.rs:173:9
            |
        173 |         let exp: u64;
            |         ^^^^^^^^^^^^^
            |
            = note: `-D clippy::needless-late-init` implied by `-D clippy::all`
            = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_late_init
        help: declare `exp` here
            |
        174 |         let exp: u64 = if (fp.exp == F::DENORMAL_EXPONENT) && (fp.mant & F::HIDDEN_BIT_MASK.as_u64()) == 0 {
            |         ++++++++++++++
        help: remove the assignments from the branches
            |
        175 ~             0
        176 |         } else {
        177 ~             (fp.exp + F::EXPONENT_BIAS) as u64
            |
        help: add a semicolon after the `if` expression
            |
        178 |         };
            |          +
    dtolnay committed Dec 8, 2021
    Configuration menu
    Copy the full SHA
    7db1ea9 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. Configuration menu
    Copy the full SHA
    a28529d View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c3eddcd View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f0774c4 View commit details
    Browse the repository at this point in the history
  4. Disable TcpStream test on miri

        error: unsupported operation: can't call foreign function: getaddrinfo
            --> nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/std/src/sys_common/net.rs:191:21
             |
        191  |             cvt_gai(c::getaddrinfo(c_host.as_ptr(), ptr::null(), &hints, &mut res))
             |                     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ can't call foreign function: getaddrinfo
             |
             = help: this is likely not a bug in the program; it indicates that the program performed an operation that the interpreter does not support
    dtolnay committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    aaaf125 View commit details
    Browse the repository at this point in the history
  5. Add a miri test job in CI

    dtolnay committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    52eec5e View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    b66b0eb View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2021

  1. Update to itoa 1.0

    dtolnay committed Dec 12, 2021
    Configuration menu
    Copy the full SHA
    48455de View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2021

  1. Release 1.0.73

    dtolnay committed Dec 13, 2021
    Configuration menu
    Copy the full SHA
    296f718 View commit details
    Browse the repository at this point in the history
Loading