@sap-cloud-sdk/util 3.0.0-20230228110142.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# @sap-cloud-sdk/util
|
|
2
|
+
|
|
3
|
+
## 3.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- fde964e37: [Compatibility Note] By default, generation of OData clients fails if a service path cannot be determined. Either provide `servicePath` value in the `options-per-service.json` or set `skipValidation` to true, in which case, `/` will be used.
|
|
8
|
+
- fde964e37: [Compatibility Note] The function `variadicArgumentToArray` is replaced by the function `transformVariadicArgumentToArray`.
|
|
9
|
+
- fde964e37: [Compatibility Note] Switch the compilerOptions.module to `Node16` instead of `CommonJS` for better interoperability with ES modules. See the [TypeScript handbook](https://www.typescriptlang.org/docs/handbook/esm-node.html) for technical details if needed.
|
|
10
|
+
- fde964e37: [Compatibility Note] The field `logger` on the interface `LoggerOptions` was not used and is removed from the interface.
|
|
11
|
+
|
|
12
|
+
## 2.11.0
|
|
13
|
+
|
|
14
|
+
## 2.10.0
|
|
15
|
+
|
|
16
|
+
## 2.9.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- 4c51d3dc: [New Functionality] Add method `setGlobalTransports` to support setting custom transport globally.
|
|
21
|
+
|
|
22
|
+
## 2.8.0
|
|
23
|
+
|
|
24
|
+
## 2.7.1
|
|
25
|
+
|
|
26
|
+
## 2.7.0
|
|
27
|
+
|
|
28
|
+
## 2.6.0
|
|
29
|
+
|
|
30
|
+
## 2.5.0
|
|
31
|
+
|
|
32
|
+
### Minor Changes
|
|
33
|
+
|
|
34
|
+
- 89f1c423: [Compatibility Note] Stop using `VCAP_SERVICES` to determine the log format. Use `setLogFormat` and `setGlobalLogFormat` to specify the log format. By default, the log format is set to `kibana` for `NODE_ENV=production` and `local` otherwise.
|
|
35
|
+
|
|
36
|
+
## 2.4.0
|
|
37
|
+
|
|
38
|
+
### Patch Changes
|
|
39
|
+
|
|
40
|
+
- 0a008674: [Fixed Issue] Fix a bug in the implementation of the trim method.
|
package/package.json
CHANGED