Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion homeassistant/components/cambridge_audio/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ async def async_setup_entry(
) -> bool:
"""Set up Cambridge Audio integration from a config entry."""

client = StreamMagicClient(entry.data[CONF_HOST], async_get_clientsession(hass))
client = StreamMagicClient(
entry.data[CONF_HOST], async_get_clientsession(hass), should_close_session=False
)

async def _connection_update_callback(
_client: StreamMagicClient, _callback_type: CallbackType
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/cambridge_audio/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
"iot_class": "local_push",
"loggers": ["aiostreammagic"],
"quality_scale": "platinum",
"requirements": ["aiostreammagic==2.13.0"],
"requirements": ["aiostreammagic==2.13.1"],
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're bringing in a dependency upgrade. Please provide a changelog and/or diff comparison. :)

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency bump was in a former PR, just required a rebase :)

"zeroconf": ["_stream-magic._tcp.local.", "_smoip._tcp.local."]
}
2 changes: 1 addition & 1 deletion requirements_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion requirements_test_all.txt

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading