Skip to content

3.2.0

Compare
Choose a tag to compare
@SMILEY4 SMILEY4 released this 11 Jul 15:35
· 195 commits to release since this release
  • fixed bug: security examples not generated with correct type
  • quality of life improvements to dsl
    • get("example", {
        tags = listOf("tag1", "tag2")
        // new alternative (also available for other collection setters):
        tags("tag1", "tag2")
      }) {}
    • get("example", {
        response {
          HttpStatusCode.OK to { /*...*/}
          // new alternative:
          code(HttpStatusCode.OK) { /*...*/ }
        }
      }) {}