Skip to content

Latest commit

 

History

History
119 lines (66 loc) · 4.92 KB

CHANGELOG.md

File metadata and controls

119 lines (66 loc) · 4.92 KB

1.3.4 (2024-12-06)

Bug Fixes

  • const with value null wrongly displayed (#288) (e2642b2)

1.3.3 (2024-12-02)

Bug Fixes

1.3.2 (2024-11-29)

Bug Fixes

  • Badge will not have invalid links anymore (#284) (c05f229)

1.3.1 (2024-11-29)

Bug Fixes

  • Fix markdown "break on newline" configurability (#236) (c0c9d09)

1.3.0 (2024-11-29)

Features

  • Look up property title by following references (#280) (57f68d6), closes #278

1.2.0 (2024-11-29)

Features

  • Add description_safe_mode config option (#283) (a17ce95)

1.1.1 (2024-11-29)

Bug Fixes

  • Deprecate minify CLI option (b428474)

1.1.0 (2024-11-29)

Features

  • Add allow_html_description config option (#282) (6c5f00e)

1.0.4 (2024-11-27)

Bug Fixes

  • python: support python3.13 and drop python3.8 (#273) (063410e)

1.0.3 (2024-08-30)

Bug Fixes

  • new properties are ignored whith allOf using $ref (#249) (7049af7)

1.0.2 (2024-05-16)

Bug Fixes

  • Fix for unstable enum description templating_utils.py (#243) (c304af8)

1.0.1 (2024-05-06)

Bug Fixes

  • Move types packages to dev-dependencies (#242) (8050904)

1.0.0 (2024-05-03)

0.48

(Issue #190) Now correctly display elements next to a $ref with reused nodes, e.g.:

{
  "$schema": "https://json-schema.org/draft/2019-09/schema",
  "type": "object",
  "title": "Example",
  "properties": {
    "prop1": {
      "$ref": "#/$defs/a",
      "description": "Prop1",
      "examples": ["1"]
    },
    "prop2": {
      "$ref": "#/$defs/a",
      "description": "Prop2",
      "examples": ["2"]
    }
  },
  "$defs": {
    "a": {
      "type": "string",
      "maxLength": 5
    }
  }
}

Previously, prop2 would have been a link to prop1, hiding the different example for prop2.

This may increase the size of rendered schemas in certain situations.