Skip to content

Commit 1b6f65d

Browse files
committed
Update release notes with new SSL options
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 22ca197 commit 1b6f65d

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

RELEASE_NOTES.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,15 @@
1212

1313
- The `parse_grpc_uri` function (and `BaseApiClient` constructor) now enables SSL by default (`ssl=false` should be passed to disable it).
1414

15-
- The `parse_grpc_uri` function now accepts an optional `default_ssl` parameter to set the default value for the `ssl` parameter when not present in the URI.
15+
- The `parse_grpc_uri` and `BaseApiClient` function now accepts a set of defaults to use when the URI does not specify a value for a given option.
1616

1717
## New Features
1818

19-
- The connection URI can now have a new `ssl_root_certificates_path` option to specify the path to the root certificates file to use when SSL is enabled.
19+
- The connection URI can now have a few new SSL options:
20+
21+
* `ssl_root_certificates_path` to specify the path to the root certificates file.
22+
* `ssl_private_key_path` to specify the path to the private key file.
23+
* `ssl_certificate_chain_path` to specify the path to the certificate chain file.
2024

2125
## Bug Fixes
2226

src/frequenz/client/base/channel.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -223,9 +223,6 @@ def _get_contents(
223223
224224
Returns:
225225
The contents of the source file or the default value.
226-
227-
Raises:
228-
ValueError: If the file cannot be read.
229226
"""
230227
file_path: pathlib.Path
231228
match source:

0 commit comments

Comments
 (0)