File tree Expand file tree Collapse file tree 6 files changed +47
-19
lines changed
roles/configure_meraki_mv/tasks Expand file tree Collapse file tree 6 files changed +47
-19
lines changed Original file line number Diff line number Diff line change 22
33** Topics**
44
5+ - <a href =" #v1-1-1 " >v1\. 1\. 1</a >
6+ - <a href =" #minor-changes " >Minor Changes</a >
7+ - <a href =" #breaking-changes--porting-guide " >Breaking Changes / Porting Guide</a >
58- <a href =" #v1-1-0 " >v1\. 1\. 0</a >
69 - <a href =" #release-summary " >Release Summary</a >
710 - <a href =" #new-plugins " >New Plugins</a >
811 - <a href =" #lookup " >Lookup</a >
912
13+ <a id =" v1-1-1 " ></a >
14+ ## v1\. 1\. 1
15+
16+ <a id =" minor-changes " ></a >
17+ ### Minor Changes
18+
19+ * configure\_ meraki\_ mv \- Updated data handling for MQTT configuration with camera sense\.
20+
21+ <a id =" breaking-changes--porting-guide " ></a >
22+ ### Breaking Changes / Porting Guide
23+
24+ * configure\_ meraki\_ mr \- Data model updated to support migration to latest cisco\. meraki certified collection\.
25+ * configure\_ meraki\_ mt \- Data model updated to support migration to latest cisco\. meraki certified collection\.
26+ * configure\_ meraki\_ mv \- Data model updated to support migration to latest cisco\. meraki certified collection\.
27+ * configure\_ meraki\_ mx \- Data model updated to support migration to latest cisco\. meraki certified collection\.
28+
1029<a id =" v1-1-0 " ></a >
1130## v1\. 1\. 0
1231
Original file line number Diff line number Diff line change 11ancestor : null
22releases :
33 1.1.0 :
4- release_date : ' 2024-05-30'
54 changes :
6- release_summary : This release includes updates to support the certified cisco.meraki content collection.
5+ release_summary : This release includes updates to support the certified cisco.meraki
6+ content collection.
77 plugins :
88 lookup :
9- - description : Fetch data from the Meraki API.
10- name : fetch
11- namespace : null
9+ - description : Fetch data from the Meraki API.
10+ name : fetch
11+ namespace : null
12+ release_date : ' 2024-05-30'
13+ 1.1.1 :
14+ changes :
15+ breaking_changes :
16+ - configure_meraki_mr - Data model updated to support migration to latest cisco.meraki
17+ certified collection.
18+ - configure_meraki_mt - Data model updated to support migration to latest cisco.meraki
19+ certified collection.
20+ - configure_meraki_mv - Data model updated to support migration to latest cisco.meraki
21+ certified collection.
22+ - configure_meraki_mx - Data model updated to support migration to latest cisco.meraki
23+ certified collection.
24+ minor_changes :
25+ - configure_meraki_mv - Updated data handling for MQTT configuration with camera
26+ sense.
27+ fragments :
28+ - 1.1.0-docs.yaml
29+ - 1.1.0-update.yaml
30+ - 1.1.1-minor.yaml
31+ release_date : ' 2024-05-30'
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ namespace: wwt
99name : meraki
1010
1111# The version of the collection. Must be compatible with semantic versioning
12- version : 1.1.0
12+ version : 1.1.1
1313
1414# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
1515readme : README.md
Original file line number Diff line number Diff line change 122122 serial : " {{ device_serial }}"
123123 state : " {{ camera.state }}"
124124 senseEnabled : " {{ camera.sense.senseEnabled | default(omit) }}"
125- mqttBrokerId : " {{ mqtt_broker_ids[camera.sense.mqttBrokerName].id | default(omit) }}"
125+ mqttBrokerId : ' {{ camera.sense["mqttBrokerName"] is defined
126+ | ternary(mqtt_broker_ids[camera.sense.get("mqttBrokerName")].id, omit) }}'
126127 audioDetection : " {{ ((camera.sense.audioDetection is defined)
127128 and (camera.sense.audioDetection.enabled)
128129 and (camera.sense.senseEnabled))
You can’t perform that action at this time.
0 commit comments