Skip to content

Tags: yangziy/python-jsonschema-objects

Tags

0.3.3

Toggle 0.3.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cwacek#140 from cwacek/feature/change-markdown-ver…

…sion

versioning: Allow any 2.x version of Markdown

0.3.2

Toggle 0.3.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cwacek#120 from The-Alchemist/patch-2

Possible typo in the README

0.3.1

Toggle 0.3.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cwacek#109 from mbroomfield-r7/fix/oneof-type-bug

Fix property setting bug when typ is dict

0.3.0

Toggle 0.3.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request cwacek#95 from cwacek/default-values

feature: Permit the use of default values for literals.

0.2.4

Toggle 0.2.4's commit message
Merge pull request cwacek#92 from edwardcwang/duplicate

Remove duplicate __str__ definition

0.2.3

Toggle 0.2.3's commit message
Merge pull request cwacek#89 from cwacek/feature/support-top-level-ar…

…rays

Fix cwacek#88. Properly construct wrappers for top level array constraints

0.2.2

Toggle 0.2.2's commit message
Merge pull request cwacek#74 from cwacek/fix/69-versioning

Shift tests to use setup install_requires.

0.2.1

Toggle 0.2.1's commit message
Merge pull request cwacek#64 from cwacek/hotfix/ref-resolution-bug

bugfix: Resolve the correct reference type for objects

0.2.0

Toggle 0.2.0's commit message
Version 0.2.0

This is a minor version change because of relatively significant
changes to array handling.

Prior to now, arrays objects were handled a little weirdly in that
they were stored as native python lists with an associated validator
object. This resulted in all sorts of unexpected behavior, with
nested arrays being returned without their validators under certain
circumstances.

This resolves the issue by converting all arrays to first-class object
wrappers (and renaming the wrapper to ArrayWrapper instead of
ArrayValidator).

0.1.1

Toggle 0.1.1's commit message
Merge pull request cwacek#62 from cwacek/feature/feature/check-schema…

…-first

feature: Use jsonschema to validate the schema itself before load