Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ It currently consists of

# Release Notes
BOAT is still under development and subject to change.
## 0.17.19
* boat-spring
* Fix [List of Maps of Strings generated code does not compile. ,https://github.com/Backbase/backbase-openapi-tools/issues/647]
## 0.17.18
* boat-spring
* Fix [Regression on putting valid annotation on FQCN,https://github.com/Backbase/backbase-openapi-tools/issues/619]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{{items.packageName}}
{{/useBeanValidation}}
{{! apply collection item type }}
{{items.simpleName}}>
{{{items.simpleName}}}>
{{#openApiNullable}}
{{#isNullable}}>{{/isNullable}}
{{/openApiNullable}}
23 changes: 23 additions & 0 deletions boat-scaffold/src/test/resources/boat-spring/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,29 @@ paths:
$ref: '#/components/schemas/ValidatedPojos'
example:
name: "valid name"
/lists-of-maps-of-strings:
put:
tags:
- lists-of-maps-of-strings
summary: get
description: Get an object with a list property that contains maps of string to string.
operationId: getMapsOfStringsObjects
responses:
200:
description: OK
content:
application/json:
schema:
type: object
properties:
maps:
type: array
items:
type: object
additionalProperties:
type: string
example:
name: "valid name"

/transactions:
patch:
Expand Down