Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: horejsek/python-fastjsonschema
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.17.1
Choose a base ref
...
head repository: horejsek/python-fastjsonschema
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.18.0
Choose a head ref
  • 4 commits
  • 8 files changed
  • 2 contributors

Commits on Jul 13, 2023

  1. improve error message for missing required props

    only include _missing properties in the error message for required props
    
    ```
    >>> fastjsonschema.validate({'required': ['foo', 'bar']}, {'foo': 1})
    ```
    
    before:
    
    ```
    JsonSchemaValueException: data must contain ['foo', 'bar'] properties
    ```
    
    after:
    
    ```
    JsonSchemaValueException: data must contain ['bar'] properties
    ```
    davidszotten committed Jul 13, 2023
    Configuration menu
    Copy the full SHA
    abfa170 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2023

  1. Merge pull request #176 from davidszotten/improve-required-error-message

    improve error message for missing required props
    horejsek authored Jul 22, 2023
    Configuration menu
    Copy the full SHA
    97634bd View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6a67dc4 View commit details
    Browse the repository at this point in the history
  3. v2.18.0

    horejsek committed Jul 22, 2023
    Configuration menu
    Copy the full SHA
    7565400 View commit details
    Browse the repository at this point in the history
Loading