File tree Expand file tree Collapse file tree 2 files changed +2
-15
lines changed
src/frequenz/client/dispatch Expand file tree Collapse file tree 2 files changed +2
-15
lines changed Original file line number Diff line number Diff line change 11# Frequenz Dispatch Client Library Release Notes
22
3- ## Summary
4-
5- <!-- Here goes a general summary of what this release is about -->
6-
7- ## Upgrading
8-
9- * ` Client.stream() ` will now raise an Exception when the connection is lost.
10- * ` Client.create() ` and `Client.list() now take all optional arguments as keyword-only arguments.
11-
12- ## New Features
13-
14- * Added support for duration=None when creating a dispatch.
15- * The ` FakeService ` now supports the ` stream() ` method.
16-
173## Bug Fixes
184
19- <!-- Here goes notable bug fixes that are worth a special mention or explanation -->
5+ * Fix crash by adding the missing YEARLY frequency.
Original file line number Diff line number Diff line change @@ -116,6 +116,7 @@ class Frequency(IntEnum):
116116 DAILY = PBRecurrenceRule .FREQUENCY_DAILY
117117 WEEKLY = PBRecurrenceRule .FREQUENCY_WEEKLY
118118 MONTHLY = PBRecurrenceRule .FREQUENCY_MONTHLY
119+ YEARLY = PBRecurrenceRule .FREQUENCY_YEARLY
119120
120121
121122@dataclass (kw_only = True )
You can’t perform that action at this time.
0 commit comments