File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
proto/frequenz/api/dispatch/v1 Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1414
1515## Bug Fixes
1616
17- <!-- Here goes notable bug fixes that are worth a special mention or explanation -->
17+ * The field ` bymonthdays ` the recurrence definition also supports negative values and was updated accordingly.
Original file line number Diff line number Diff line change @@ -276,8 +276,11 @@ message RecurrenceRule {
276276 // On which day(s) of the week does the event occur
277277 repeated Weekday byweekdays = 6 ;
278278
279- // On which day(s) of the month does the event occur
280- repeated uint32 bymonthdays = 7 ;
279+ // On which day(s) of the month does the event occur. Valid values are 1 to 31 or -31 to -1.
280+ //
281+ // For example, -10 represents the tenth to the last day of the month.
282+ // The bymonthdays rule part MUST NOT be specified when the FREQ rule part is set to WEEKLY.
283+ repeated int32 bymonthdays = 7 ;
281284
282285 // On which month(s) of the year does the event occur
283286 repeated uint32 bymonths = 8 ;
You can’t perform that action at this time.
0 commit comments