Skip to content

Releases: mqtt-tools/mqttwarn

0.35.0

14 Oct 22:55
Compare
Choose a tag to compare

What's Changed

  • Fix sending ntfy notifications with longer messages than 76 characters.
    Thanks, @codebude.
  • Modernize Pushbullet service plugin. Thanks, @DNicholai.
  • Documentation: Clarify data type of "target address descriptor"
  • [Pushover]: Switch to using base64.b64decode() to support decoding
    a string. Thanks, @sumnerboy12.
  • Add configuration variable expansion. Thanks, @jhakonen.
  • [ntfy] Fix submitting newline characters in notification message text.
    Thanks, @zoic21 and @codebude.
  • Core: Fix decoding non-JSON messages, which negatively impacted outbound
    templating. Thanks, @Sc0th.
  • Add support for Python 3.12
    • Use importlib instead of imp
    • Use importlib.resources instead of pkg_resources
    • [http,pushsafer] Remove dependency on future package

Full Changelog: 0.34.1...0.35.0

0.34.1

17 May 23:23
Compare
Choose a tag to compare

What's Changed

  • Add example "Simple MQTT media player". Thanks, @nagyrobi.
  • Add example "Forwarding data from IoT devices to Zabbix"
  • Remove support for Secure Sockets Layer Version 3.0 (SSLv3).
    As per RFC 7568, SSLv3 has been deprecated in 2015 already.
  • Tests: Add more test cases to increase mqttwarn core coverage to ~100%
  • Improve example "Forward OwnTracks low-battery warnings to ntfy"
  • Migrate documentation to https://mqttwarn.readthedocs.io/

Full Changelog: 0.34.0...0.34.1

0.34.0

27 Apr 23:10
Compare
Choose a tag to compare

What's Changed

  • [core] Fix: Don't crash when receiving non-UTF8 payloads. Thanks, @sevmonster.
  • [core] Improve exception logging in is_filtered, get_topic_data, and
    get_all_data context functions. Thanks, @sevmonster.
  • [core] Allow processing of binary, non-UTF8 message payloads, for example
    images. Thanks, @sevmonster.
  • [file] Allow writing of binary content. Thanks, @sevmonster.
  • [ux] Rename subcommand mqttwarn make-samplefuncs to mqttwarn make-udf,
    and adjust naming.
  • [ntfy] Add dedicated service plugin ntfy
  • [ntfy] Use RFC 2047 for encoding HTTP header values. Thanks, @binwiederhier.
  • [ntfy] Add more fields: icon, cache, firebase, unifiedpush
  • [ntfy] Also interpolate outbound ntfy option fields
  • [ntfy] [Frigate] Improve example/tutorial about Frigate event notifications
  • [ntfy] [Frigate] Synchronize JSON event and snapshot image receive order
  • [ntfy] [Frigate] Tests: Verify notification was properly received by ntfy
  • [cli] Fix --config-file command line option

Full Changelog: 0.33.0...0.34.0

0.33.0

11 Apr 22:03
Compare
Choose a tag to compare

What's Changed

Thanks to @appzer, the Pushsafer service received significant improvements.

  • Pushsafer: Fix to prevent submitting empty parameters to upstream API.
  • Pushsafer: Modernize configuration layout for target addresses, see GH-629.
  • Pushsafer: Add parameters for "Confirm", "Answer Options", and "Force Answer", see GH-630.
  • Pushsafer: Update handbook with more information about Pushsafer

Full Changelog: 0.32.0...0.33.0

0.32.0

13 Feb 16:59
Compare
Choose a tag to compare

What's Changed

  • Modernize Docker configuration, now using Debian bullseye and Python 3.11.
  • Improve nightly and on-PR Docker builds.
  • Add versioning based on Git tags, using versioningit. This will aid in
    telling PR- and nightly releases apart from GA releases when running
    mqttwarn --version.
  • Improve Apprise integration by propagating the mqttwarn data dictionary into
    the Apprise plugin template arguments. Thanks, @zoic21.

Full Changelog: 0.31.0...0.32.0

0.31.0

21 Nov 01:51
Compare
Choose a tag to compare

What's Changed

  • Make the PushOver API retry and expire options configurable. Thanks, @jlrgraham.
  • Add new configuration setting filteredmessagesloglevel, to optionally set the log
    level for filtered messages. Thanks, @jlrgraham.
  • CI and tests: Improvements and maintenance
  • Documentation: Improve section about Apprise
  • Documentation: Notifications to ntfy via Apprise.
    Thanks, @binwiederhier, @particledecay, and @caronc.

Full Changelog: 0.30.0...0.31.0

0.30.0

05 Oct 11:08
Compare
Choose a tag to compare

What's Changed

  • Make LWT alive/dead payload configurable. Thanks, @sumnerboy12.
  • Upgrade to future>=0.18.0,<1. Thanks, @arieroos.
  • Several adjustments to log messages
  • Several improvements to the test harness, code coverage, project tooling,
    code linting and formatting, and CI
  • Refactoring of some data model components
  • Fix job sorting by priority after migration to Python 3
  • Remove some Python 2 compatibility snippets. mqttwarn is Python 3 only.

Breaking changes

  • Rework and rename service plugin osxnotify to desktopnotify, it
    should work on all popular operating systems now. Thanks, @portalzine.

New Contributors

Full Changelog: 0.29.1...0.30.0

0.29.1

22 Aug 09:41
Compare
Choose a tag to compare

What's Changed

  • Improve documentation about logging on Docker. Thanks, @psyciknz.
  • Improve documentation about Discord, via Apprise. Thanks, @psyciknz.
  • Improve launching with an additional set of --config arguments.

Full Changelog: 0.29.0...0.29.1

0.29.0

21 Aug 22:09
Compare
Choose a tag to compare

In a nutshell

This is merely a maintenance release, with some improvements to both the Pushover and the SMTP service plugins, as well as some documentation improvements addressing people on Windows 10 using PowerShell.

Official changelog

  • Improve error handling: Remove the exception_traceback() helper function again, and use logger.exception() instead.
  • Improve error messages: Remove all ellipsis
  • SMTP service plugin: Add software tests
  • SMTP service plugin: Fix evaluation of htmlmsg parameter
  • SMTP service plugin: Add support for minimal configuration w/o TLS and AUTH. Thanks, @symonjim.
  • Update dependencies: Use Jinja2 3.x; Remove configparser, it is built into Python 3
  • Add support for Python 3.11
  • Pushover service plugin: Enable passing of parameters html, url, url_title. Thanks, @jlrgraham.
  • Add test for exercising configuration file scaffolding
  • Improve README regarding configuration file scaffolding on Windows 10/PowerShell. Thanks, @symonjim.
  • Improve support for VSCode. Thanks, @psyciknz.
  • Improve mqttwarn command line entry point testing

What's Changed

  • Chore: Maintenance updates. Modernize sandbox tooling, CI recipe, and list of dependencies by @amotl in #568
  • Chore: Improve exception handling by @amotl in #572
  • Improve SMTP service plugin by @amotl in #574
  • Chore: Various minor modernizations by @amotl in #575
  • Enable passing of more Pushover API parameters. by @jlrgraham in #570
  • Add test for exercising configuration file scaffolding by @amotl in #576
  • Improve support for VSCode by @amotl in #539

New Contributors

Full Changelog: 0.28.1...0.29.0

0.28.1

31 Oct 21:07
Compare
Choose a tag to compare
  • Fix documentation about Docker images. Thanks, @psyciknz!
  • Fix enumerating addrs in pushsafer service. Thanks, @ykuzmenko!