File tree Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Expand file tree Collapse file tree 3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 0.38.3 - TBD
4
+
5
+ ### Bug fixes
6
+ - Removed ` Intraday ` variant from ` DatasetCondition ` enum
7
+
3
8
## 0.38.2 - 2025-07-01
4
9
5
10
### Enhancements
Original file line number Diff line number Diff line change @@ -107,7 +107,6 @@ enum class DatasetCondition : std::uint8_t {
107
107
Degraded,
108
108
Pending,
109
109
Missing,
110
- Intraday,
111
110
};
112
111
113
112
// Sentinel values for different DBN record types.
Original file line number Diff line number Diff line change @@ -234,9 +234,6 @@ const char* ToString(DatasetCondition condition) {
234
234
case DatasetCondition::Missing: {
235
235
return " missing" ;
236
236
}
237
- case DatasetCondition::Intraday: {
238
- return " intraday" ;
239
- }
240
237
default : {
241
238
return " unknown" ;
242
239
}
@@ -1135,9 +1132,6 @@ DatasetCondition FromString(const std::string& str) {
1135
1132
if (str == " missing" ) {
1136
1133
return DatasetCondition::Missing;
1137
1134
}
1138
- if (str == " intraday" ) {
1139
- return DatasetCondition::Intraday;
1140
- }
1141
1135
throw InvalidArgumentError{" FromString<DatasetCondition>" , " str" ,
1142
1136
" unknown value '" + str + ' \' ' };
1143
1137
}
You can’t perform that action at this time.
0 commit comments