File tree Expand file tree Collapse file tree 3 files changed +24
-2
lines changed
Expand file tree Collapse file tree 3 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 33> As of v1.4.0, release candidates will be published in an effort to get new features out faster while still allowing
44> time for full QA testing before moving the release candidate to a full release.
55
6+ ## v2.1.2 [ 2025-03-14]
7+
8+ __ What's New:__
9+
10+ * None
11+
12+ __ Enhancements:__
13+
14+ * None
15+
16+ __ Bug Fixes:__
17+
18+ * Fixed missing underscore string replace in global field names.
19+
20+ __ Dependencies:__
21+
22+ * None
23+
24+ __ Other:__
25+
26+ * None
27+
628## v2.1.1 [ 2025-03-13]
729
830__ What's New:__
Original file line number Diff line number Diff line change 1- __version__ = '2.1.1 '
1+ __version__ = '2.1.2 '
Original file line number Diff line number Diff line change @@ -258,7 +258,7 @@ def validate(self):
258258
259259 def validate_global (self , section , fields ):
260260 for field , value in fields .items ():
261- if field not in global_fields :
261+ if field . replace ( '-' , '_' ) not in global_fields :
262262 self .validation_error_messages .append (f'Invalid { section } field { field } provided.' )
263263 if field == 'output_format' and value not in output_format_choices .choices :
264264 error = f'Invalid { section } field { field } value { value } provided. Invalid value choice.'
You can’t perform that action at this time.
0 commit comments