Skip to content

Commit

Permalink
Merge branch 'develop' into release
Browse files Browse the repository at this point in the history
  • Loading branch information
SMILEY4 committed Mar 15, 2024
2 parents 6642003 + 6699f97 commit dbab8bf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.gitlab.arturbosch.detekt.Detekt
object Meta {
const val groupId = "io.github.smiley4"
const val artifactId = "ktor-swagger-ui"
const val version = "2.7.4"
const val version = "2.8.0"
const val name = "Ktor Swagger-UI"
const val description = "Ktor plugin to document routes and provide Swagger UI"
const val licenseName = "The Apache License, Version 2.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ dependencies {
val swaggerParserVersion = "2.1.19"
implementation("io.swagger.parser.v3:swagger-parser:$swaggerParserVersion")

val jsonSchemaGeneratorVersion = "4.32.0"
val jsonSchemaGeneratorVersion = "4.33.1"
implementation("com.github.victools:jsonschema-generator:$jsonSchemaGeneratorVersion")
implementation("com.github.victools:jsonschema-module-jackson:$jsonSchemaGeneratorVersion")
implementation("com.github.victools:jsonschema-module-swagger-2:$jsonSchemaGeneratorVersion")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ data class EncodingData(
.with(Option.ALLOF_CLEANUP_AT_THE_END)
.with(Option.MAP_VALUES_AS_ADDITIONAL_PROPERTIES)
.with(Option.DEFINITIONS_FOR_ALL_OBJECTS)
.with(Option.INLINE_NULLABLE_SCHEMAS)
.without(Option.INLINE_ALL_SCHEMAS)
.also {
it.forTypesInGeneral()
Expand Down

0 comments on commit dbab8bf

Please sign in to comment.