summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWim <wim@42.be>2019-02-23 23:20:25 +0100
committerWim <wim@42.be>2019-02-23 23:20:25 +0100
commit516fd3c92db6f7c1ccd5e732e69d0acf97067145 (patch)
treede477de5c386f143a0a40c83cb2ab692b335f46a
parenta775b5713471fe92e107498d3f79314ffa4d5eb9 (diff)
downloadmatterbridge-msglm-516fd3c92db6f7c1ccd5e732e69d0acf97067145.tar.gz
matterbridge-msglm-516fd3c92db6f7c1ccd5e732e69d0acf97067145.tar.bz2
matterbridge-msglm-516fd3c92db6f7c1ccd5e732e69d0acf97067145.zip
Release v1.14.0-rc1v1.14.0-rc1
-rw-r--r--changelog.md29
-rw-r--r--matterbridge.go2
2 files changed, 30 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index 58ac9193..b287b309 100644
--- a/changelog.md
+++ b/changelog.md
@@ -1,3 +1,32 @@
+# v1.14.0-rc1
+
+## 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.
+* general: Add scripting (tengo) support for every incoming message (#731). See `TengoModifyMessage`
+* general: Allow regexs in ignoreNicks. Closes #690 (#720)
+* general: Support rewriting messages from relaybots using ExtractNicks. Fixes #466 (#730). See `ExtractNicks` in matterbridge.toml.sample
+* general: refactor Make all loggers derive from non-default instance (#728). Thanks to @Helcaraxan
+* 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
+
+## Bugfix
+* zulip: Fix error handling on bad event queue id (zulip). Closes #694
+* irc: add support for (older) unrealircd versions. #708
+* irc: Support quits from irc correctly. Fixes #722 (#724)
+* matrix: Send username when uploading video/images (matrix). Fixes #715 (#717)
+* matrix: Send notices on join/parts (matrix). Fixes #712 (#716)
+* matrix: Detect html nicks in RemoteNickFormat (matrix). Fixes #696 (#719)
+* slack: Hint at thread replies when messages are unthreaded (slack) (#684)
+* xmpp: Do not send topic changes on connect (xmpp). Fixes #732 (#733)
+
+## Contributors
+This release couldn't exist without the following contributors:
+@Helcaraxan, @KrzysztofMadejski, @AJolly, @DeclanHoare
+
# v1.13.1
This release fixes go modules issues because of https://github.com/labstack/echo/issues/1272
diff --git a/matterbridge.go b/matterbridge.go
index 6c6b11fe..173a91a4 100644
--- a/matterbridge.go
+++ b/matterbridge.go
@@ -15,7 +15,7 @@ import (
)
var (
- version = "1.14.0-dev"
+ version = "1.14.0-rc1"
githash string
flagConfig = flag.String("conf", "matterbridge.toml", "config file")