-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2,693 changed files
with
30,026 additions
and
8,700 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
## What Has Changed? | ||
|
||
Explain what you are changing and why, if it isn't obvious from the diff. | ||
|
||
**If you are working on the Java v4 docs, remember to also apply the changes to v5** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,11 @@ | ||
import React from 'react'; | ||
import Notes0To14 from './release-notes-0-to-14.mdx'; | ||
import Notes15To29 from './release-notes-15-to-29.mdx'; | ||
|
||
export function ReleaseNotes0To14() { | ||
return <Notes0To14 />; | ||
} | ||
|
||
export function ReleaseNotes15To29() { | ||
return <Notes15To29 />; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
## 5.15.0 - December 19, 2024 | ||
|
||
[All Release Changes](https://github.com/SAP/cloud-sdk-java/releases/tag/rel%2F5.15.0) | ||
|
||
### ✨ New Functionality | ||
|
||
- Add support for `TypeDefinition` entries in OData V4 EDMX files. | ||
- Add `generateApis` and `generateModels` options to the `openapi-generator-maven-plugin` to | ||
disable the generation of APIs and models respectively. | ||
|
||
### 📈 Improvements | ||
|
||
- Stabilize most of the remaining experimental APIs without changes, e.g. | ||
- RequestHeaderAccessor | ||
- ServiceBindingDestinationLoader | ||
- OData v2 and v4 generators now use `LinkedHashMap` for the properties of the generated classes to maintain the order of the properties. | ||
|
||
### 🐛 Fixed Issues | ||
|
||
- Fix ApacheHttpClient5Wrapper to propagate the configuration to Spring RestTemplate. | ||
- Fix OData v2 and v4 generators to work when property name is `value` or `values` and is of collection type. | ||
- The internal variable is now respectively `cloudSdkValue` or `cloudSdkValues` to avoid conflicts with the `value` or `values` property. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
docs-js_versioned_docs/version-v3/environments/code/Dockerfile.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
```Dockerfile title="Dockerfile" | ||
FROM node:14-alpine | ||
|
||
WORKDIR /workdir | ||
|
||
COPY /deployment /workdir | ||
|
||
RUN ["npm", "install", "--unsafe-perm"] | ||
|
||
EXPOSE 3000 | ||
CMD ["npm", "run", "start:prod"] | ||
``` |
29 changes: 29 additions & 0 deletions
29
docs-js_versioned_docs/version-v3/environments/code/index.jsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
import React from 'react'; | ||
import KymaApprouterTabsContent from './kyma-approuter-tabs.mdx'; | ||
import KymaAppTabsContent from './kyma-app-tabs.mdx'; | ||
import DockerFileContent from './Dockerfile.mdx'; | ||
import OperatorDestinationServiceContent from './operator-destination-service.mdx'; | ||
import OperatorXsuaaServiceContent from './operator-xsuaa-service.mdx'; | ||
import KubernetesOnPremiseContent from './kubernetes-on-premise.mdx'; | ||
|
||
export function DockerFile() { | ||
return <DockerFileContent />; | ||
} | ||
|
||
export function OperatorDestinationService() { | ||
return <OperatorDestinationServiceContent />; | ||
} | ||
export function OperatorXsuaaService() { | ||
return <OperatorXsuaaServiceContent />; | ||
} | ||
|
||
export function KymaApprouterTabs() { | ||
return <KymaApprouterTabsContent />; | ||
} | ||
export function KymaAppTabs() { | ||
return <KymaAppTabsContent />; | ||
} | ||
|
||
export function KubernetesTransparentProxy() { | ||
return <KubernetesOnPremiseContent />; | ||
} |
Oops, something went wrong.