Skip to content

Releases: udamir/allof-merge

0.6.3 - Auto select merge rules based on input

25 Dec 18:25
Compare
Choose a tag to compare
  • add auto select of MergeRules based on input

0.6.2 - Support input with cycle references

25 Dec 16:42
Compare
Choose a tag to compare
  • support input with cycle references

0.6.1 - GraphApi support

25 Dec 12:07
29b9974
Compare
Choose a tag to compare
  • add graphapi support
  • bump json-crawl
  • bugfix

0.5.0 - Handler for $ref resolve errors

25 Sep 10:51
dc4fb94
Compare
Choose a tag to compare
Merge pull request #34 from udamir/dependabot/npm_and_yarn/jest-and-t…

…ypes/jest-29.7.0

Bump jest and @types/jest

0.4.0 - Merge of combinaries with sibling content support

26 Aug 19:55
Compare
Choose a tag to compare

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

23 Aug 20:00
Compare
Choose a tag to compare

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

18 Jul 19:26
b5908ca
Compare
Choose a tag to compare
Merge pull request #18 from udamir/dependabot/github_actions/coverall…

…sapp/github-action-2.2.1

Bump coverallsapp/github-action from 2.2.0 to 2.2.1