File tree 6 files changed +47
-19
lines changed
roles/configure_meraki_mv/tasks
6 files changed +47
-19
lines changed Original file line number Diff line number Diff line change 2
2
3
3
** Topics**
4
4
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 >
5
8
- <a href =" #v1-1-0 " >v1\. 1\. 0</a >
6
9
- <a href =" #release-summary " >Release Summary</a >
7
10
- <a href =" #new-plugins " >New Plugins</a >
8
11
- <a href =" #lookup " >Lookup</a >
9
12
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
+
10
29
<a id =" v1-1-0 " ></a >
11
30
## v1\. 1\. 0
12
31
Original file line number Diff line number Diff line change 1
1
ancestor : null
2
2
releases :
3
3
1.1.0 :
4
- release_date : ' 2024-05-30'
5
4
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.
7
7
plugins :
8
8
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
9
9
name : meraki
10
10
11
11
# The version of the collection. Must be compatible with semantic versioning
12
- version : 1.1.0
12
+ version : 1.1.1
13
13
14
14
# The path to the Markdown (.md) readme file. This path is relative to the root of the collection
15
15
readme : README.md
Original file line number Diff line number Diff line change 122
122
serial : " {{ device_serial }}"
123
123
state : " {{ camera.state }}"
124
124
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) }}'
126
127
audioDetection : " {{ ((camera.sense.audioDetection is defined)
127
128
and (camera.sense.audioDetection.enabled)
128
129
and (camera.sense.senseEnabled))
You can’t perform that action at this time.
0 commit comments