Skip to content

Commit 29d24a9

Browse files
Rename MicrogridComponentIDs to MicrogridElectricalComponentIDs
Signed-off-by: Tiyash Basu <[email protected]>
1 parent 415c4ac commit 29d24a9

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
- `ElectricalComponentConnections.source_component_id` has been renamed to `ElectricalComponentConnections.source_electrical_component_id`
1717
- `ElectricalComponentConnections.destination_component_id` has been renamed to `ElectricalComponentConnections.destination_electrical_component_id`
1818
- `ElectricalComponentStateSnapshot.component_id` has been renamed to `ElectricalComponentStateSnapshot.electrical_component_id`
19+
- `microgrid.MicrogridComponentIds` has been renamed to `microgrid.MicrogridElectricalComponentIds`.
20+
- `MicrogridComponentIDs.component_ids` has been renamed to `MicrogridElectricalComponentIds.electrical_component_ids`.
1921

2022

2123
## Bug Fixes

proto/frequenz/api/common/v1alpha8/microgrid/microgrid.proto

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,14 @@ message Microgrid {
6969
google.protobuf.Timestamp create_timestamp = 7;
7070
}
7171

72-
// A message to link component IDs with their respective microgrid ID.
73-
message MicrogridComponentIDs {
72+
// A message to link electrical component IDs with their respective microgrid
73+
// ID.
74+
message MicrogridElectricalComponentIDs {
7475
// The ID of the microgrid.
7576
uint64 microgrid_id = 1;
7677

77-
// List of component IDs belonging to this microgrid.
78-
repeated uint64 component_ids = 2;
78+
// List of electrical component IDs belonging to this microgrid.
79+
repeated uint64 electrical_component_ids = 2;
7980
}
8081

8182
/// A message to link sensor IDs with their respective microgrid ID.

0 commit comments

Comments
 (0)