diff --git a/CHANGELOG.md b/CHANGELOG.md index 75bc15ebb..23ee5503b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,31 @@ +1.0.1 (2023-07-31) +================== + +It is **strongly** reccomended you upgrade your bridge, as this release contains security fixes. + +🔒 Security +----------- + +- Fixes for GHSA-vc7j-h8xg-fv5x. +- Fixes for GHSA-3pmj-jqqp-2mj3. +- Fixes for GHSA-c7hh-3v6c-fj4q + +Bugfixes +-------- + +- Improve processing speed of commands sent to and from the proxy when the bridge is configured in pooling mode. ([\#1751](https://github.com/matrix-org/matrix-appservice-irc/issues/1751)) +- Ensure QUIT messages are always sent. ([\#1752](https://github.com/matrix-org/matrix-appservice-irc/issues/1752)) +- Ensure we don't bloat irc supported state. ([\#1753](https://github.com/matrix-org/matrix-appservice-irc/issues/1753)) +- Fix a case where the bridge would not listen for and apply bans for legacy/unspec'd `m.room.rule.*` types in use by Mjolnir. ([\#1755](https://github.com/matrix-org/matrix-appservice-irc/issues/1755), [\#1759](https://github.com/matrix-org/matrix-appservice-irc/issues/1759)) +- Refactor the command parser for admin and room commands, ensuring we correctly trim the command. ([\#1756](https://github.com/matrix-org/matrix-appservice-irc/issues/1756)) + + +Internal Changes +---------------- + +- Update matrix-appservice-bridge to 9.0.1. ([\#1760](https://github.com/matrix-org/matrix-appservice-irc/issues/1760)) + + 1.0.0 (2023-06-09) ================== diff --git a/changelog.d/1751.bugfix b/changelog.d/1751.bugfix deleted file mode 100644 index 08ad0a378..000000000 --- a/changelog.d/1751.bugfix +++ /dev/null @@ -1 +0,0 @@ -Improve processing speed of commands sent to and from the proxy when the bridge is configured in pooling mode. \ No newline at end of file diff --git a/changelog.d/1752.bugfix b/changelog.d/1752.bugfix deleted file mode 100644 index cfc3f9abf..000000000 --- a/changelog.d/1752.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure QUIT messages are always sent. diff --git a/changelog.d/1753.bugfix b/changelog.d/1753.bugfix deleted file mode 100644 index 27a3bca1b..000000000 --- a/changelog.d/1753.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure we don't bloat irc supported state. diff --git a/changelog.d/1755.bugfix b/changelog.d/1755.bugfix deleted file mode 100644 index 56888ec15..000000000 --- a/changelog.d/1755.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a case where the bridge would not listen for and apply bans for legacy/unspec'd `m.room.rule.*` types in use by Mjolnir. diff --git a/changelog.d/1756.bugfix b/changelog.d/1756.bugfix deleted file mode 100644 index 8c5985efd..000000000 --- a/changelog.d/1756.bugfix +++ /dev/null @@ -1 +0,0 @@ -Refactor the command parser for admin and room commands, ensuring we correctly trim the command. diff --git a/changelog.d/1759.bugfix b/changelog.d/1759.bugfix deleted file mode 100644 index 56888ec15..000000000 --- a/changelog.d/1759.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a case where the bridge would not listen for and apply bans for legacy/unspec'd `m.room.rule.*` types in use by Mjolnir. diff --git a/changelog.d/1760.misc b/changelog.d/1760.misc deleted file mode 100644 index 9c1ecec38..000000000 --- a/changelog.d/1760.misc +++ /dev/null @@ -1 +0,0 @@ -Update matrix-appservice-bridge to 9.0.1. diff --git a/package.json b/package.json index 5118682fd..abc1f0a6d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-irc", - "version": "1.0.0", + "version": "1.0.1", "description": "An IRC Bridge for Matrix", "main": "app.js", "bin": "./bin/matrix-appservice-irc",