diff --git a/CHANGELOG.md b/CHANGELOG.md index 25d845b99..883951aed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +0.37.0 (2023-02-08) +=================== + +Features +-------- + +- Add support for Node.JS 19. ([\#1646](https://github.com/matrix-org/matrix-appservice-irc/issues/1646)) +- Refactor provisioning API to use `matrix-appservice-bridge`, adding support for OpenID token auth among other improvements. ([\#1655](https://github.com/matrix-org/matrix-appservice-irc/issues/1655)) +- Add a UI in the form of a Matrix widget for linking and unlinking channels from a Matrix room. ([\#1656](https://github.com/matrix-org/matrix-appservice-irc/issues/1656)) + + +Bugfixes +-------- + +- Document 8090 to be the default port, to match the code's behaviour. ([\#1427](https://github.com/matrix-org/matrix-appservice-irc/issues/1427)) +- Fix the configured bind port being overridden in Docker. ([\#1654](https://github.com/matrix-org/matrix-appservice-irc/issues/1654)) + + +Internal Changes +---------------- + +- Update builder image for Freebind from Stretch (EOL) to Buster. ([\#1653](https://github.com/matrix-org/matrix-appservice-irc/issues/1653)) + + 0.36.0 (2022-10-25) =================== diff --git a/changelog.d/1427.bugfix b/changelog.d/1427.bugfix deleted file mode 100644 index 73ac9ec45..000000000 --- a/changelog.d/1427.bugfix +++ /dev/null @@ -1 +0,0 @@ -Document 8090 to be the default port, to match the code's behaviour. diff --git a/changelog.d/1646.feature b/changelog.d/1646.feature deleted file mode 100644 index e746880cd..000000000 --- a/changelog.d/1646.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for Node.JS 19. diff --git a/changelog.d/1653.misc b/changelog.d/1653.misc deleted file mode 100644 index 4161e52cb..000000000 --- a/changelog.d/1653.misc +++ /dev/null @@ -1 +0,0 @@ -Update builder image for Freebind from Stretch (EOL) to Buster. diff --git a/changelog.d/1654.bugfix b/changelog.d/1654.bugfix deleted file mode 100644 index 790e27849..000000000 --- a/changelog.d/1654.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix the configured bind port being overridden in Docker. diff --git a/changelog.d/1655.feature b/changelog.d/1655.feature deleted file mode 100644 index 8316be2d1..000000000 --- a/changelog.d/1655.feature +++ /dev/null @@ -1 +0,0 @@ -Refactor provisioning API to use `matrix-appservice-bridge`, adding support for OpenID token auth among other improvements. diff --git a/changelog.d/1656.feature b/changelog.d/1656.feature deleted file mode 100644 index 37d2eb2ea..000000000 --- a/changelog.d/1656.feature +++ /dev/null @@ -1 +0,0 @@ -Add a UI in the form of a Matrix widget for linking and unlinking channels from a Matrix room. diff --git a/package.json b/package.json index 4b92f5e6f..7583af76e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-irc", - "version": "0.36.0", + "version": "0.37.0", "description": "An IRC Bridge for Matrix", "main": "app.js", "bin": "./bin/matrix-appservice-irc",