Skip to content
This repository has been archived by the owner on Nov 16, 2022. It is now read-only.

Update ajv to the latest version 🚀 #85

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

greenkeeper[bot]
Copy link

@greenkeeper greenkeeper bot commented Apr 21, 2017

Version 5.0.0 of ajv just got published.

Dependency ajv
Current Version 4.11.7
Type dependency

The version 5.0.0 is not covered by your current version range.

Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.

I recommend you look into these changes and try to get onto the latest version of ajv.
Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.


Release Notes 5.0.0

This release is fully backward compatible, but it is likely to require either migrating your schemas (recommended, e.g. using "migrate" command of ajv-cli) or changing your code using Ajv.

You can still use draft-04 and v5 schemas with this release (see Migration guide below).

The changes below are based on 4.11.7 version.

JSON-Schema draft-06 support

  • Support for boolean schemas: wherever a schema is required, true/false can be used in order to always pass/fail validation.
  • $id keyword is used as schema URI (previously id).
  • exclusiveMaximum and exclusiveMinimum keywords must be numbers (previously boolean).
  • additional validation keywords: const, contains, propertyNames.
  • additional formats: uri-reference, uri-template.

See Internet drafts: JSON Schema, JSON Schema Validation.

Migrating from Ajv 4.x.x

Migrate your schemas

It is a recommended approach.

Required changes
  • replace id with $id
  • update $schema
  • replace boolean form of exclusiveMaximum/Minimum with numeric form
  • replace Ajv v5 constant with const
Optional changes
  • replace enum with a single allowed value with const
  • replace empty schemas with true
  • replace schemas {"not":{}} with false

You can use "migrate" command of ajv-cli to make these changes to your schemas.

If you need to continue using draft-04 schemas

var ajv = new Ajv({
  meta: false, // optional, to prevent adding draft-06 meta-schema
  extendRefs: true, // optional, current default is to 'fail', spec behaviour is to 'ignore'
  unknownFormats: 'ignore',  // optional, current default is true (fail)
  // ...
});

var metaSchema = require('ajv/lib/refs/json-schema-draft-04.json');
ajv.addMetaSchema(metaSchema);
ajv._opts.defaultMeta = metaSchema.id;

// optional, using unversioned URI is out of spec, see json-schema-org/json-schema-spec#216
ajv._refs['http://json-schema.org/schema'] = 'http://json-schema.org/draft-04/schema';

// Optionally you can also disable keywords defined in draft-06
ajv.removeKeyword('propertyNames');
ajv.removeKeyword('contains');
ajv.removeKeyword('const');

If you use need to continue using schemas requiring v5 mode of Ajv

var ajv = new Ajv({
  $data: true,
  patternGroups: true,
  meta: false, // optional, to prevent adding draft-06 meta-schema
  extendRefs: true, // optional, current default is to 'fail', spec behaviour is to 'ignore'
  unknownFormats: 'ignore',  // optional, current default is true (fail)
  // ...
});

ajv.addMetaSchema(require('ajv/lib/refs/json-schema-draft-04.json'));
ajv._refs['http://json-schema.org/schema'] = 'http://json-schema.org/draft-04/schema'; // optional, using unversioned URI is out of spec
var metaSchema = require('ajv/lib/refs/json-schema-v5.json');
ajv.addMetaSchema(metaSchema);
ajv._opts.defaultMeta = metaSchema.id;

// optional - to avoid changing the schemas
ajv.addKeyword('constant', { macro: x => ({ const: x }) }); // this keyword is renamed to const in draft-06
// you need to use version "^2.0.0" of ajv-keywords
require('ajv-keywords')(ajv, ['switch', 'patternRequired', 'formatMinimum', 'formatMaximum']);

// Optionally you can also disable propertyNames keyword defined in draft-06
ajv.removeKeyword('propertyNames');

Changes

Validation keywords

Moved/deprecated:

