You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: RELEASE_NOTES.md
+2-4
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,11 @@
2
2
3
3
## Summary
4
4
5
-
<!-- Here goes a general summary of what this release is about -->
5
+
This release mainly introduces a new feature that allows fallback components to be used in generated formulas, but it also fixes a few bugs and gets rid of `betterproto`/`grpclib` and goes back to Google's implementation.
6
6
7
7
## Upgrading
8
8
9
-
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
9
+
- The `frequenz-client-microgrid` dependency was bumped to `0.5.0`. This can cause dependency issues if you are using other API clients and the `frequenz-client-base` dependencies don't match.
10
10
11
11
## New Features
12
12
@@ -19,8 +19,6 @@
19
19
20
20
## Bug Fixes
21
21
22
-
- Bump the `grpclib` dependency to pull a fix for using IPv6 addresses.
23
-
24
22
- Allow setting `api_power_request_timeout` in `microgrid.initialize()`.
25
23
26
24
- Fix an issue where in grid meters could be identified as {pv/ev/battery/chp} meters in some component graph configurations.
Copy file name to clipboardexpand all lines: src/frequenz/sdk/microgrid/_power_distributing/_component_managers/_ev_charger_manager/_ev_charger_manager.py
+2-2
Original file line number
Diff line number
Diff line change
@@ -18,7 +18,7 @@
18
18
)
19
19
fromfrequenz.client.microgridimport (
20
20
ApiClient,
21
-
ClientError,
21
+
ApiClientError,
22
22
ComponentCategory,
23
23
EVChargerData,
24
24
)
@@ -339,7 +339,7 @@ async def _set_api_power(
339
339
_logger.warning(
340
340
"Timeout while setting power to EV charger %s", component_id
341
341
)
342
-
exceptClientErrorasexc:
342
+
exceptApiClientErrorasexc:
343
343
_logger.warning(
344
344
"Got a client error while setting power to EV charger %s: %s",
Copy file name to clipboardexpand all lines: src/frequenz/sdk/microgrid/_power_distributing/_component_managers/_pv_inverter_manager/_pv_inverter_manager.py
0 commit comments