Skip to content

Commit 245af53

Browse files
bot-sdk-jsMatKuhr
andauthored
Java: Add release notes for release 5.15.0 (#1971)
* Add new release notes * Add new release notes file --------- Co-authored-by: Matthias Kuhr <[email protected]>
1 parent 5cd5a80 commit 245af53

File tree

3 files changed

+34
-1
lines changed

3 files changed

+34
-1
lines changed

docs-java/release-notes.mdx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,11 @@ keywords:
1212
- sap cloud sdk
1313
---
1414

15-
import { ReleaseNotes0To14 } from './release-notes';
15+
16+
import {
17+
ReleaseNotes0To14,
18+
ReleaseNotes15To29
19+
} from './release-notes';
1620

1721
<!-- vale off -->
1822

@@ -56,4 +60,6 @@ It will help you:
5660
## Fixed Issues
5761
-->
5862

63+
<ReleaseNotes15To29 />
64+
5965
<ReleaseNotes0To14 />

docs-java/release-notes/index.jsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
import React from 'react';
22
import Notes0To14 from './release-notes-0-to-14.mdx';
3+
import Notes15To29 from './release-notes-15-to-29.mdx';
34

45
export function ReleaseNotes0To14() {
56
return <Notes0To14 />;
67
}
8+
9+
export function ReleaseNotes15To29() {
10+
return <Notes15To29 />;
11+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
## 5.15.0 - December 19, 2024
2+
3+
[All Release Changes](https://github.com/SAP/cloud-sdk-java/releases/tag/rel%2F5.15.0)
4+
5+
### ✨ New Functionality
6+
7+
- Add support for `TypeDefinition` entries in OData V4 EDMX files.
8+
- Add `generateApis` and `generateModels` options to the `openapi-generator-maven-plugin` to
9+
disable the generation of APIs and models respectively.
10+
11+
### 📈 Improvements
12+
13+
- Stabilize most of the remaining experimental APIs without changes, e.g.
14+
- RequestHeaderAccessor
15+
- ServiceBindingDestinationLoader
16+
- OData v2 and v4 generators now use `LinkedHashMap` for the properties of the generated classes to maintain the order of the properties.
17+
18+
### 🐛 Fixed Issues
19+
20+
- Fix ApacheHttpClient5Wrapper to propagate the configuration to Spring RestTemplate.
21+
- Fix OData v2 and v4 generators to work when property name is `value` or `values` and is of collection type.
22+
- The internal variable is now respectively `cloudSdkValue` or `cloudSdkValues` to avoid conflicts with the `value` or `values` property.

0 commit comments

Comments
 (0)