Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Java: Add release notes for release 5.11.0 #1880

Merged
merged 4 commits into from
Aug 5, 2024
Merged
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
21 changes: 21 additions & 0 deletions docs-java/release-notes/release-notes-0-to-14.mdx
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
## 5.11.0 - August 01, 2024

[All Release Changes](https://github.com/SAP/cloud-sdk-java/releases/tag/rel%2F5.11.0)

### 🔧 Compatibility Notes

- The OpenAPI generator doesn't add `//NOPMD` after imports anymore.

### ✨ New Functionality

- Add experimental support for [_Destination Fragments_](https://help.sap.com/docs/connectivity/sap-btp-connectivity-cf/extending-destinations-with-fragments).
Fragment names can be passed upon requesting destinations via `DestinationServiceOptionsAugmenter.fragmentName("my-fragment-name")`.
- Allow removing properties when using a destination builder.

### 🐛 Fixed Issues

- The OpenAPI Generator correctly declares `@Nonnull` and `@Nullable` annotations on generated endpoint methods.
- The OpenAPI Generator uses correct camelCase again, when creating methods to _add items_ to a collections.
Version `5.10.0` used incorrect `addfooItems(Foo)` instead of `addFooItems(Foo)`.
This is fixed now.
newtork marked this conversation as resolved.
Show resolved Hide resolved

## 5.10.0 - June 12, 2024

[All Release Changes](https://github.com/SAP/cloud-sdk-java/releases/tag/rel%2F5.10.0)
Expand Down