Skip to content

Commit cc8636e

Browse files
committed
v0.7.4
1 parent b90fc06 commit cc8636e

File tree

4 files changed

+14
-4
lines changed

4 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.7.4] - 2025-07-24
9+
10+
### Fixed
11+
12+
- Fixed non working WoL parameters
13+
14+
### Changed
15+
16+
- Updated python requests module dependency to 2.32.4
17+
818
## [0.7.3] - 2025-05-15
919

1020
### Fixed

driver.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"driver_id": "requests",
3-
"version": "0.7.3",
4-
"release_date": "2025-05-15",
3+
"version": "0.7.4",
4+
"release_date": "2025-07-24",
55
"min_core_api": "0.24.3",
66
"name": {
77
"en": "HTTP requests, WoL & text over TCP",

intg-requests/media_player.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ async def mp_cmd_assigner(entity_id: str, cmd_name: str, params: dict[str, Any]
474474

475475
try:
476476
#TODO Run via asyncio.gather() to prevent potential blocking the event loop
477-
await asyncio.gather(asyncio.to_thread(send_magic_packet, *macs, *params), asyncio.sleep(0)) #Unpack macs list with * and params dicts list with **
477+
await asyncio.gather(asyncio.to_thread(send_magic_packet, *macs, **params), asyncio.sleep(0)) #Unpack macs list with * and params dicts list with **
478478
#send_magic_packet(*macs, **params) #Unpack macs list with * and params dicts list with **
479479
except ValueError as v:
480480
_LOG.error(v)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
ucapi>=0.3.1
2-
requests>=2.32.3
2+
requests>=2.32.4
33
wakeonlan>=3.1.0
44
getmac>=0.9.5

0 commit comments

Comments
 (0)