Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
- Renamed `metric_sample.proto` to `metrics.proto` to better reflect its content.
- Renamed electrical component category `COMPONENT_CATEGORY_GRID` to `ELECTRICAL_COMPONENT_CATEGORY_GRID_CONNECTION_POINT` to clarify its meaning. Note that the change in the enum change is a part of a larger refactoring of the electrical component category enum.
- The oneof variant `ComponentCategoryMetadataVariant.metadata.grid` has been renamed to `ElectricalComponentCategorySpecificInfo.info.grid_connection_point` to better reflect its purpose.
- A new inverter type `INVERTER_TYPE_WIND_TURBINE` has been added to the `InverterType` enum.

## Bug Fixes

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ enum InverterType {

// Hybrid inverter.
INVERTER_TYPE_HYBRID = 3;

// Wind turbine inverter.
INVERTER_TYPE_WIND_TURBINE = 4;
}

// A representation of an inverter.
Expand Down
Loading