| 12
 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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 
 | Revision history for perl distribution JSON-Validator
5.14 2023-03-06T13:45:33
 - Avoid mutating OpenAPIv2 schema "parameters" when validating
5.13 2022-12-09T09:55:24
 - Fix not coercing body parameter for OpenAPIv2
5.12 2022-10-26T20:14:57
 - Allow unicode strings in the JSON schema #268
   Contributor: Brad Barden
 - Specified Perl version
 - Updated basic repository files
 - Updated contributors list
5.11 2022-08-30T15:41:16+0900
 - Fix sorting routes with placeholders on different positions
5.10 2022-08-18T07:39:15+0900
 - Add root schema id to "DefaultResponse" to allow external $ref
5.09 2022-08-17T09:13:55+0900
 - Add support for default collectionFormat when "type" is "array"
5.08 2022-03-25T10:00:18+0900
 - Fix handling OpenAPIv2 headers with collectionFormat
5.07 2022-03-23T07:58:02+0900
 - Fix issues with OpenAPIv3 in 5.06
5.06 2022-03-23T07:29:23+0900
 - Fix placing OpenAPIv2 bundled path $ref's inside "paths"
5.05 2022-01-06T09:33:30+0900
 - Add EXPERIMENTAL support for coercing to array when posting form data
5.04 2021-12-10T07:54:09+0900
 - Fix coercing strings and numbers in schema specification #266
5.03 2021-11-20T13:32:42+0900
 - Fix OpenAPIv3::add_default_response() will not overwrite nested $ref
 - Fix finding "readOnly" and "writeOnly" inside nested $ref
 - Fix joi required() with nested objects
   Contributor: Tim Stallard
5.02 2021-10-06T09:58:55+0900
 - Fix defaults for arrays with collectionFormat #263
   Contributor: Ilya Rassadin
 - Improved documentation for JSON::Validator and JSON::Validator::Schema #230
5.01 2021-10-04T07:13:32+0900
 - Fix registering the correct $ref when bundling
 - Changed get() to resolve $ref #262
 - Deprecated $schema->contains()
 - Deprecated $schema->schema()
5.00 2021-10-02T10:15:16+0900
 - Validation is much faster
 - Fix "$defs" in draft7 is "definitions"
 - Add benchmark.t to track validation speed
   * Runtime v4.21: 2.62s (n=200)
   * Runtime v5.00: 1.52s (n=200)
 - Add JSON::Validator::Store::resolve()
 - Add JSON::Validator::URI
 - Fix incorrect validation error paths when validating references to same object #244
 - Changed JSON::Validator::Util::is_type()
   * Add JSON::Validator::Util::is_bool()
   * Add JSON::Validator::Util::is_num()
 - Changed bundled definitions/$defs names
 - Changed invalid schema id/$id will not croak
 - Changed internal _validation_xxx() methods to take $state
 - Removed support for bundle({replace => 1}) #194
 - Removed JSON::Validator::OpenAPIv2::allow_invalid_ref()
 - Removed JSON::Validator::Ref
 - Removed JSON::Validator::Util::json_pointer()
 - Removed JSON::Validator::Util::schema_extract()
4.25 2021-09-26T08:41:51+0900
 - Fix checking OpenAPI schema for errors if coerce(defaults) is on #254
 - YAML::XS is preferred instead of YAML::PP #259
 - Cleaned up CPAN distribution files #260
4.24 2021-09-16T08:02:26+0200
 - Add OpenAPI v3.1.x support
4.23 2021-08-28T16:44:05+0200
 - Fix mishandling of nullable combined witn enum in OpenAPIv3 #256 #257
4.22 2021-08-27T13:12:56+0200
 - Fix email checking #258
   Contributor: Stephan Hradek
