Skip to content

Commit 1d23093

Browse files
authored
Merge pull request #16 from wwt/certified_update
fixed MV MQTT parameter
2 parents 30d2f9b + 99f4e19 commit 1d23093

File tree

6 files changed

+47
-19
lines changed

6 files changed

+47
-19
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,30 @@
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

changelogs/changelog.yaml

+25-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,31 @@
11
ancestor: null
22
releases:
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'

changelogs/fragments/1.1.0-docs.yaml

-7
This file was deleted.

changelogs/fragments/1.1.0-update.yaml

-5
This file was deleted.

galaxy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ namespace: wwt
99
name: 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
1515
readme: README.md

roles/configure_meraki_mv/tasks/configure_camera_settings.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@
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))

0 commit comments

Comments
 (0)