From 96320039413405e2241287fe398d88349b45a573 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tadeusz=20=E2=80=9Etadzik=E2=80=9D=20So=C5=9Bnierz?= Date: Wed, 4 Sep 2024 10:49:05 +0200 Subject: [PATCH] v3.0.0 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a6dcaff..385511615 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# 3.0.0 (2024-09-04) +==================== + +No changes since 3.0.0-rc1. + +**Note**: With version 3.0.0, the bridge takes over the serving of Matrix media, which until now was the responsibility of the homeserver. + +To allow that, a Media Proxy needs to be configured and accessible from the internet. Please refer to the `mediaProxy` section in the config for details on how to configure it. + +### Features + +- Use MediaProxy to serve authenticated Matrix media. ([\#1805](https://github.com/matrix-org/matrix-appservice-irc/issues/1805)) +- Add strikethrough formatting support ([\#1809](https://github.com/matrix-org/matrix-appservice-irc/issues/1809)) + +### Bugfixes + +- Fix spelling of ignoreIdleUsersOnStartup in IrcServer config. ([\#1810](https://github.com/matrix-org/matrix-appservice-irc/issues/1810)) +- Comment out tlsOptions property in sample config. ([\#1812](https://github.com/matrix-org/matrix-appservice-irc/issues/1812)) + +### Internal Changes + +- Fix towncrier failing for wrong reasons. ([\#1813](https://github.com/matrix-org/matrix-appservice-irc/issues/1813)) + + # 3.0.0-rc1 (2024-09-02) ======================== diff --git a/package.json b/package.json index e0f433ac1..a4c4874ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-irc", - "version": "3.0.0-rc1", + "version": "3.0.0", "description": "An IRC Bridge for Matrix", "main": "app.js", "bin": "./bin/matrix-appservice-irc",