Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
cloud-sdk-js committed May 20, 2022
1 parent 04726a3 commit 76faebb
Show file tree
Hide file tree
Showing 146 changed files with 7,106 additions and 131 deletions.
7 changes: 0 additions & 7 deletions .changeset/fresh-cups-share.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/fuzzy-ducks-quack.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-foxes-bark.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fuzzy-wolves-yell.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/rare-foxes-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-masks-begin.md

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,33 @@

-

# 2.4.0

API Docs: https://sap.github.io/cloud-sdk/api/2.4.0

## Compatibility Note

- [connectivity] Mark the function `noDestinationErrorMessage` as internal API. (0a008674)
- [odata-v4] Mark the function `uriConverter` as internal API. (0a008674)
- [eslint-config] Switch the following `jsdoc` related levels from `warn` to `error`:
- `jsdoc/check-param-names`
- `jsdoc/require-description-complete-sentence`
- `jsdoc/require-jsdoc`
- `jsdoc/require-param`
- `jsdoc/require-returns` (0a008674)

## New Functionality

- [connectivity] Support self-signed certificate using the `trustStore` property of the destination object. (0a008674)

## Improvement

- [connectivity, http-client] Reduce default log output on the `info` level significantly.
[Compatibility Note] Only log the successful retrieval of destinations on the`info` log level, log everything else is on the `debug` or `warn` level. (04726a35)

## Fixed Issue

- [util] Fix a bug in the implementation of the trim method. (0a008674)

# 2.3.0

Expand Down
2 changes: 1 addition & 1 deletion DOCUMENTATION.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version: 2.3.0
## Version: 2.4.0

The SAP Cloud SDK for JavaScript and TypeScript consists of multiple libraries to enable you to write side-by-side extensions on SAP Business Technology Platform.

Expand Down
1 change: 1 addition & 0 deletions docs/api/2.4.0/.nojekyll
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
TypeDoc added this file to prevent GitHub Pages from using Jekyll. You can turn off this behavior by setting the `githubPages` option to false.
99 changes: 99 additions & 0 deletions docs/api/2.4.0/assets/highlight.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
:root {
--light-hl-0: #001080;
--dark-hl-0: #9CDCFE;
--light-hl-1: #000000;
--dark-hl-1: #D4D4D4;
--light-hl-2: #AF00DB;
--dark-hl-2: #C586C0;
--light-hl-3: #A31515;
--dark-hl-3: #CE9178;
--light-hl-4: #008000;
--dark-hl-4: #6A9955;
--light-hl-5: #0000FF;
--dark-hl-5: #569CD6;
--light-hl-6: #0070C1;
--dark-hl-6: #4FC1FF;
--light-hl-7: #267F99;
--dark-hl-7: #4EC9B0;
--light-hl-8: #795E26;
--dark-hl-8: #DCDCAA;
--light-hl-9: #000000;
--dark-hl-9: #C8C8C8;
--light-hl-10: #0451A5;
--dark-hl-10: #9CDCFE;
--light-code-background: #F5F5F5;
--dark-code-background: #1E1E1E;
}

@media (prefers-color-scheme: light) { :root {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--code-background: var(--light-code-background);
} }

@media (prefers-color-scheme: dark) { :root {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--code-background: var(--dark-code-background);
} }

body.light {
--hl-0: var(--light-hl-0);
--hl-1: var(--light-hl-1);
--hl-2: var(--light-hl-2);
--hl-3: var(--light-hl-3);
--hl-4: var(--light-hl-4);
--hl-5: var(--light-hl-5);
--hl-6: var(--light-hl-6);
--hl-7: var(--light-hl-7);
--hl-8: var(--light-hl-8);
--hl-9: var(--light-hl-9);
--hl-10: var(--light-hl-10);
--code-background: var(--light-code-background);
}

body.dark {
--hl-0: var(--dark-hl-0);
--hl-1: var(--dark-hl-1);
--hl-2: var(--dark-hl-2);
--hl-3: var(--dark-hl-3);
--hl-4: var(--dark-hl-4);
--hl-5: var(--dark-hl-5);
--hl-6: var(--dark-hl-6);
--hl-7: var(--dark-hl-7);
--hl-8: var(--dark-hl-8);
--hl-9: var(--dark-hl-9);
--hl-10: var(--dark-hl-10);
--code-background: var(--dark-code-background);
}

.hl-0 { color: var(--hl-0); }
.hl-1 { color: var(--hl-1); }
.hl-2 { color: var(--hl-2); }
.hl-3 { color: var(--hl-3); }
.hl-4 { color: var(--hl-4); }
.hl-5 { color: var(--hl-5); }
.hl-6 { color: var(--hl-6); }
.hl-7 { color: var(--hl-7); }
.hl-8 { color: var(--hl-8); }
.hl-9 { color: var(--hl-9); }
.hl-10 { color: var(--hl-10); }
pre, code { background: var(--code-background); }
Loading

0 comments on commit 76faebb

Please sign in to comment.