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
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,13 @@ It currently consists of

# Release Notes
BOAT is still under development and subject to change.
## 0.17.59
* Fix bug where java-spring generator puts `@Valid` annoation on return type of Api methods, cause service to blame
client for invalid generated response with a 400 status.
## 0.17.58

## 0.17.57

## 0.17.56
* Added new `flattenOutput` parameter into `bundle` execution to generate the bundled APIs directly into `output` directory, even though the respective `input` files are located within a subdirectory in the `input`.
## 0.17.55
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -392,6 +392,9 @@ public CodegenOperation fromOperation(String path, String httpMethod, Operation
codegenParameter.paramName = "httpServletRequest";
codegenOperation.allParams.add(codegenParameter);
}
if (codegenOperation.returnType != null) {
codegenOperation.returnType = codegenOperation.returnType.replace("@Valid", "");
}
return codegenOperation;
}

Expand Down
Loading