This repository was archived by the owner on Mar 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
Bump ajv from 6.12.6 to 7.2.1 in /tests #3521
Closed
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 7.2.1. - [Release notes](https://github.com/ajv-validator/ajv/releases) - [Commits](ajv-validator/ajv@v6.12.6...v7.2.1) Signed-off-by: dependabot[bot] <support@github.com>
Contributor
|
bors r+ |
bors bot
added a commit
that referenced
this pull request
Mar 8, 2021
3521: Bump ajv from 6.12.6 to 7.2.1 in /tests r=mergify[bot] a=dependabot[bot] Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 7.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ajv-validator/ajv/releases">ajv's releases</a>.</em></p> <blockquote> <h2>v7.2.1</h2> <p>Add <a href="https://github.com/nst/JSONTestSuite">tests</a> and fix parsers compiled with <code>ajv.compileParser</code> from JTD schemas:</p> <ul> <li>fail on invalid JSON: <ul> <li>trailing comma in arrays/objects</li> <li>invalid JSON numbers</li> <li>control characters in strings</li> </ul> </li> <li>fix parsing of u-escaped characters</li> <li>do not fail on duplicate object keys (consistent with JSON.parse)</li> </ul> <p>Compiled parsers are now:</p> <ul> <li>consistent with JSON.parse in case of invalid JSON</li> <li>only parse data that is valid for JTD schema</li> </ul> <p>It is a breaking change for compiled parsers compared with 7.2.0 that was released earlier pn the same day.</p> <h2>v7.2.0</h2> <p>strictRequired option (off by default) - to log or fail if properties used in JSON Schema "required" are not defined in "properties" (<a href="https://github.com/PBug90"><code>@PBug90</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1403">#1403</a>)</p> <p>Compiled parsers (as fast as JSON.parse on valid JSON, but replace validation and fail much faster on invalid JSON) and serializers (10x+ faster than JSON.stringify) from JSON Type Definition schemas (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1454">#1454</a>) - see examples in <a href="https://ajv.js.org/guide/getting-started.html#parsing-and-serializing-json">javascript</a> and <a href="https://ajv.js.org/guide/typescript.html#type-safe-parsers-and-serializers">typescript</a></p> <p>Please note: there are fixes to compiled parsers in <a href="https://github.com/ajv-validator/ajv/releases/tag/v7.2.1">7.2.1</a></p> <p>The website migrated to VuePress and documentation is restructured to make navigating Ajv documentation and learning easier - this is still work in progress, but already some improvement on the information structure. Any feedback/corrections would be very much appreciated!</p> <p>Improved TypeScript support for JSONSchemaType:</p> <ul> <li>JTDSchemaType<!-- raw HTML omitted --> utility type to convert your data type into the type of JTD schema, to simplify its writing and to make sure it is consistent with your data type, with type inference support for ajv methods (<a href="https://github.com/erikbrinkman"><code>@erikbrinkman</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1446">#1446</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1456">#1456</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1457">#1457</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1475">#1475</a>) - see <a href="https://ajv.js.org/guide/typescript.html#utility-types-for-schemas">example here</a></li> <li>Alternatively, you can use JTDDataType<!-- raw HTML omitted --> utility type to convert your JTD schema type into the type of data (<a href="https://github.com/erikbrinkman"><code>@erikbrinkman</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1458">#1458</a>) - see <a href="https://ajv.js.org/guide/typescript.html#utility-type-for-jtd-data-type">this example</a></li> </ul> <p>Other improvements by <a href="https://github.com/Fdawgs"><code>@Fdawgs</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1466">#1466</a>), <a href="https://github.com/t7yang"><code>@t7yang</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1472">#1472</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1473">#1473</a>), <a href="https://github.com/koba04"><code>@koba04</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1460">#1460</a>)</p> <h2>v7.1.1</h2> <p>Support readonly arrays with JSONSchemaType (<a href="https://github.com/LinusU"><code>@LinusU</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1447">#1447</a>)</p> <h2>v7.1.0</h2> <p>Support for JSON Type Definition RFC 8927 - a simple schema language provided as an alternative to JSON Schema.</p> <p>See these docs:</p> <ul> <li>an <a href="https://github.com/ajv-validator/ajv/blob/master/docs/json-type-definition.md">informal document</a> in Ajv repo</li> <li><a href="https://datatracker.ietf.org/doc/rfc8927/">RFC8927</a></li> <li><a href="https://github.com/ajv-validator/ajv#choosing-schema-language">choosing schema language</a> - comparison with JSON Schema</li> </ul> <p>Allow ":" in keyword names (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1421">#1421</a>, <a href="https://github.com/teq0"><code>@teq0</code></a>)</p> <h2>v7.0.4</h2> <p>Fix: duplicate functions in standalone validation code with mutually recursive schemas (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1361">#1361</a>) Fix: reference resolution when base URI change was not applied (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1414">#1414</a>)</p> <h2>v7.0.3</h2> <p>Fixes:</p> <ul> <li>oneOf error type (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1368">#1368</a>, <a href="https://github.com/G-Rath"><code>@G-Rath</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ajv-validator/ajv/commit/dd0eab50fd718249e3c7a0f5e7ed3227dff10e33"><code>dd0eab5</code></a> 7.2.1</li> <li><a href="https://github.com/ajv-validator/ajv/commit/813672558155c810cccf5ef61065690b8bc592e3"><code>8136725</code></a> docs: hide outbound link icon from links with images</li> <li><a href="https://github.com/ajv-validator/ajv/commit/8e07f307e95261ceb6fa427ee4d10a98b136d08d"><code>8e07f30</code></a> fix: JSON parsers</li> <li><a href="https://github.com/ajv-validator/ajv/commit/6cd8eb8624333642a33a64b907b864ec9cfe78dc"><code>6cd8eb8</code></a> JSON parse tests from nst/JSONTestSuite</li> <li><a href="https://github.com/ajv-validator/ajv/commit/0249f0fc9b62b76172ab324d8a27d58ef91b0201"><code>0249f0f</code></a> site: collapsible sidebar</li> <li><a href="https://github.com/ajv-validator/ajv/commit/9823d1d588762e10a05d5260c83a057eb11be3d8"><code>9823d1d</code></a> 7.2.0</li> <li><a href="https://github.com/ajv-validator/ajv/commit/db553ad00d8046ffc75b821c12a3e3ab5cea38d0"><code>db553ad</code></a> fix type inference for JTDSchemaType in compileParser/Serializer</li> <li><a href="https://github.com/ajv-validator/ajv/commit/23293bea73df2eb5add6cf384cc06785e69cae2d"><code>23293be</code></a> docs: add code block header</li> <li><a href="https://github.com/ajv-validator/ajv/commit/848d3f236a4792feee440733ab5948094acb3b7d"><code>848d3f2</code></a> docs: JSONDataType</li> <li><a href="https://github.com/ajv-validator/ajv/commit/0aa047bad652129ff39df2a403387988cf60e636"><code>0aa047b</code></a> fix indentation in code samples, turn off prettier for md files</li> <li>Additional commits viewable in <a href="https://github.com/ajv-validator/ajv/compare/v6.12.6...v7.2.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually </details> 3522: Bump nock from 13.0.10 to 13.0.11 in /tests r=mergify[bot] a=dependabot[bot] Bumps [nock](https://github.com/nock/nock) from 13.0.10 to 13.0.11. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/nock/nock/releases">nock's releases</a>.</em></p> <blockquote> <h2>v13.0.11</h2> <h2><a href="https://github.com/nock/nock/compare/v13.0.10...v13.0.11">13.0.11</a> (2021-03-07)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>interceptor:</strong> don't require leading slash if Scope has a base pathname (<a href="https://github-redirect.dependabot.com/nock/nock/issues/2168">#2168</a>) (<a href="https://github.com/nock/nock/commit/bfbbbb740d42e8e75aecc332d432fa0b415237f7">bfbbbb7</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nock/nock/commit/bfbbbb740d42e8e75aecc332d432fa0b415237f7"><code>bfbbbb7</code></a> fix(interceptor): don't require leading slash if Scope has a base pathname (#...</li> <li><a href="https://github.com/nock/nock/commit/cbee6fe31a6b699a2e113a110d42da0dd8d84b00"><code>cbee6fe</code></a> chore(deps): bump actions/cache from v2 to v2.1.4 (<a href="https://github-redirect.dependabot.com/nock/nock/issues/2158">#2158</a>)</li> <li><a href="https://github.com/nock/nock/commit/94a141acb79091e79a752ef3387f6c9d2ebe86f4"><code>94a141a</code></a> chore(test) update/remove client specific tests (<a href="https://github-redirect.dependabot.com/nock/nock/issues/2167">#2167</a>)</li> <li><a href="https://github.com/nock/nock/commit/bf514a07ff68cd4787920a763a4cb3fbb6563fc4"><code>bf514a0</code></a> chore(deps-dev): bump typescript from 4.2.2 to 4.2.3</li> <li><a href="https://github.com/nock/nock/commit/1b9e33c424d62e61a11badd18a1fe58eafcf04f2"><code>1b9e33c</code></a> chore(deps-dev): bump mocha from 8.3.0 to 8.3.1</li> <li><a href="https://github.com/nock/nock/commit/9c5a984e9af072df43a90e552a3905ae159e9f7b"><code>9c5a984</code></a> chore(deps-dev): bump eslint-plugin-mocha from 8.0.0 to 8.1.0</li> <li><a href="https://github.com/nock/nock/commit/018398579407f11383101d0ed6d56950e97d43e3"><code>0183985</code></a> chore(deps-dev): bump semantic-release from 17.3.9 to 17.4.1</li> <li><a href="https://github.com/nock/nock/commit/d7985d7debce6634385d42e127c2b922b673091a"><code>d7985d7</code></a> chore(deps-dev): bump chai from 4.3.0 to 4.3.3</li> <li><a href="https://github.com/nock/nock/commit/5eed3225c04000cd49697aa89dc13a4b15aa6cdb"><code>5eed322</code></a> chore(deps-dev): bump eslint-config-prettier from 6.15.0 to 8.1.0 (<a href="https://github-redirect.dependabot.com/nock/nock/issues/2161">#2161</a>)</li> <li><a href="https://github.com/nock/nock/commit/a3d0268c3836e736d3d6201048cfb6f1ab6ee4b1"><code>a3d0268</code></a> chore(deps-dev): bump eslint-config-standard from 14.1.1 to 16.0.2 (<a href="https://github-redirect.dependabot.com/nock/nock/issues/2156">#2156</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nock/nock/compare/v13.0.10...v13.0.11">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Contributor
|
Build failed (retrying...): |
bors bot
added a commit
that referenced
this pull request
Mar 8, 2021
3521: Bump ajv from 6.12.6 to 7.2.1 in /tests r=mergify[bot] a=dependabot[bot] Bumps [ajv](https://github.com/ajv-validator/ajv) from 6.12.6 to 7.2.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/ajv-validator/ajv/releases">ajv's releases</a>.</em></p> <blockquote> <h2>v7.2.1</h2> <p>Add <a href="https://github.com/nst/JSONTestSuite">tests</a> and fix parsers compiled with <code>ajv.compileParser</code> from JTD schemas:</p> <ul> <li>fail on invalid JSON: <ul> <li>trailing comma in arrays/objects</li> <li>invalid JSON numbers</li> <li>control characters in strings</li> </ul> </li> <li>fix parsing of u-escaped characters</li> <li>do not fail on duplicate object keys (consistent with JSON.parse)</li> </ul> <p>Compiled parsers are now:</p> <ul> <li>consistent with JSON.parse in case of invalid JSON</li> <li>only parse data that is valid for JTD schema</li> </ul> <p>It is a breaking change for compiled parsers compared with 7.2.0 that was released earlier pn the same day.</p> <h2>v7.2.0</h2> <p>strictRequired option (off by default) - to log or fail if properties used in JSON Schema "required" are not defined in "properties" (<a href="https://github.com/PBug90"><code>@PBug90</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1403">#1403</a>)</p> <p>Compiled parsers (as fast as JSON.parse on valid JSON, but replace validation and fail much faster on invalid JSON) and serializers (10x+ faster than JSON.stringify) from JSON Type Definition schemas (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1454">#1454</a>) - see examples in <a href="https://ajv.js.org/guide/getting-started.html#parsing-and-serializing-json">javascript</a> and <a href="https://ajv.js.org/guide/typescript.html#type-safe-parsers-and-serializers">typescript</a></p> <p>Please note: there are fixes to compiled parsers in <a href="https://github.com/ajv-validator/ajv/releases/tag/v7.2.1">7.2.1</a></p> <p>The website migrated to VuePress and documentation is restructured to make navigating Ajv documentation and learning easier - this is still work in progress, but already some improvement on the information structure. Any feedback/corrections would be very much appreciated!</p> <p>Improved TypeScript support for JSONSchemaType:</p> <ul> <li>JTDSchemaType<!-- raw HTML omitted --> utility type to convert your data type into the type of JTD schema, to simplify its writing and to make sure it is consistent with your data type, with type inference support for ajv methods (<a href="https://github.com/erikbrinkman"><code>@erikbrinkman</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1446">#1446</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1456">#1456</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1457">#1457</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1475">#1475</a>) - see <a href="https://ajv.js.org/guide/typescript.html#utility-types-for-schemas">example here</a></li> <li>Alternatively, you can use JTDDataType<!-- raw HTML omitted --> utility type to convert your JTD schema type into the type of data (<a href="https://github.com/erikbrinkman"><code>@erikbrinkman</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1458">#1458</a>) - see <a href="https://ajv.js.org/guide/typescript.html#utility-type-for-jtd-data-type">this example</a></li> </ul> <p>Other improvements by <a href="https://github.com/Fdawgs"><code>@Fdawgs</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1466">#1466</a>), <a href="https://github.com/t7yang"><code>@t7yang</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1472">#1472</a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1473">#1473</a>), <a href="https://github.com/koba04"><code>@koba04</code></a> (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1460">#1460</a>)</p> <h2>v7.1.1</h2> <p>Support readonly arrays with JSONSchemaType (<a href="https://github.com/LinusU"><code>@LinusU</code></a>, <a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1447">#1447</a>)</p> <h2>v7.1.0</h2> <p>Support for JSON Type Definition RFC 8927 - a simple schema language provided as an alternative to JSON Schema.</p> <p>See these docs:</p> <ul> <li>an <a href="https://github.com/ajv-validator/ajv/blob/master/docs/json-type-definition.md">informal document</a> in Ajv repo</li> <li><a href="https://datatracker.ietf.org/doc/rfc8927/">RFC8927</a></li> <li><a href="https://github.com/ajv-validator/ajv#choosing-schema-language">choosing schema language</a> - comparison with JSON Schema</li> </ul> <p>Allow ":" in keyword names (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1421">#1421</a>, <a href="https://github.com/teq0"><code>@teq0</code></a>)</p> <h2>v7.0.4</h2> <p>Fix: duplicate functions in standalone validation code with mutually recursive schemas (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1361">#1361</a>) Fix: reference resolution when base URI change was not applied (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1414">#1414</a>)</p> <h2>v7.0.3</h2> <p>Fixes:</p> <ul> <li>oneOf error type (<a href="https://github-redirect.dependabot.com/ajv-validator/ajv/issues/1368">#1368</a>, <a href="https://github.com/G-Rath"><code>@G-Rath</code></a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/ajv-validator/ajv/commit/dd0eab50fd718249e3c7a0f5e7ed3227dff10e33"><code>dd0eab5</code></a> 7.2.1</li> <li><a href="https://github.com/ajv-validator/ajv/commit/813672558155c810cccf5ef61065690b8bc592e3"><code>8136725</code></a> docs: hide outbound link icon from links with images</li> <li><a href="https://github.com/ajv-validator/ajv/commit/8e07f307e95261ceb6fa427ee4d10a98b136d08d"><code>8e07f30</code></a> fix: JSON parsers</li> <li><a href="https://github.com/ajv-validator/ajv/commit/6cd8eb8624333642a33a64b907b864ec9cfe78dc"><code>6cd8eb8</code></a> JSON parse tests from nst/JSONTestSuite</li> <li><a href="https://github.com/ajv-validator/ajv/commit/0249f0fc9b62b76172ab324d8a27d58ef91b0201"><code>0249f0f</code></a> site: collapsible sidebar</li> <li><a href="https://github.com/ajv-validator/ajv/commit/9823d1d588762e10a05d5260c83a057eb11be3d8"><code>9823d1d</code></a> 7.2.0</li> <li><a href="https://github.com/ajv-validator/ajv/commit/db553ad00d8046ffc75b821c12a3e3ab5cea38d0"><code>db553ad</code></a> fix type inference for JTDSchemaType in compileParser/Serializer</li> <li><a href="https://github.com/ajv-validator/ajv/commit/23293bea73df2eb5add6cf384cc06785e69cae2d"><code>23293be</code></a> docs: add code block header</li> <li><a href="https://github.com/ajv-validator/ajv/commit/848d3f236a4792feee440733ab5948094acb3b7d"><code>848d3f2</code></a> docs: JSONDataType</li> <li><a href="https://github.com/ajv-validator/ajv/commit/0aa047bad652129ff39df2a403387988cf60e636"><code>0aa047b</code></a> fix indentation in code samples, turn off prettier for md files</li> <li>Additional commits viewable in <a href="https://github.com/ajv-validator/ajv/compare/v6.12.6...v7.2.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually </details> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Contributor
|
Build failed: |
Contributor
Author
|
Superseded by #3546. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
3-days-old
This PR has been open for more than 3 weekdays
dependencies
Pull requests that update a dependency file
0 participants
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Bumps ajv from 6.12.6 to 7.2.1.
Release notes
Sourced from ajv's releases.
... (truncated)
Commits
dd0eab57.2.18136725docs: hide outbound link icon from links with images8e07f30fix: JSON parsers6cd8eb8JSON parse tests from nst/JSONTestSuite0249f0fsite: collapsible sidebar9823d1d7.2.0db553adfix type inference for JTDSchemaType in compileParser/Serializer23293bedocs: add code block header848d3f2docs: JSONDataType0aa047bfix indentation in code samples, turn off prettier for md filesDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually