Skip to content

Commit 4190ddf

Browse files
authored
Bump API schema to version 3 (#274)
1 parent 8e77a93 commit 4190ddf

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

matter_server/client/client.py

+1
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,7 @@ async def get_matter_fabrics(self, node_id: int) -> list[MatterFabricData]:
173173

174174
vendors_map = await self.send_command(
175175
APICommand.GET_VENDOR_NAMES,
176+
require_schema=3,
176177
filter_vendors=[f.vendorId for f in fabrics],
177178
)
178179

matter_server/common/const.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# schema version is used to determine compatibility between server and client
44
# bump schema if we add new features and/or make other (breaking) changes
5-
SCHEMA_VERSION = 2
5+
SCHEMA_VERSION = 3

0 commit comments

Comments
 (0)