Skip to content

Releases: GREsau/schemars

v0.6.1

09 Dec 21:38
Compare
Choose a tag to compare

Fixed:

  • Fix a compile error that can occur when deriving JsonSchema from a project that doesn't reference serde_json

v0.6.0

09 Dec 21:09
Compare
Choose a tag to compare

Added:

  • When deriving JsonSchema, the schema's title and description are now set from #[doc] comments (#7)
  • When deriving JsonSchema on structs using a #[serde(default)] attribute, the schema's properties will now include default, unless the default value is skipped by the field's skip_serializing_if function (#6)

Changed:

  • When the option_nullable setting is enabled (e.g. for openapi 3), schemas for Option<T> will no longer inline T's schema when it should be referenceable.

v0.5.1

02 Nov 10:18
Compare
Choose a tag to compare

Fixed:

  • Added missing doc comment for "title" schema property

v0.5.0

30 Oct 20:00
Compare
Choose a tag to compare

Added:

  • Implemented JsonSchema for more standard library types (#3)

Changed:

  • Unsigned integer types (usize, u8 etc.) now have their minimum explicitly set to zero
  • Made prepositions/conjunctions in generated schema names lowercase
    • e.g. schema name for Result<MyStruct, Vec<String>> has changed from "Result_Of_MyStruct_Or_Array_Of_String" to "Result_of_MyStruct_or_Array_of_String"
  • Some provided JsonSchema implementations with the same type but different formats (e.g. i8 and usize) used the type as their name. They have now been updated to use format as their name.
    • Previously, schema generation would incorrectly assume types such as MyStruct<i8> and MyStruct<usize> were identical, and give them a single schema definition called MyStruct_for_Integer despite the fact they should have different schemas. Now they will each have their own schema (MyStruct_for_i8 and MyStruct_for_usize respectively).

v0.4.1

27 Oct 12:22
Compare
Choose a tag to compare
v0.4.1