Skip to content

Commit cfa2ca3

Browse files
Update release-notes
To add an entry to release-nots related to preventing stacking of power requests to avoid delays in processing when the request frequency exceeds the processing time. Signed-off-by: Daniel Zullo <[email protected]>
1 parent 9900af7 commit cfa2ca3

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

RELEASE_NOTES.md

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@
77
## Upgrading
88

99
- The `frequenz.sdk.microgrid.*_pool` methods has been renamed to `new_*_pool`, to make it explicit that they create new instances of the pool classes.
10-
+ `battery_pool` -> `new_battery_pool`
11-
+ `ev_charger_pool` -> `new_ev_charger_pool`
12-
+ `pv_pool` -> `new_pv_pool`
10+
- `battery_pool` -> `new_battery_pool`
11+
- `ev_charger_pool` -> `new_ev_charger_pool`
12+
- `pv_pool` -> `new_pv_pool`
1313

1414
- The following component metric streams have been renamed to clarify that they stream per-phase values:
15-
+ `frequenz.sdk.microgrid.`
16-
* `voltage` -> `voltage_per_phase`
17-
* `grid.current` -> `grid.current_per_phase`
18-
* `ev_charger_pool.current` -> `ev_charger_pool.current_per_phase`
15+
- `frequenz.sdk.microgrid.`
16+
- `voltage` -> `voltage_per_phase`
17+
- `grid.current` -> `grid.current_per_phase`
18+
- `ev_charger_pool.current` -> `ev_charger_pool.current_per_phase`
1919

20-
* Passing a `request_timeout` in calls to `*_pool.propose_power` is no longer supported. It may be specified at application startup, through the new optional `api_power_request_timeout` parameter in the `microgrid.initialize()` method.
20+
- Passing a `request_timeout` in calls to `*_pool.propose_power` is no longer supported. It may be specified at application startup, through the new optional `api_power_request_timeout` parameter in the `microgrid.initialize()` method.
2121

2222
- Power distribution results are no longer available through the `power_status` streams in the `*Pool`s. They can now be accessed as a stream from a separate property `power_distribution_results`, which is available from all the `*Pool`s.
2323

@@ -42,3 +42,4 @@
4242
- Fixed typing ambiguities when building composite formulas on streaming data.
4343
- Fixed a bug that was causing the `PowerDistributor` to exit if power requests to PV inverters or EV chargers timeout.
4444
- Fix handling of cancelled tasks in the data sourcing and resampling actor.
45+
- Prevent stacking of power requests to avoid delays in processing when the power requests frequency exceeds the processing time.

0 commit comments

Comments
 (0)