Formats

  • Support custom formats for numbers (#291).
  • Format "regex" is changed to prohibit \Z anchor.
  • Format "uri" is changed to only allow absolute URIs, relative URIs are supported with "uri-reference".
  • Added format "url" (WHATWG URL specification).

Methods

  • Methods are no longer bound to Ajv instances (#232).
  • compileAsync method returns Promise and supports async loading of meta-schemas (#249, #334).

Options

  • schemaId determining whether $id, id or both are used.
  • $data for $data reference support.
  • ownProperties supports all keywords (#197).
  • serialize to replace json-stable-stringify with another function to serialise schemas.
  • Log warning instead of throwing exception when option meta: false is used without validateSchema: false.
  • processCode: function() {} can be used to beautify/transpile generated code.
  • beautify: true is no longer supported.
  • v5 is no longer used.

Option defaults changed:

  • extendRefs: "ignore" - when $ref is used other keywords are ignored (was true) (#294).
  • sourceCode: false - do not store source code of validation functions (was true) (#309).
  • unknownFormats: true - fail schema compilation (was "ignore") (#324).

Asynchronous validation

  • Auto-detection of async mode and transpile option support require ajv-async package.
  • Default async mode is "co*" (co-wrapped generator functions).
  • If you need to transpile code without ajv-async package, you can pass transpilation function in processCode option. See Options.
  • In case of validation success, returned Promise resolves with validated data to simplify chaining (previously it resolved with true).

Other

  • Ajv.MissingRefError class is used to throw missing $ref exception.
  • Typings are updated - typescript 2.0 is required.
  • Errors are logged using console.warn and console.error (#265).
  • Improve error handling (#380, #394).
  • Improve webpack support (#403).

Related packages

Compatible versions are:

Commits

The new version differs by 144 commits .

  • 8641c6b version 5.0.0
  • fde7030 Merge pull request #464 from epoberezkin/5.0.0
  • 21818c7 Merge branch 'master' into 5.0.0
  • 2fc8a64 Merge branch 'master' into 5.0.0
  • 67dd36a version 5.0.4-beta.3
  • e82b62d Merge branch 'master' into 5.0.0
  • b8fdbd1 Merge branch 'gajus-feat/add-url-record-format' into 5.0.0
  • 8bb21dd Merge branch 'feat/add-url-record-format' of https://github.com/gajus/ajv into gajus-feat/add-url-record-format
  • 3b0eee3 Merge branch 'master' into 5.0.0
  • cc711fc docs: migrate schemas with ajv-cli
  • d9ee511 fix: modifying custom keyword should not update parent data of root data
  • 3f9ab64 feat: more comprehencive uri-reference format in {format: "full"} mode
  • 0b308db test: update JSON-Schema-Test-Suite, enable optional/bignum test
  • 2daf587 version 5.0.4-beta.0
  • 02f9a15 Merge branch 'master' into 5.0.0

There are 144 commits in total. See the full diff.

Not sure how things should work exactly?

There is a collection of frequently asked questions and of course you may always ask my humans.


Your Greenkeeper Bot 🌴

@coveralls
Copy link

Coverage Status

Coverage remained the same at 100.0% when pulling ca17d5c on greenkeeper/ajv-5.0.0 into 3452dff on master.

@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 28, 2017

Version 5.0.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 17 commits0.

  • 4504e97 version 5.0.1
  • 3aa523e Merge branch 'v4'
  • de9fad5 version 4.11.8
  • 4ed756e fix: duplicate "type" error is reported with coerceTypes option, fixes #469
  • 92bfeda test: skipped test for error reporting with coerceTypes option, #469
  • 9802e23 docs: migration note
  • 04852b1 Merge pull request #473 from mrjgreen/patch-1
  • b5661eb Update README.md
  • 2fb973d Merge pull request #470 from RobDesideri/patch-1
  • ac6c49d Correct typo in README
  • 20aa542 docs: update issue template
  • c229260 Merge pull request #465 from ehmicky/patch-1
  • 0acbdac Document uri-template format
  • 8cb411a docs: use new Ajv in runkit example
  • 995822f docs: remove npm install beta

There are 17 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request May 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 14, 2017

Version 5.1.0 just got published.

Update to this version instead 🚀

Release Notes v5.1.0

Changed order of type validation - "type" keyword is now validated before keywords that apply to all types.

Commits

The new version differs by 7 commits0.

  • d2cb328 5.1.0
  • a8d91c5 Merge pull request #488 from epoberezkin/type-validation
  • a02b9a6 refactor: make sure "type": "integer" is vaildated before other keywords, closes #485
  • f60fedb feat: validate types before other keywords, #485
  • 6f0ff64 docs: fix example for additionalProperties keyword
  • 78fffde Merge pull request #479 from handrews/error-doc
  • a71cece docs: FAQ for additionalProperties error messages

false

See the full diff

greenkeeper bot added a commit that referenced this pull request May 14, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 14, 2017

Version 5.1.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits0.

  • a454569 5.1.1
  • 58a2272 fix: incorrect integer validation, closes #490

false

See the full diff

greenkeeper bot added a commit that referenced this pull request May 19, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 19, 2017

Version 5.1.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 13 commits.

  • 29e6238 5.1.2
  • 9e5eeb1 Merge branch 'blainesch-patch-1'
  • fc66d31 docs: it.util.equal
  • d01a0b8 Expose equal from util.
  • bd1af60 Merge branch 'boenrobot-uglify3'
  • a7804bd Made bundle.js write the uncompressed bundle only when standalone is present. Previously, it would instead write it, and remove it later if applicable.
  • 38808e1 Merge branch 'master' into uglify3
  • 5d9c93b Merge pull request #484 from epoberezkin/greenkeeper/initial
  • be552a6 Tweaked bundle.js to support UglifyJS3.
  • 8ffd98c use uglify-js 2.x
  • f3abd13 Merge branch 'master' into greenkeeper/initial
  • 4b7e422 docs(readme): add Greenkeeper badge
  • 0829178 chore(package): update dependencies

See the full diff

greenkeeper bot added a commit that referenced this pull request May 20, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 20, 2017

Version 5.1.3 just got published.

Update to this version instead 🚀

Commits

The new version differs by 4 commits.

  • 788bb7b 5.1.3
  • 022a825 test: additional tests to verify number of errors when type is used
  • 6f1f083 fix: type validation
  • cad7605 Revert "refactor: make sure "type": "integer" is vaildated before other keywords, closes #485"

See the full diff

greenkeeper bot added a commit that referenced this pull request May 25, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented May 25, 2017

Version 5.1.4 just got published.

Update to this version instead 🚀

Commits

The new version differs by 7 commits.

  • 5f1a8fd 5.1.4
  • 08cbec7 fix: add var
  • 2977088 fix: contains allows empty array when sibling property uses $ref in schema, closes #502
  • 78ba5ef test: failing test for #502 (contains allows epty array when sibling property uses $ref in schema)
  • f2f7a7d test: add jshint
  • d41c12b docs: fix link
  • b05f9d9 docs: corrections

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 15, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 15, 2017

Version 5.1.6 just got published.

Update to this version instead 🚀

Commits

The new version differs by 8 commits.

  • ff9f93a 5.1.6
  • 0d6ae42 fix: traverse only schema objects, fixes #521
  • daf7d6b docs: using with draft-04
  • 9f0b563 Merge pull request #508 from epoberezkin/greenkeeper/nyc-11.0.2
  • 55727d9 test: remove node v0.12, v5, add v8 to travis test
  • eac5902 chore(package): update nyc to version 11.0.2
  • f1c9f15 Merge pull request #507 from epoberezkin/greenkeeper/chai-4.0.1
  • d74a381 chore(package): update chai to version 4.0.1

See the full diff

greenkeeper bot added a commit that referenced this pull request Jun 16, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jun 16, 2017

Version 5.2.0 just got published.

Update to this version instead 🚀

Release Notes 5.2.0

Refactor: separate "equal" into package fast-deep-equal

Commits

The new version differs by 2 commits.

  • 2343425 5.2.0
  • 0a1c57e refactor: replace "equal" with package fast-deep-equal

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 6, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 6, 2017

Version 5.2.1 just got published.

Update to this version instead 🚀

Commits

The new version differs by 13 commits.

  • 8c4d329 5.2.1
  • 4d76c6f Merge pull request #525 from epoberezkin/greenkeeper/eslint-4.1.0
  • 80dddfd style: enable no-useless-escape rule
  • e25fc25 style: changes in eslint config for eslint v4
  • 3392684 Merge branch 'master' into greenkeeper/eslint-4.1.0
  • 5211740 Merge pull request #527 from epoberezkin/greenkeeper/del-cli-1.1.0
  • df1606a Merge pull request #532 from jboavida/unescape-json-ptr
  • 107c4d2 Add util.unescapeJsonPointer to compilation context
  • 8781f0b chore(package): update del-cli to version 1.1.0
  • 9741365 docs: correct JSON-Schema to JSON Schema
  • 4e24030 chore(package): update eslint to version 4.1.0
  • fb23fe1 Merge pull request #523 from epoberezkin/greenkeeper/fast-deep-equal-1.0.0
  • 70251c9 fix(package): update fast-deep-equal to version 1.0.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 10, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 10, 2017

Version 5.2.2 just got published.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

  • 97a3185 5.2.2
  • 6a2225b fix: same missing $ref used more then once throws exception with missingRefs: false, fixes #533

See the full diff

greenkeeper bot added a commit that referenced this pull request Sep 25, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Sep 25, 2017

Version 5.2.3 just got published.

Update to this version instead 🚀

Commits

The new version differs by 11 commits.

  • e98d031 5.2.3
  • 2b0f141 docs: using referenced schemas, closes #572, closes #574
  • 27a009c Merge pull request #571 from F1NYA/patch-1
  • 08f0b59 Superfluous bracket in README.md
  • 9a13b28 Merge pull request #566 from epoberezkin/greenkeeper/js-beautify-1.7.3
  • 4ee5790 chore(package): update js-beautify to version 1.7.3
  • 54076b3 Merge pull request #564 from epoberezkin/greenkeeper/js-beautify-pin-1.6.14
  • f173fdb chore: pin js-beautify to 1.6.14
  • 324cf30 Merge pull request #562 from dzuremar/patch-1
  • 40f614d Update KEYWORDS.md
  • 1452f30 docs: show $data option in example, #529, #536

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 22, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 22, 2017

Version 5.2.4 just got published.

Update to this version instead 🚀

Commits

The new version differs by 23 commits.

  • 80470c3 5.2.4
  • d5eecbd chore: update uglify-js
  • 03b8d67 Merge pull request #592 from epoberezkin/fix-types
  • 8f27e54 Merge pull request #598 from gj/fix-typos-in-readme
  • 40bef80 docs: readme.md
  • 5225354 docs: readme.md corrections
  • cbff507 Fix minor grammatical issues and typos in README.md
  • a30289e Merge pull request #595 from epoberezkin/greenkeeper/uglify-js-pin-3.1.3
  • 1ceefdb chore: pin uglify-js to 3.1.3
  • 2838678 fix: type definition for Ajv, closes #568
  • b6d35aa fix: type definition for ValidateFunction, closes #584
  • 3db9656 fix: type definition for FormatValidator, closes #570
  • baa2bd7 chore: update js-beautify version, closes #580
  • c843d18 Merge pull request #576 from epoberezkin/greenkeeper/mocha-4.0.0
  • aeecc77 Merge pull request #577 from hans-kinnek/patch-1

There are 23 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 24, 2017
@greenkeeper
Copy link
Author

greenkeeper bot commented Oct 24, 2017

Version 5.2.5 just got published.

Update to this version instead 🚀

Commits

The new version differs by 3 commits.

  • 991b4be 5.2.5
  • 4e12e8f Merge pull request #606 from Delagen/master
  • afae68a fix typings from #592, fixes #603

See the full diff

greenkeeper bot added a commit that referenced this pull request Oct 24, 2017
greenkeeper bot added a commit that referenced this pull request Nov 29, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 29, 2018

  • The dependency ajv was updated from 4.11.8 to 6.6.0.

Update to this version instead 🚀

Release Notes for v6.6.0

Keyword "nullable" from OpenAPI spec
Replaced phantomjs with headless chrome

Commits

The new version differs by 7 commits.

  • d665aab 6.6.0
  • 9fd1c2a chore: un-pin bluebird
  • f9fcc50 refactor: remove "equal" file
  • f5937d9 remove old draft-6 mentions
  • d298a48 fix types
  • c8a3277 docs: type definition for serialize option, #880
  • f2010f4 feat: keyword "nullable", #486, closes epoberezkin/ajv-keywords#32

See the full diff

greenkeeper bot added a commit that referenced this pull request Nov 29, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Nov 29, 2018

  • The dependency ajv was updated from 4.11.8 to 6.6.1.

Update to this version instead 🚀

Commits

The new version differs by 2 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Dec 16, 2018
@greenkeeper
Copy link
Author

greenkeeper bot commented Dec 16, 2018

  • The dependency ajv was updated from 4.11.8 to 6.6.2.

Update to this version instead 🚀

Commits

The new version differs by 9 commits.

  • 78b77b6 6.6.2
  • b4c0af9 docs: mark url format as deprecated
  • 223058b refactor: remove uri format change during schema validation, closes #906
  • 9380a10 Merge branch 'duxing-master'
  • aec3c5b Merge branch 'master' of https://github.com/duxing/ajv into duxing-master
  • 8f24e34 Replace lib/refs/json-schema-draft-04.json with a copy of the official one
  • 059448c Merge pull request #900 from epoberezkin/greenkeeper/karma-sauce-launcher-2.0.0
  • 3df9b73 Adding example to load official draft-04 to README
  • a37ed7d chore(package): update karma-sauce-launcher to version 2.0.0

See the full diff

greenkeeper bot added a commit that referenced this pull request Jan 13, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jan 13, 2019

  • The dependency ajv was updated from 4.11.8 to 6.7.0.

Update to this version instead 🚀

Release Notes for v6.7.0

Option useDefaults: "empty" to replace null and "" (empty strings) with default values.
Update draft-04 meta-schema to remove incorrect usage of "uri" format.

Commits

The new version differs by 17 commits.

There are 17 commits in total.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 2, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 2, 2019

  • The dependency ajv was updated from 4.11.8 to 6.8.0.

Update to this version instead 🚀

Release Notes for v6.8.0

Docs: security considerations.
Meta-schema for the security assessment of JSON Schemas.

Commits

The new version differs by 8 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 2, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 2, 2019

  • The dependency ajv was updated from 4.11.8 to 6.8.1.

Update to this version instead 🚀

Commits

The new version differs by 1 commits.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 9, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 9, 2019

  • The dependency ajv was updated from 4.11.8 to 6.9.0.

Update to this version instead 🚀

Release Notes for v6.9.0

OpenAPI keyword nullable can be any boolean (and not only true).
Custom keyword definition changes:

  • dependencies option in to require the presence of keywords in the same schema.
  • more strict validation of the definition using JSON Schema.
Commits

The new version differs by 14 commits.

  • cd404c4 6.9.0
  • 7079aed remove property in custom keyword definition schema
  • c89ca0e eslint option
  • 47c8fc9 refactor: use json schema to validate custom keyword definition
  • 33d1ac4 style fix
  • fdfbd44 feat: support for required dependencies of custom keyword (keywords that must be present in the same schema)
  • f080c91 docs: double quotes
  • 51e858e docs: clarify "format" option values
  • 0cf6e98 Merge branch 'mattpolzin-nullable-can-be-false'
  • ac2221a style fix
  • c5b9516 Merge branch 'master' into nullable-can-be-false
  • 58879a0 fix: pin jshint to 2.9.7 (#939)
  • 859259e Add tests that show that with nullable option on but 'nullable' keyword set to false an object is not nullable.
  • 28c85ad Allow nullable property of JSON Schema object to be false as well as true. Remove test that asserted failure if nullable was false.

See the full diff

greenkeeper bot added a commit that referenced this pull request Feb 10, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 10, 2019

  • The dependency ajv was updated from 4.11.8 to 6.9.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 22, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 22, 2019

  • The dependency ajv was updated from 4.11.8 to 6.9.2.

Update to this version instead 🚀

Commits

The new version differs by 11 commits.

  • 2aa49ae 6.9.2
  • dffe473 chore(package): update mocha to version 6.0.0 (#952)
  • 6831b68 feat: extract method to validate custom keyword definition
  • 187e021 fix: removeAdditional option breaking custom keywords, closes #955, closes epoberezkin/ajv-keywords#91
  • f6d25de Replace single quotes with double quotes to get build scripts running on Windows (#946)
  • c52f2e1 update package.json scripts
  • 098df6d test: enable browser tests in node 10
  • 8720547 skip browser tests
  • a7f78f2 refactor: split issues.spec.js file
  • 71dc5dc refactor: split options.spec.js file
  • 51685b8 chore(package): update nyc to version 13.2.0 (#930)

See the full diff

greenkeeper bot added a commit that referenced this pull request Mar 3, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Mar 3, 2019

  • The dependency ajv was updated from 4.11.8 to 6.10.0.

Update to this version instead 🚀

Release Notes for v6.10.0

Option strictDefaults to report ignored defaults (#957, @not-an-aardvark)
Option strictKeywords to report unknown keywords (#781)

Commits

The new version differs by 8 commits.

  • 6c20483 6.10.0
  • 38d1acd refactor: strictDefaults option
  • e993bd6 feat: strictKeywords option to report unknown keywords, closes #781
  • 9a28689 style: fix
  • 18268c5 additional tests for strictDefault options
  • 4b76519 Merge branch 'not-an-aardvark-invalidDefaults-option'
  • 88199d5 rename option to strictDefaults
  • c081061 feat: invalidDefaults option to warn when defaults are ignored, fixes #957

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 6, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 6, 2019

  • The dependency ajv was updated from 4.11.8 to 6.10.1.

Update to this version instead 🚀

Commits

The new version differs by 12 commits.

  • 8b59052 6.10.1
  • 66c2907 chore(package): update del-cli to version 2.0.0 (#1014)
  • d476534 chore(package): update eslint to version 6.0.0 (#1030)
  • c468632 test: update node.js versions for travis test
  • 3ca7571 chore: update jshint
  • 120d746 chore(package): update nyc to version 14.0.0 (#994)
  • c3093bb Add "empty" to useDefaults Option type definition (#1020)
  • ab841b4 fix: addKeyword and schema without ID, closes #1001
  • bc993de chore(package): update karma to version 4.0.1 (#959)
  • 6be5ff6 fix(types): add strictKeywords to Options interface (#975)
  • 78a9403 update JSON-Schema-Test-Suite
  • d107207 Fix wrong json schema reference (#961)

See the full diff

greenkeeper bot added a commit that referenced this pull request Jul 14, 2019
@greenkeeper
Copy link
Author

greenkeeper bot commented Jul 14, 2019

  • The dependency ajv was updated from 4.11.8 to 6.10.2.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Feb 22, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Feb 22, 2020

  • The dependency ajv was updated from 4.11.8 to 6.12.0.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Apr 18, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 18, 2020

  • The dependency ajv was updated from 4.11.8 to 6.12.1.

Update to this version instead 🚀

greenkeeper bot added a commit that referenced this pull request Apr 19, 2020
@greenkeeper
Copy link
Author

greenkeeper bot commented Apr 19, 2020

  • The dependency ajv was updated from 4.11.8 to 6.12.2.

Update to this version instead 🚀

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant