File tree 2 files changed +13
-6
lines changed
2 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 1
- v4.0.0 (Not Yet Released)
2
- -------------------------
1
+ v4.0.0
2
+ ------
3
3
4
- * Support for Draft 2020-12 (as well as 2019-09). Big thanks to Thomas Schmidt
5
- and Harald Nezbeda.
4
+ * Partial support for Draft 2020-12 (as well as 2019-09).
5
+ Thanks to Thomas Schmidt and Harald Nezbeda.
6
6
* ``False `` and ``0 `` are now properly considered non-equal even
7
7
recursively within a container (#686). As part of this change,
8
8
``uniqueItems `` validation may be *slower * in some cases. Please feel
@@ -25,6 +25,11 @@ v4.0.0 (Not Yet Released)
25
25
* ``multipleOf `` could overflow when given sufficiently large numbers. Now,
26
26
when an overflow occurs, ``jsonschema `` will fall back to using fraction
27
27
division (#746).
28
+ * ``jsonschema.__version__ ``, ``jsonschema.validators.validators ``,
29
+ ``jsonschema.validators.meta_schemas `` and
30
+ ``jsonschema.RefResolver.in_scope `` have been deprecated, as has
31
+ passing a second-argument schema to ``Validator.iter_errors `` and
32
+ ``Validator.is_valid ``.
28
33
29
34
v3.2.0
30
35
------
Original file line number Diff line number Diff line change @@ -60,9 +60,11 @@ It can also be used from console:
60
60
Features
61
61
--------
62
62
63
- * Full support for
64
- `Draft 2020-12 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft202012Validator >`_,
63
+ * Partial support for
64
+ `Draft 2020-12 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft202012Validator >`_ and
65
65
`Draft 2019-09 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft201909Validator >`_,
66
+ except for ``dynamicRef `` / ``recursiveRef `` and ``$vocabulary `` (in-progress).
67
+ Full support for
66
68
`Draft 7 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft7Validator >`_,
67
69
`Draft 6 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft6Validator >`_,
68
70
`Draft 4 <https://python-jsonschema.readthedocs.io/en/latest/validate/#jsonschema.Draft4Validator >`_
You can’t perform that action at this time.
0 commit comments