Thumbnail

rani/matterbridge.git

Clone URL: https://git.buni.party/rani/matterbridge.git

commit 603589378843a475dd052c1c9b4f9330f0340ab4 Author: Wim <wim@42.be> Date: Sat Mar 02 23:23:43 2019 +0000 Release v1.14.0-rc2 diff --git a/changelog.md b/changelog.md index dc13c74..95012a8 100644 --- a/changelog.md +++ b/changelog.md @@ -15 +18 @@  # v1.14.0   +## Breaking +* zulip: Need to specify /topic:mytopic for channel configuration (zulip). (#751) +  ## New features  * whatsapp: new protocol added. Add initial WhatsApp support (#711) Thanks to @KrzysztofMadejski  * facebook messenger: new protocol via matterbridge api. See https://github.com/VictorNine/fbridge/ for more information. @@ -1010 +1315 @@  * rocketchat: add support for the rocketchat API. Sending to rocketchat now supports uploading of files, editing and deleting of messages.  * discord: Support join/leaves from discord. Closes #654 (#721)  * discord: Allow sending discriminator with Discord username (#726). See `UseDiscriminator` in matterbridge.toml.sample -* zulip: Allow zulip bridge to specify topic per channel. Closes #701 (#723). See `Topic` in matterbridge.toml.sample  * slack: Add extra debug option (slack). See `Debug` in the slack section in matterbridge.toml.sample +* telegram: Add support for URL in messageEntities (telegram). Fixes #735 (#736) +* telegram: Add MediaConvertWebPToPNG option (telegram). (#741). See `MediaConvertWebPToPNG` in matterbridge.toml.sample + +## Enhancements +* general: Fail gracefully on incorrect human input. Fixes #739 (#740)    ## Bugfix +* general: Handle file upload/download only once for each message (#742)  * zulip: Fix error handling on bad event queue id (zulip). Closes #694  * zulip: Keep reconnecting until succeed (zulip) (#737)  * irc: add support for (older) unrealircd versions. #708 @@ -246 +328 @@  * slack: Hint at thread replies when messages are unthreaded (slack) (#684)  * xmpp: Do not send topic changes on connect (xmpp). Fixes #732 (#733)  * telegram: Fix regression in HTML handling (telegram). Closes #734 +* discord: Do not relay any bot messages (discord) (#743) +* rocketchat: Do not send duplicate messages (rocketchat). Fixes #745 (#752)    ## Contributors  This release couldn't exist without the following contributors: diff --git a/matterbridge.go b/matterbridge.go index de2b3d5..450a39e 100644 --- a/matterbridge.go +++ b/matterbridge.go @@ -157 +157 @@ import (  )    var ( - version = "1.14.0-rc1-dev" + version = "1.14.0-rc2"   githash string     flagConfig = flag.String("conf", "matterbridge.toml", "config file")