Releases: udamir/allof-merge
Releases · udamir/allof-merge
0.6.3 - Auto select merge rules based on input
0.6.2 - Support input with cycle references
- support input with cycle references
0.6.1 - GraphApi support
- add graphapi support
- bump json-crawl
- bugfix
0.5.0 - Handler for $ref resolve errors
Merge pull request #34 from udamir/dependabot/npm_and_yarn/jest-and-t…
0.4.0 - Merge of combinaries with sibling content support
Added option mergeCombinarySibling
. Default value "false".
Enable of this option will do the following:
{
type: "object",
properties: {
id: {
type: "string",
},
},
oneOf: [
{
properties: {
key: {
type: "string",
},
},
},
{
additionalProperties: {
type: "string",
},
},
],
}
converts to
{
oneOf: [
{
type: "object",
properties: {
id: {
type: "string",
},
key: {
type: "string",
},
},
},
{
type: "object",
properties: {
id: {
type: "string",
},
},
additionalProperties: {
type: "string",
},
},
],
}
0.3.0 - Merge of $ref and sibling content support
Added option mergeRefSibling. Default value "false".
Enable of this option will do the following:
{
$ref: "#/test",
description: "test"
}
converts to
{
allOf: [
{ $ref: "#/test" },
{ description: "test" }
]
}
0.2.0 - Circular references support
Merge pull request #18 from udamir/dependabot/github_actions/coverall…