specification icon indicating copy to clipboard operation
specification copied to clipboard

chore(deps): bump json-schema-for-humans from 0.47 to 1.0.2 in /docgen/json

Open dependabot[bot] opened this issue 1 year ago • 0 comments

Bumps json-schema-for-humans from 0.47 to 1.0.2.

Release notes

Sourced from json-schema-for-humans's releases.

v1.0.2

1.0.2 (2024-05-16)

Bug Fixes

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

v1.0.1

1.0.1 (2024-05-06)

Bug Fixes

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

v1.0.0

1.0.0 (2024-05-03)

Changelog

Sourced from json-schema-for-humans's changelog.

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.

Commits
  • 2d1662d chore(release): 1.0.2 [skip ci]
  • c304af8 fix: Fix for unstable enum description templating_utils.py (#243)
  • cebe6d5 chore(release): 1.0.1 [skip ci]
  • 8050904 fix: Move types packages to dev-dependencies (#242)
  • 966bc8e chore(release): 1.0.0 [skip ci]
  • d5d0cf9 ci: Use commit token to push releases
  • f8529c5 chore!: Drop support for Python 3.7 (#241)
  • 160c36a ci: Use token auth for Pypi
  • 499f617 ci: Add missing GITHUB_TOKEN
  • 98fa390 ci: Use semantic-release (#240)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dependabot[bot] avatar May 18 '24 06:05 dependabot[bot]