4.21 2021-07-10T15:58:47+0900
 - Fix no warnings when negotiating */* #252
 - Depends on perl v5.16.0 #250
 - Updated x_IRC to irc.libera.chat
4.20 2021-06-18T11:27:02+0900
 - Fix compiling array items #249
 - Fix coerce() will be passed on to schema() objects
 - Add is_invalid() to JSON::Validator::Schema
 - Improved documentation for JSON::Validator and JSON::Validator::Schema
 - Changed joi validator to default to a JSON::Validator::Schema::Draft7 object
 - Deprecated validate(..., $schema)
 - Removed support for coerce(1)
 - Removed support for subclassing JSON::Validator. Need to subclass a schema
   class instead.
 - Simpler inheritance for Schema classes
4.19 2021-06-17T12:37:10+0900
 - Fix generating correct base_url() object with host and port
4.18 2021-06-17T11:13:58+0900
 - Fix content_type validation for OpenAPIv2 and OpenAPIv3
 - Fix validating multipart\/form-data with boundary
 - Fix validating content-type with charset
 - Fix parsing OpenAPIv3 spec with "description", "servers" and "summary" in a
   path specifiation.
4.17 2021-04-28T11:30:56+0900
 - Add add_default_response() to OpenAPIv2 and OpenAPIv3
 - Add base_url() to OpenAPIv2 and OpenAPIv3
 - Fix validating "nullable" for "array" and "object"
4.16 2021-03-24T08:57:46+0900
 - Fix handling OpenAPIv2 "responses" $ref when bundling
4.15 2021-03-24T07:57:58+0900
 - Fix validating nullable inside anyOf for OpenAPIv3 #241
 - Fix t/id-keyword-draft*.t test failures with Mojolicious 9.11 #242 #243
 - Removed deprecated functions joi() and validate_json()
 - Removed deprecated methods singleton() and version()
4.14 2021-02-23T14:58:07+0900
 - Add routes() to Schema::OpenAPIv2 and OpenAPIv3
4.13 2021-01-28T18:22:43+0900
 - Fix handling offset in RFC3339 date-time #236
 - Add CLEAR method to JSON::Validator::Ref #237
4.12 2021-01-25T07:52:34+0900
 - Fix not using Mojo::Exception::raise() #235
 - Fix uninitialized warning when looking up schema for an internal $ref
4.11 2021-01-24T16:02:02+0900
 - Add JSON::Validator::Schema::OpenAPIv2
   * Extends JSON::Validator::Schema::Draft4
   * Can validate OpenAPIv2 API specifiation
   * Can validate HTTP request and response
   * Can validate "Accept" and "Content-Type"
   * Can handle "discriminator"
   * Can handle "readOnly" parameters
   * Can handle collectionFormat
   * Can handle default values for parameters
   * Can convert specifiation with invalid "$ref" into a valid OpenAPIv2 specifiation
   * Will coerce query parameters and headers into arrays if needed
 - Add JSON::Validator::Schema::OpenAPIv3
   * Extends JSON::Validator::Schema::Draft201909
   * Can validate OpenAPIv3 API specifiation
   * Can validate HTTP request and response
   * Can validate "Accept" and "Content-Type"
   * Can handle "discriminator"
   * Can handle "nullable" parameters
   * Can handle "readOnly" parameters
   * Can handle "style" and "explode" for arrays and objects parameters
   * Can handle "writeOnly" parameters
   * Can handle default values for parameters
   * Will coerce query parameters and headers into arrays if needed
 - Add negotiate_content_type() utility function
 - Fix t/load-file.t on Windows #234
 - Fix not checking if input schema is a file if it has a newline #223 #233
   Contributor: David Cantrell
 - Improved error message when loading non-existing file #231
4.10 2020-10-13T10:53:11+0900
 - Add JSON::Validator::Store
 - Changed JSON::Validator->schema() to also load
 - JSON::Validator->schema() can handle draft 2019-09 schemas
 - Documented what is not supported in draft 2019-09
4.09 2020-10-12T11:04:16+0900
 - Fix handling if "id" and "$id" in subschemas #186
 - Add CONTRIBUTING.md #161
4.08 2020-10-12T08:06:29+0900
 - Implemented basic support for draft 2019-09 #181
 - JSON::Validator::Ref can hold sibling attrs #181
4.07 2020-10-11T11:48:05+0900
 - Acceptance tests require Test::JSON::Schema::Acceptance 1.000
4.06 2020-10-10T16:21:51+0900
 - Fix caching of schemas across objects #204 #212
   Contributor: Karen Etheridge
 - Fix "contains" can also be boolean "false"
 - Fix "dependencies" can have boolean subschemas
 - Fix "if" can be false
 - Fix "null" is valid if "pattern" is defined, but no "type"
 - Fix "propertyNames" can be false
 - Fix JSON::Validator::Ref can hold a boolean schema
 - Fix not adding "properties" to the input schema
 - Fix resolving "$ref":"#id"
 - Fix validating data when "additionalItems" is false, but there are enough rules
 - Changed internals of JSON::Validator::Ref
4.05 2020-10-06T06:29:31+0900
 - Errors are now reported in a predictable order #223
   Contributor: David Cantrell
4.04 2020-09-28T10:01:58+0900
 - Add "validator" as attribute to JSON::Validator::Joi
 - Changed YAML::XS to an optional module #205
 - Changed column with to be in sync with mojolicious/mojo
 - Fix constructing schema() from correct class
4.03 2020-09-14T18:14:19+0900
 - Add "joi" as exported function to JSON::Validator::Joi
 - Fix SYNOPSIS for JSON::Validator::Joi
4.02 2020-08-11T13:06:40+0900
 - Add recursive_data_protection() #220
   Contributor: Jason Cooper
4.01 2020-06-30T17:42:08+0900
 - Fix combining "allOf" and "not" #218
4.00 2020-06-08T10:41:55+0900
 - JSON::Validator::schema() now holds a JSON::Validator::Schema object
   instead of Mojo::JSON::Pointer
 - Add schema classes for Draft4, Draft6 and Draft7
 - Add "duration" and "uuid" formats #210
 - Fix coercing boolean "false" #215
 - Fix not matching "null" should also be a "type" error #217
 - Deprecated JSON::Validator::joi()
 - Deprecated JSON::Validator::singleton()
 - Deprecated JSON::Validator::validate_json()
 - Deprecated JSON::Validator::version()
 - Removed JSON::Validator::generate_definitions_path()
 - Removed support for JSON::Validator::bundle({ref_key => ...})
3.25 2020-03-26T07:42:16+0900
 - Made "additionalProperties" error message less confusing
 - Add support for "items" and "contains" can be defined-but-false #207
   Contributor: Karen Etheridge
 - Respect "items" when combined with "contains" #207
   Contributor: Karen Etheridge
 - Require Sereal::Encoder 4.00 to speed up data_checksum()
3.24 2020-03-03T15:46:39+0900
  - Optimize checksum generation #202
    Contributor: Ere Maijala
  - Improved "type":[...] error messages #199
    Contributor: Karen Etheridge
  - Fix handle validation of true, false schemas in oneOf #201 #203
    Contributor: Karen Etheridge
  - Fix guessing type:object if "dependencies" is present #206
3.23 2020-02-19T09:37:44+0900
 - Using List::Util::uniq() instead of JSON::Validator::Util::uniq() #198
3.22 2020-02-15T08:35:29+0900
 - Add support for "dependencies" keyword #192 #197
   Contributor: Karen Etheridge
 - Add support for anyOf/allOf/oneOf at the same time #196 #197
   Contributor: Karen Etheridge
 - Allow if/then/else to be in any sort of schema #190 #197
   Contributor: Karen Etheridge
3.21 2020-02-14T10:14:14+0900
 - Fix data_section() without a class #193
3.20 2020-02-12T09:47:21+0900
 - Fix validating draft6 "false" and "true" schemas #190
   Contributor: Karen Etheridge
 - Add JSON::Validator::Util with E(), data_checksum(), data_section(),
   data_type(), is_type(), schema_extract(), json_pointer(),
   prefix_errors(), schema_type() and uniq()
 - Removed support for JSON_VALIDATOR_REPORT
3.19 2020-02-07T11:10:58+0900
 - Add clearer error when more than one oneOf rule matched #184
   Contributor: Karen Etheridge
 - Improved validation of numeric minimum and maximum values
3.18 2020-01-29T10:18:09+0900
 - Fix validating constants that are null or the empty string
   Contributor: Karen Etheridge
3.17 2019-12-29T14:21:53+0900
 - Fix for deep recursion on Windows #170
 - Fix reading unicode specifiation from __DATA__ #179
3.16 2019-10-28T13:59:47+0900
 - Add generate_definitions_path() #175 #177
   Contributor: Henrik Andersen, Jan Henning Thorsen
3.15 2019-09-27T09:28:32+0900
 - Add JSON::Validator::Error->details() #133
 - Reversed the checksum and nice name for generated definitions #173
3.14 2019-08-09T23:52:24+0200
 - Fix failing tests #169
3.13 2019-08-08T16:27:29+0200
 - Fix extend() should not mutate the source objects #167
3.12 2019-08-08T12:02:14+0200
 - Fix bug: Joi->extend(...) will also merge "required" #166
 - Fix deprecation warning from $joi->validate #165
   Contributor: Mattias Päivärinta
 - Fix loading Time::Local in the correct module #163
   Contributor: Bernhard Graf
3.11 2019-05-07T21:53:16+0700
 - Bundle https://github.com/OAI/OpenAPI-Specification/blob/master/schemas/v3.0/schema.json #157
3.10 2019-05-05T14:32:15+0700
 - Should not add "/definitions" to bundle, if there are no definitions
 - A bit too soon to deprecate bundle({replace => 1}) in 3.09
3.09 2019-05-04T22:28:55+0700
 - Prettier definition names from bundle().
 - Changed default bundle() definitions location from "x-bundle" to "definitions".
 - Deprecated bundle({ref_key => ...})
 - Deprecated bundle({replace => ...})
3.08 2019-04-06T15:07:11+0700
 - Add support for "default" in object definitions #155
 - Add support for coerce("bool,def,num,str") as alternative to hash
 - Add support for setting coerce in new()
 - Deprecated support for coerce(1)
3.07 2019-04-04T23:43:55+0700
 - Fix not leaking file names with bundle()
3.06 2019-02-14T18:24:29+0100
 - Fix coercing integers and numbers #147
 - Changed recursion guard to not keeping tracking of plain scalars #147
3.05 2019-01-31T08:45:14+0900
 - Removed testing Mojo::JSON::MaybeXS, since Mojo::JSON loads Cpanel::JSON::XS
3.04 2019-01-21T09:39:50+0900
 - Fix "uri" check, so that it only accept ASCII characters. Note that this
   fix might be an undesired change for your application. If so, then update
   the "uri" format in your schema to "iri".
 - Fix "hostname" format check, so it does not require a valid TLD
 - Fix validating draft-07 schema against itself #144
 - Add support for more formats in JSON Schema draft-6 and 7: date, idn-email,
   idn-hostname, iri, iri-reference, json-pointer, relative-json-pointer, time,
   uri-reference and uri-template.
 - Add support for more keywords in draft-07
   * 6.4.6. Arrays - contains
   * 6.5.8. Objects - propertyNames
   * 6.6.1. Objects - if
   * 6.6.2. Objects - then
   * 6.6.3. Objects - else
3.03 2019-01-19T12:11:34+0900
 - Add JSON::Validator::Formats with format checks
   Note that these functions work by returning a string on error, instead of
   true on sucches, which was a breaking change introduced in the 3.00 release.
3.02 2019-01-07T09:52:31+0900
 - Trying to fix more failing test reports from the smokers
3.01 2019-01-06T08:16:33+0900
 - Fix t/jv-formats.t #140
3.00 2019-01-05T13:13:49+0900
 - Add enum() to Joi
 - Add support for a list of types passed on to Joi #136
 - Add support for file:// scheme in $ref #138
 - Fix $ref resolving after fixes applied to Mojo::JSON::Pointer in
   Mojolicious 8.11 #139
 - Fix cases where input was not coerced
 - Breaking change: format callbacks need to return undef on success and a
   description on error.
 - Changed Joi to always coerce values
 - Removed JSON::Validator::OpenAPI
2.19  2018-12-07
 - Fix random errors when "type" is a list #126
 - Moved JSON::Validator::OpenAPI::Mojolicious to Mojolicious-Plugin-OpenAPI
 - Removed JSON::Validator::OpenAPI::Dancer2
2.18  2018-11-15
 - Add EXPERIMENTAL support for data:// without a package
2.17  2018-11-14
 - Add basic support for OpenAPI v3
2.16  2018-11-14
 - Improved openapi "date" format validation #123
   Contributor: Jason Cooper
2.15  2018-11-07
 - Did not need to bump Mojolicious version in 2.15 #122
   Contributor: Dagfinn Ilmari Mannsåker
2.14  2018-10-26
 - Fix guessing schema type from "required" key #118
 - Fix appending parameters for Mojolicious 8.00 #119 #120
 - Improved error return values from allOf, anyOf and oneOf validation
 - Will not overwrite OpenAPI "/info/version" from "version_from_class"
2.13  2018-10-17
 - Compatible with weak attrs in Mojolicious 8.03
2.12  2018-10-03
 - Improved error message when $ref is pointing to a non-existing file
2.11  2018-09-30
 - Skipping load-from-app.t on "Gateway Timeout" as well
2.10  2018-09-26
 - Fix handling of directory name with RFC 3986 reserved chars
   Contributor: Ed J
2.09  2018-09-26
 - Skip "remote ref" tests when running through cpantesters
2.08  2018-06-03
 - Fix validating oneOf correctly #103
 - Fix validating "id" property #111
 - Add support for $id keyword in draft-07 #114
 - Bundle JSON Schema draft-06 and draft-07
2.07  2018-04-18
 - Fix joi->object->strict()
   Contributor: Pierre-Aymeric Masse
2.06  2018-04-09
 - Fix normalising file names on windows #102
 - Prevent "Use of uninitialized value $pointer in length..." for older Perls #104
 - Removed warning about coercion now, since it works well
2.05  2018-03-11
 - Fix hash randomization problem fot t/get.t #101
2.04  2018-03-10
 - Add JSON::Validator::JOI and joi() #63
 - Add support for get(|"x", undef, "y"])
 - Will catch if more than one parameter has "in":"body" #97
 - Fix file-path with ".." gets false negative for same-ref check #99
2.03  2018-02-15
 - Will not leak file system information to bundled schema
2.02  2018-01-30
 - Will let the user know if YAML::XS 0.67 (or later) need to be installed
2.01  2018-01-26
 - Fix bundle method not spotting "local" fqn when schema from URL
 - Forgot to remove deprecated JSON_VALIDATOR_CACHE_DIR in 2.00
2.00  2018-01-19
 - Fix validating against any enum value #22
 - Require YAML::XS 0.67 for proper boolean handling
 - Removed support for parsing YAML with YAML::Syck
 - Removed deprecated method load_and_validate_spec()
1.08  2017-12-24
 - Fix setting default value from $ref jhthorsen/mojolicious-plugin-openapi#53
 - Skip load-from-app.t if "Service Unavailable"
1.07  2017-11-27
 - Can load schame from internal app #85
1.06  2017-11-19
 - Add JSON::Validator::get()
 - Add JSON::Validator::bundle()
 - A $ref is tied hashes, represented by JSON::Validator::Ref
1.05  2017-10-22
 - Fix validating headers regardless of case #77
   Contributor: Aleksandr Orlenko
 - Improved boolean handling #76
   Contributor: Aleksandr Orlenko
 - Improved URI validation, fixes #74
 - Resolving "$ref" on the fly #65 #75 #79
1.04  2017-10-05
 - Avoid autovivification of "patternProperties" in the input schema #47
1.03  2017-09-25
 - Fix "uri" format validation, closes #70
1.02  2017-09-01
 - Fix validating "type" and "enum" #69
1.01  2017-08-19
 - Add support for fetching specification from local application
1.00  2017-06-20
 - Removed EXPERIMENTAL from JSON::Validator::OpenAPI (1.00)
 - Coerce integer numbers into booleans #67
   Contributor: @fabzzap
0.99  2017-06-12
 - Hopefully fixed some Windows issues #60
0.98  2017-05-21
 - Add support for "const" #62
   Contributor: Kevin Goess
0.97  2017-03-21
 - Require a newer version of Test::More to build
0.96  2017-03-06
 - Fix JSON::Validator::load_and_validate_schema()
 - Add handling of header/formData/query as array #38
 - Allow alternative date-time separator #49
 - Improved recursion tracking #52
 - More tests in t/acceptance.t are ok #52
 - Avoid loading the same file multiple times #54
 - Swagger2 is deprecated
0.95  2017-03-02
 - Add support for format "password"
 - Add load_and_validate_schema() to JSON::Validator #51
 - Started deprecating load_and_validate_spec()
0.94  2017-02-13
 - Fix t/issue-27-yaml-syck-false.t
 - Removed Carp::Always #47
0.93  2017-02-13
 - Fix coercing YAML booleans in input specification jhthorsen/mojolicious-plugin-openapi#24
 - Replace JSON_VALIDATOR_CACHE_DIR with JSON_VALIDATOR_CACHE_PATH
 - Remove deprecated cache_dir attribute
0.92  2017-01-18
 - Fix infinite recursion when resolving self referencing data structures
0.91  2017-01-10
 - Mojo::Util::slurp is DEPRECATED in favor of Mojo::File::slurp
0.90  2016-12-11
 - Add support for validating Dancer2 requset/responses #34
 - Fix invalidating integer/number path part with letters #37
0.89  2016-11-05
 - Fix multipleOf:0.01, closes #35
0.88  2016-11-04
 - Fix number coercion #32
   Contributor: @melhesedek
 - Add JSON::Validator::OpenAPI->load_and_validate_spec()
0.87  2016-10-20
 - Fix validating data when boolean.pm is loaded
0.86  2016-10-06
 - Documented bundled resources
0.85  2016-09-26
 - Fix handling of collectionFormat where no input is defined
0.84  2016-08-19
 - Removed support for passing $json_path to validate()
 - Fix guessing type of objects that has TO_JSON()
0.83  2016-08-16
 - Fix handling of true/false in schema, when loaded with YAML::Syck #27
 - Add EXPERIMENTAL support for passing $json_path to validate()
0.82  2016-08-09
 - Fix finding all $ref occurances jhthorsen/swagger2#95
0.81  2016-08-08
 - Add support for multiple cache dir search paths
 - Deperecated cache_dir()
 - Fix recurring requests with same path part jhthorsen/swagger2#93
 - Fix "Use of uninitialized value $schema_type..." warnings
0.80  2016-08-03
 - Fix parsing recursive schema
0.79  2016-07-28
 - Reverted improved allOf, anyOf and oneOf error messages
0.78  2016-07-28
 - Fix recursive dependencies #23
 - Add EXPERIMENTAL resolver attribute
 - Improved allOf, anyOf and oneOf error messages
0.77  2016-07-26
 - Avoid duplicate error messages with enum #22
 - Fix "false" must be false and not true in OpenAPI
0.76  2016-07-25
 - Will write default values into Mojolicious::Controller
0.75  2016-07-02
 - Fix uploads must not be slurped
 - Fix reporting error on missing response status definition
 - Add warnings on invalid (Perl) regexes
0.74  2016-06-22
 - Fix length($data) need be defined in 5.10
0.73  2016-06-22
 - Add http://git.io/vcKD4 error schema to cache
 - Add JSON schema for JSONPatch files
 - Updated Swagger2 spec to https://github.com/OAI/OpenAPI-Specification/blob/19fed9f0f812ccebe0fc45313fea75bb6656de1c/schemas/v2.0/schema.json
0.72  2016-06-10
 - Fix default cache_dir() path
 - JSON::Validator is no longer EXPERIMENTAL
 - Move Swagger2::SchemaValidator into JSON::Validator::OpenAPI
0.71  2016-06-07
 - Fix setting schema() inside validate()
0.70  2016-05-31
 - Fix allowing "id" as property name in objects
0.69  2016-05-26
 - Fix failing anyOf logic in t/swagger-validate-response-object.t
0.68  2016-05-25
 - Remove _merge_error to clarify anyOf errors #15
0.67  2016-04-11
 - Add JSON::Validator::Error class
0.66  2016-02-09
 - Fix validating recursive datastructures
0.65  2016-01-07
 - Fix t/swagger-validate-response-object.t require Swagger2 0.66 #14
0.64  2015-12-18
 - Fix treating JSON::PP::Boolean objects as boolean #13
   Contributor: Krasimir Berov
 - Allow hash reference as arguments to coerce #13
   Contributor: Krasimir Berov
0.63  2015-11-28
 - Fix skip test in t/booleans.t
0.62  2015-11-27
 - Remove support for YAML.pm #jhthorsen/swagger2#50
 - Remove support for YAML::Tiny #jhthorsen/swagger2#50
0.61  2015-11-11
 - Fix use of TO_JSON() on objects inside arrays #12
0.60  2015-11-09
 - Can use TO_JSON() when validating perl objects
0.59  2015-10-14
 - Move "collectionFormat" support to Swagger2
0.58  2015-10-13
 - Fix string "0" is not detected as boolean
0.57  2015-10-11
 - Trust guesswork if input data is undefined
0.56  2015-09-30
 - Can read YAML::XS booleans automatically #8
 - Change coerce() into a method. #8
 - Remove EXPERIMENTAL coerce attribute #8
 - Remove EXPERIMENTAL JSON_VALIDATOR_COERCE_VALUES and SWAGGER_COERCE_VALUES #8
0.55  2015-09-29
 - Fix "required" cannot be a boolean on properties
 - Improved documentation of error object
 - Change anyOf/allOf/oneOf error message
0.54  2015-09-27
 - Add support for $ref to relative path #3 #4 #5
 - Removed Swagger specific type "file"
 - Removed Swagger specific formats: "byte", "date", "double", "float", "int32" and "int64".
0.53  2015-09-13
 - Fix properties, patternProperties, additionalProperties interaction - patternProperty invalidates property
 - Fix validation for a keyword and instance SHOULD succeed when keywords does not match primitive type
 - Fix allOf with base schema - mismatch base schema
 - Fix checking for a boolean "required"
0.52  2015-09-05
 - Add guessing of schema type, based on other attributes
 - More strict on what is validated as "boolean"
 - Fix additionalItems are allowed by default
 - Fix additionalProperties allows a schema which should validate
 - Fix validating "enum"
 - Fix validating "array" against "additionalItems"
 - Fix bugs after running
   https://github.com/Relequestual/Test-JSON-Schema-Acceptance to validate
0.51  2015-08-24
 - Fix "$ref" pointing to a file on disk #1
0.50  2015-08-23
 - Fix missing namespace when registering new document
 - Made cache_dir() public
 - Bundled spec for json-schema and swagger
0.49  2015-08-23
 - Fix loading schema from files
0.48  2015-08-22
 - Merged core functionality from Swagger2 and Swagger2::SchemaValidator
   into this module, JSON::Validator
   See https://metacpan.org/source/JHTHORSEN/Swagger2-0.47/Changes for
   previous Changes (<=0.47)
 - Fix coercing collectionFormat strings into integers and numbers
 - Add support for reading schemas from __DATA__ section
 |