Skip to content

Releases: mheap/json-schema-spell-checker

v2.2.0

06 Jun 12:57
Compare
Choose a tag to compare

What's Changed

Full Changelog: v2.1.1...v2.2.0

v2.1.1

05 Apr 12:29
Compare
Choose a tag to compare
  • Fix issues with Commander version bump

v2.1.0

07 Mar 15:52
Compare
Choose a tag to compare
  • Bump dependencies (including major Commander version)

v2.0.1

12 Nov 15:27
Compare
Choose a tag to compare
  • Update release workflow to ensure release includes the version bump commit

v2.0.0

09 Nov 11:20
2c1d09b
Compare
Choose a tag to compare

BREAKING CHANGES

Updated results format using [] rather than dot notation

// Old
$.paths["/"].get.responses["200"].description
// New
$['paths']['/']['get']['responses'][200]['description']

When providing a JSONPath argument, field names must no longer be quoted

// Old
-j "$..['description','title']"
// New
-j "$..[description,title]"

New features

  • Extended JSONPath support, including ~ (Resolves #7)

v1.0.3

08 Nov 16:08
Compare
Choose a tag to compare

New

  • Bump vulnerable dependencies
  • Add NPM release workflow
  • Add dependabot config file