diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fe3d0adf..fa9229e5d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,15 @@ -# 3.0.2 (2024-09-18) +# 3.0.3 (2024-11-14) ==================== ### Bugfixes -- Make sure MediaProxy can connect to the homeserver over https. ([\#1826](https://github.com/matrix-org/matrix-appservice-irc/issues/1826)) +- Validate the `key` parameter in Provisioning API. ([\#1](https://github.com/matrix-org/matrix-appservice-irc/issues/1)) +- Disallow control characters in channel names sent via Provisioning API. ([\#2](https://github.com/matrix-org/matrix-appservice-irc/issues/2)) +- Wrap some internal server errors in provisioning API. ([\#4](https://github.com/matrix-org/matrix-appservice-irc/issues/4)) +# 3.0.2 (2024-09-18) +==================== +- Make sure MediaProxy can connect to the homeserver over https. ([\#1826](https://github.com/matrix-org/matrix-appservice-irc/issues/1826)) # 3.0.1 (2024-09-05) ==================== diff --git a/changelog.d/1.bugfix b/changelog.d/1.bugfix deleted file mode 100644 index f107d4582..000000000 --- a/changelog.d/1.bugfix +++ /dev/null @@ -1 +0,0 @@ -Validate the `key` parameter in Provisioning API. diff --git a/changelog.d/2.bugfix b/changelog.d/2.bugfix deleted file mode 100644 index 34f14431e..000000000 --- a/changelog.d/2.bugfix +++ /dev/null @@ -1 +0,0 @@ -Disallow control characters in channel names sent via Provisioning API. diff --git a/changelog.d/4.bugfix b/changelog.d/4.bugfix deleted file mode 100644 index 5e8b3e501..000000000 --- a/changelog.d/4.bugfix +++ /dev/null @@ -1 +0,0 @@ -Wrap some internal server errors in provisioning API. diff --git a/package.json b/package.json index 2da12cb8a..32bd94caf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-irc", - "version": "3.0.3-pre2", + "version": "3.0.3", "description": "An IRC Bridge for Matrix", "main": "app.js", "bin": "./bin/matrix-appservice-irc",