Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from jonasbb:master #68

Merged
merged 27 commits into from
Aug 14, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
83b3875
Bump time to v0.3.36 to include nightly fix
jonasbb May 22, 2024
55db6fc
Bump MSRV for time dependency
jonasbb May 22, 2024
c348ea4
Bump time to 0.3.36 for nightly compatability (#750)
jonasbb May 22, 2024
242286c
Enable the `unexpected_cfgs` lint now that it can be configured via `…
jonasbb May 22, 2024
9593f93
Enable the `unexpected_cfgs` lint now that it can be configured via `…
jonasbb May 22, 2024
685338f
Replace future deprecated functions from chrono
jonasbb May 22, 2024
729e8d2
Replace future deprecated functions from chrono (#752)
jonasbb May 22, 2024
3ae4424
Fix two clippy issues
jonasbb Jun 8, 2024
f74b460
Fix two clippy issues (#755)
jonasbb Jun 9, 2024
dee706a
Implement JsonSchemaAs for OneOrMany instead of JsonSchema
swlynch99 Jun 28, 2024
c9d9672
Implement JsonSchemaAs for OneOrMany instead of JsonSchema (#760)
jonasbb Jun 30, 2024
e9e7a7e
Bump version to 3.8.2
jonasbb Jun 30, 2024
2274dd1
Bump version to 3.8.2 (#761)
jonasbb Jun 30, 2024
4c8c2db
Make code compile with `schemars_0_8/preserve_order` enabled
jonasbb Jul 3, 2024
19bfe18
Make code compile with `schemars_0_8/preserve_order` enabled (#764)
jonasbb Jul 3, 2024
7de9838
Bump version to v3.8.3
jonasbb Jul 3, 2024
1c4b022
Bump version to v3.8.3 (#765)
jonasbb Jul 3, 2024
4ad4a1b
Fix dead code warning by correcting a typo
jonasbb Jul 12, 2024
f5b2626
Fix dead code warnings in tests
jonasbb Jul 12, 2024
31e9172
Fix dead code warning by correcting a typo (#769)
jonasbb Jul 12, 2024
bf6724d
Move VecSkipError to a separate file, preparing for MapSkipError
johnmave126 Jul 3, 2024
97543d0
Implement MapSkipError, skipping un-deserializable entries.
johnmave126 Jul 3, 2024
17dec11
Add tests to make sure syntax errors are not suppressed.
johnmave126 Jul 4, 2024
aaa0a29
Update serde_with/src/guide/serde_as_transformations.md
johnmave126 Jul 12, 2024
d038657
Implement `MapSkipError`, analogous to `VecSkipError`, but for map-li…
jonasbb Jul 12, 2024
57ad877
Bump version to 3.9.0
jonasbb Jul 14, 2024
c3e489f
Bump version to 3.9.0 (#770)
jonasbb Jul 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Bump time to v0.3.36 to include nightly fix
  • Loading branch information
jonasbb committed May 22, 2024
commit 83b3875bd3c0ca0829252b32d82946fb0dd8c9ad
38 changes: 32 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion serde_with/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ serde = {version = "1.0.152", default-features = false}
serde_derive = "1.0.152"
serde_json = {version = "1.0.45", optional = true, default-features = false}
serde_with_macros = {path = "../serde_with_macros", version = "=3.8.1", optional = true}
time_0_3 = {package = "time", version = "~0.3.11", optional = true, default-features = false}
time_0_3 = {package = "time", version = "~0.3.36", optional = true, default-features = false}

[dev-dependencies]
expect-test = "1.5.0"
Expand Down
4 changes: 2 additions & 2 deletions serde_with/tests/time_0_3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ fn test_offset_datetime_rfc2822() {

check_error_deserialization::<S>(
r#""Foobar""#,
expect![[r#"the 'weekday' component could not be parsed at line 1 column 8"#]],
expect!["the 'day' component could not be parsed at line 1 column 8"],
);
check_error_deserialization::<S>(
r#""Fri, 2000""#,
Expand Down Expand Up @@ -266,6 +266,6 @@ fn test_offset_datetime_iso8601() {
);
check_error_deserialization::<S>(
r#""2000-AA""#,
expect!["unexpected trailing characters at line 1 column 9"],
expect!["unexpected trailing characters; the end of input was expected at line 1 column 9"],
);
}