forked from brandur/json_schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG
71 lines (48 loc) · 1.92 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Unreleased
0.19.1 2019-03-28
Fix regression in that subtypes would not validate type (#98)
0.19.0 2019-03-27
Implement `fail_fast` option to short circuit validation (#96)
Drop support for Ruby 1.9 (EOL'ed for 3+ years now) (#96)
0.18.0 2019-03-26
Speed up validation by pre-calculating Ruby types (#94)
0.17.2 2019-02-20
Add minor optimization for an `any_of` that validates successfully (#93)
0.17.1 2019-02-12
Add minor optimization using `Enumerable#flat_map` (#91)
0.17.0 2017-09-01
Add support for the `uri-reference` format
0.16.2 2017-08-17
Fix schema names of minimum/maximum/exclusiveMinimum/exclusiveMaximum on indexing
0.16.1 2016-12-15
Fix serialized schema names for Hyper-schemas
0.16.0 2016-12-08
Populate error `data` with missing fields during validation
0.15.0 2016-12-02
Add `all_of_sub_errors` option to get subschema errors for `allOf` validations
0.14.4 2016-11-09
Fix bug where inspecting a Hyper-schema link would throw an exception
0.14.3 2016-10-18
Fix reference expansion for Hyper-schema links
0.14.1 2016-10-07
Nil schema fields on `JsonSchema::Schema` init to prevent Ruby warnings
0.14.0 2016-10-06
Allow JSON pointer resolution on a `JsonSchema::Schema` object
0.13.6 2016-10-05
More robust SchemaError: no secondary exception thrown without a pointer
0.13.5 2016-10-05
Allow a schema that is a reference (and nothing else) to be expanded
0.13.4 2016-10-04
Fix return type of `validate_dependencies` to always be a boolean
0.13.3 2016-08-30
Fix a nil error that occurred on relative JSON reference expansion
0.13.2 2016-08-29
Remove accidentally included "pry" require
0.13.1 2016-08-29
Fix a number of warnings emitted by Ruby
0.13.0 2016-06-25
Add support for validating schemas given to the `additionalItems` property
0.12.5 2016-06-01
Fix error message raised by `minProperties` validations
0.12.4 2016-05-26
Allow `additionalItems` to be a schema object in addition to a boolean