json-yaml-validate

A GitHub Action to quickly validate JSON and YAML files in a repository

MIT License

Stars
28
Committers
8

Bot releases are hidden (Show)

json-yaml-validate - v3.2.1 Latest Release

Published by GrantBirki about 2 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v3.2.0...v3.2.1

json-yaml-validate - v3.2.0

Published by GrantBirki about 2 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v3...v3.2.0

json-yaml-validate - v3.1.0

Published by GrantBirki 2 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v3...v3.1.0

json-yaml-validate - v3.0.0

Published by GrantBirki 5 months ago

What's Changed

⚠️ Potentially breaking changes ⚠️ - details

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2...v3.0.0

json-yaml-validate - v2.7.1

Published by GrantBirki 6 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.7.0...v2.7.1

json-yaml-validate - v2.7.0

Published by GrantBirki 6 months ago

What's Changed

This release adds a new input option (ajv_custom_regexp_formats) which allows users to define custom ajv regex formats for validating JSON data through their schemas. Thanks to @cfuerst for this excellent new feature! 🎉

Usage of this new feature is documented on the main README of this Action 📚

New Contributors

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.6.2...v2.7.0

json-yaml-validate - v2.6.2

Published by GrantBirki 7 months ago

What's Changed

This release mostly just updates internal node dependencies used by this GitHub Action

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.6.1...v2.6.2

json-yaml-validate - v2.6.1

Published by GrantBirki 8 months ago

What's Changed

Internal node dependency updates and CI updates

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.6.0...v2.6.1

json-yaml-validate - v2.6.0

Published by GrantBirki 10 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.5.0...v2.6.0

json-yaml-validate - v2.5.0

Published by GrantBirki 10 months ago

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.4.0...v2.5.0

json-yaml-validate - v2.4.0

Published by GrantBirki 12 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.3.1...v2.4.0

json-yaml-validate - v2.3.1

Published by GrantBirki about 1 year ago

json-yaml-validate - v2.3.0

Published by GrantBirki about 1 year ago

v2.3.0

This release adds a new Action's input that allows users to configure the "version" of the JSON schema definition they wish to use with the JSON schema validator.

New Option: json_schema_version

Acceptable Values:

  • "draft-07" default - this is used if you leave it blank
  • "draft-2019-09"
  • "draft-2020-12"

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.2.1...v2.3.0

json-yaml-validate - v2.2.1

Published by GrantBirki about 1 year ago

What's Changed

Thanks to @johnnyjayjay for the bug report that got resolved in this release! 🚀

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.2.0...v2.2.1

json-yaml-validate - v2.2.0

Published by GrantBirki about 1 year ago

v2.2.0

This release does the following:

For more details, see the section below and check out the PRs that landed 🚀

What's Changed

New Contributors

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.1.0...v2.2.0

json-yaml-validate - v2.1.0

Published by GrantBirki about 1 year ago

v2.1.0

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v2.0.0...v2.1.0

json-yaml-validate - v2.0.0

Published by GrantBirki about 1 year ago

v2.0.0

⚠️ Breaking Changes ⚠️

This release introduces potential breaking changes (https://github.com/GrantBirki/json-yaml-validate/pull/17) through the new use_dot_match option:

  • use_dot_match - Tells the Action whether to search paths that are "hidden" (begin with a . like .github). This option defaults to "true" and will search all paths matching "dot path criteria" unless set to "false".

For the majority of users, I do not expect issues to arise from this release. However, if you are not expecting dot (.) directories to be scanned, this Action may now fail for you unless you exclude this setting through use_dot_match: "false".

As always, feel free to open an issue in this repository if you have any questions

What's Changed

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v1.5.0...v2.0.0

json-yaml-validate - v1.5.0

Published by GrantBirki over 1 year ago

v1.5.0

This release adds a new input option (yaml_as_json) which allows you to use the more robust json_schema parser against YAML files.

What's Changed

New Contributors

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v1.4.0...v1.5.0

json-yaml-validate - v1.4.0

Published by GrantBirki over 1 year ago

v1.4.0

This release adds a new feature to the Action which enables it to only validate "git tracked files" by default. It does this by treating your project's .gitignore file as an extra exclude.txt file when running. This release also introduces two new input options to help you control this new behavior:

  • use_gitignore - If the .gitignore file in your project should be used to check if a file should be checked by this Action or not
  • git_ignore_path - The path to the .gitignore file in your repository to use if use_gitignore is set (which it is by default).

What's Changed

Special thanks to @djrmarques in https://github.com/GrantBirki/json-yaml-validate/issues/9 for helping with the idea on this feature

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v1.3.2...v1.4.0

json-yaml-validate - v1.3.2

Published by GrantBirki over 1 year ago

v1.3.2

This release updates internal dependencies in the Action

What's Changed

New Contributors

Full Changelog: https://github.com/GrantBirki/json-yaml-validate/compare/v1.3.1...v1.3.2