-
Notifications
You must be signed in to change notification settings - Fork 617
Comparing changes
Open a pull request
base repository: serde-rs/json
base: v1.0.142
head repository: serde-rs/json
compare: v1.0.145
- 19 commits
- 8 files changed
- 4 contributors
Commits on May 31, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 0c0e9f6 - Browse repository at this point
Copy the full SHA 0c0e9f6View commit details
Commits on Jul 6, 2025
-
Configuration menu - View commit details
-
Copy full SHA for bea0fe6 - Browse repository at this point
Copy the full SHA bea0fe6View commit details
Commits on Jul 10, 2025
-
Configuration menu - View commit details
-
Copy full SHA for fd35a02 - Browse repository at this point
Copy the full SHA fd35a02View commit details
Commits on Aug 8, 2025
-
Revert "Pin nightly toolchain used for miri job"
This reverts commit c1826eb.
Configuration menu - View commit details
-
Copy full SHA for ba5b3cc - Browse repository at this point
Copy the full SHA ba5b3ccView commit details
Commits on Aug 19, 2025
-
Merge pull request #1268 from SOF3/compact-default
Implement Default for CompactFormatter
Configuration menu - View commit details
-
Copy full SHA for 8be6647 - Browse repository at this point
Copy the full SHA 8be6647View commit details -
Merge pull request #1264 from xlambein/master
Add Clone and Debug impls to map iterators
Configuration menu - View commit details
-
Copy full SHA for ec190d6 - Browse repository at this point
Copy the full SHA ec190d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 447170b - Browse repository at this point
Copy the full SHA 447170bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2a5b853 - Browse repository at this point
Copy the full SHA 2a5b853View commit details -
Configuration menu - View commit details
-
Copy full SHA for 10102c4 - Browse repository at this point
Copy the full SHA 10102c4View commit details
Commits on Aug 23, 2025
-
Configuration menu - View commit details
-
Copy full SHA for d12e943 - Browse repository at this point
Copy the full SHA d12e943View commit details
Commits on Sep 13, 2025
-
Older versions produce slightly differently normalized output when run against 1.90.0+ Rust compiler.
Configuration menu - View commit details
-
Copy full SHA for 0bf5d87 - Browse repository at this point
Copy the full SHA 0bf5d87View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dbc803 - Browse repository at this point
Copy the full SHA 1dbc803View commit details -
Merge pull request #1286 from dtolnay/up
Raise required compiler to Rust 1.61
Configuration menu - View commit details
-
Copy full SHA for 6beb6cd - Browse repository at this point
Copy the full SHA 6beb6cdView commit details -
Configuration menu - View commit details
-
Copy full SHA for d21e8ce - Browse repository at this point
Copy the full SHA d21e8ceView commit details -
Merge pull request #1285 from dtolnay/serdecore
Switch serde dependency to serde_core
Configuration menu - View commit details
-
Copy full SHA for 81ba3aa - Browse repository at this point
Copy the full SHA 81ba3aaView commit details -
Ignore uninlined_format_args pedantic clippy lint
warning: variables can be used directly in the `format!` string --> src/ser.rs:448:15 | 448 | match write!(adapter, "{}", value) { | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args = note: `-W clippy::uninlined-format-args` implied by `-W clippy::pedantic` = help: to override `-W clippy::pedantic` add `#[allow(clippy::uninlined_format_args)]` help: change this to | 448 - match write!(adapter, "{}", value) { 448 + match write!(adapter, "{value}") { | warning: variables can be used directly in the `format!` string --> src/value/mod.rs:182:37 | 182 | Value::Bool(boolean) => write!(formatter, "Bool({})", boolean), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 182 - Value::Bool(boolean) => write!(formatter, "Bool({})", boolean), 182 + Value::Bool(boolean) => write!(formatter, "Bool({boolean})"), | warning: variables can be used directly in the `format!` string --> src/value/mod.rs:184:38 | 184 | Value::String(string) => write!(formatter, "String({:?})", string), | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 184 - Value::String(string) => write!(formatter, "String({:?})", string), 184 + Value::String(string) => write!(formatter, "String({string:?})"), | warning: variables can be used directly in the `format!` string --> src/number.rs:365:9 | 365 | write!(formatter, "Number({})", self) | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#uninlined_format_args help: change this to | 365 - write!(formatter, "Number({})", self) 365 + write!(formatter, "Number({self})") |Configuration menu - View commit details
-
Copy full SHA for caef3c6 - Browse repository at this point
Copy the full SHA caef3c6View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc27baf - Browse repository at this point
Copy the full SHA fc27bafView commit details
Commits on Sep 14, 2025
-
Configuration menu - View commit details
-
Copy full SHA for 23679e2 - Browse repository at this point
Copy the full SHA 23679e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for efa66e3 - Browse repository at this point
Copy the full SHA efa66e3View commit details
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.142...v1.0.145