15
0

- update to 1.15.0:

* support added for Python 3.14
  * FritzConnection:
    - additional argument `redact_debug_log` (default: False) for
      optional redacting response in debug output. (#238) (#241)
    - new method `get_cpu_temperatures()` providing a list of the
      last recent cpu-temperatures.
   FritzCall:
   - new attribute `Path` for the class `Call` to access an
     optional phone message. (#231)
   FritzStatus:
   - new method `get_avm_device_log()` to access system events.
     Requires FritzOS 8. (#234)
   - bugfix: in rare cases a session id of None has prevented a
     successfull request of the http-interface.
   - `fritzconnection.lib.fritzhomeauto.FritzHomeAutomation.device_informations()`,
      deprecated in 1.9.0
   - `fritzconnection.lib.fritzstatus.FritzStatus.uptime()`,
      deprecated in 1.9.0
   - `fritzconnection.lib.fritzwlan.FritzWLAN.channel_infos()`,
      deprecated in 1.9.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-fritzconnection?expand=0&rev=22
This commit is contained in:
2025-07-13 13:11:05 +00:00
committed by Git OBS Bridge
parent bd1392e32c
commit 76293f63ee
4 changed files with 29 additions and 4 deletions

View File

@@ -1,3 +1,28 @@
-------------------------------------------------------------------
Sun Jul 13 13:09:15 UTC 2025 - Dirk Müller <dmueller@suse.com>
- update to 1.15.0:
* support added for Python 3.14
* FritzConnection:
- additional argument `redact_debug_log` (default: False) for
optional redacting response in debug output. (#238) (#241)
- new method `get_cpu_temperatures()` providing a list of the
last recent cpu-temperatures.
FritzCall:
- new attribute `Path` for the class `Call` to access an
optional phone message. (#231)
FritzStatus:
- new method `get_avm_device_log()` to access system events.
Requires FritzOS 8. (#234)
- bugfix: in rare cases a session id of None has prevented a
successfull request of the http-interface.
- `fritzconnection.lib.fritzhomeauto.FritzHomeAutomation.device_informations()`,
deprecated in 1.9.0
- `fritzconnection.lib.fritzstatus.FritzStatus.uptime()`,
deprecated in 1.9.0
- `fritzconnection.lib.fritzwlan.FritzWLAN.channel_infos()`,
deprecated in 1.9.0
-------------------------------------------------------------------
Tue Jun 17 04:15:19 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>