-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: ajv 8 support #92
Conversation
@@ -1,1941 +1,31 @@ | |||
{ | |||
"description": "Schema for Atlassian Document Format.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is changed because it doesn't work properly with ajv 8, at least not in strict mode. It also yields different errors.
It is a simplified version more suitable for test-cases.
@@ -51,6 +51,7 @@ | |||
"@babel/preset-env": "^7.0.0", | |||
"@babel/preset-flow": "7.0.0", | |||
"@changesets/cli": "^1.3.0", | |||
"ajv": "^8.5.0", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The current tests runs against ajv 6, it now runs against latest.
In my fork I have opted to test against all versions declared in peerDependencies
instead, see test
Work based off work from ext on atlassian#92. Co-authored-by: ext <ext-github@sidvind.com>
* chore(deps): upgrading deps * feat: adding support for ajv@8 Work based off work from ext on atlassian#92. Co-authored-by: ext <ext-github@sidvind.com> Co-authored-by: ext <ext-github@sidvind.com>
Thanks for your contribution. Sorry, I have been very busy lately. I'm still looking for someone internally to take over this project. |
Fixes #90. Similar to #91 but I don't think that one is enough as it only fixes one instance of the problem.