File tree Expand file tree Collapse file tree 3 files changed +34
-1
lines changed
Expand file tree Collapse file tree 3 files changed +34
-1
lines changed Original file line number Diff line number Diff 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 />
Original file line number Diff line number Diff line change 11import React from 'react' ;
22import Notes0To14 from './release-notes-0-to-14.mdx' ;
3+ import Notes15To29 from './release-notes-15-to-29.mdx' ;
34
45export function ReleaseNotes0To14 ( ) {
56 return < Notes0To14 /> ;
67}
8+
9+ export function ReleaseNotes15To29 ( ) {
10+ return < Notes15To29 /> ;
11+ }
Original file line number Diff line number Diff line change 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.
You can’t perform that action at this time.
0 commit comments