diff --git a/CHANGELOG.md b/CHANGELOG.md index 06dfba125..6bc23a3b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,24 @@ +2.0.2-rc1 (2022-11-28) +====================== + +Bugfixes +-------- + +- Correctly set "is_falling_back" flag in thread events so that events in threads are not also displayed as replies. ([\#709](https://github.com/matrix-org/matrix-appservice-slack/issues/709)) +- Fix crash in `whoami` command when the team name of a Slack account is unavailable. ([\#714](https://github.com/matrix-org/matrix-appservice-slack/issues/714)) +- Prevent admin commands from being unusable after an invalid command is issued. ([\#717](https://github.com/matrix-org/matrix-appservice-slack/issues/717)) +- Improve the calculation of DM names & avatars. ([\#721](https://github.com/matrix-org/matrix-appservice-slack/issues/721)) +- Ensure messages you send in a DM from Slack will appear in Matrix, even if the ghost of your Slack account was not initially present in the Matrix DM room. ([\#722](https://github.com/matrix-org/matrix-appservice-slack/issues/722)) + + +Internal Changes +---------------- + +- Update matrix-appservice-bridge to 6.0.0. ([\#710](https://github.com/matrix-org/matrix-appservice-slack/issues/710)) +- Remove annoying noisy `Didn't handle event` log line. ([\#712](https://github.com/matrix-org/matrix-appservice-slack/issues/712)) +- Remove IDE-related files from version control. ([\#715](https://github.com/matrix-org/matrix-appservice-slack/issues/715)) + + 2.0.1 (2022-10-06) ================== diff --git a/changelog.d/709.bugfix b/changelog.d/709.bugfix deleted file mode 100644 index d79b1e5f0..000000000 --- a/changelog.d/709.bugfix +++ /dev/null @@ -1 +0,0 @@ -Correctly set "is_falling_back" flag in thread events so that events in threads are not also displayed as replies. diff --git a/changelog.d/710.misc b/changelog.d/710.misc deleted file mode 100644 index 7e2157e8b..000000000 --- a/changelog.d/710.misc +++ /dev/null @@ -1 +0,0 @@ -Update matrix-appservice-bridge to 6.0.0. diff --git a/changelog.d/712.misc b/changelog.d/712.misc deleted file mode 100644 index 6d602694f..000000000 --- a/changelog.d/712.misc +++ /dev/null @@ -1 +0,0 @@ -Remove annoying noisy `Didn't handle event` log line. diff --git a/changelog.d/714.bugfix b/changelog.d/714.bugfix deleted file mode 100644 index a511d93d7..000000000 --- a/changelog.d/714.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix crash in `whoami` command when the team name of a Slack account is unavailable. diff --git a/changelog.d/715.misc b/changelog.d/715.misc deleted file mode 100644 index 1f780528c..000000000 --- a/changelog.d/715.misc +++ /dev/null @@ -1 +0,0 @@ -Remove IDE-related files from version control. diff --git a/changelog.d/717.bugfix b/changelog.d/717.bugfix deleted file mode 100644 index 42e952265..000000000 --- a/changelog.d/717.bugfix +++ /dev/null @@ -1 +0,0 @@ -Prevent admin commands from being unusable after an invalid command is issued. diff --git a/changelog.d/721.bugfix b/changelog.d/721.bugfix deleted file mode 100644 index 9df1e23b4..000000000 --- a/changelog.d/721.bugfix +++ /dev/null @@ -1 +0,0 @@ -Improve the calculation of DM names & avatars. diff --git a/changelog.d/722.bugfix b/changelog.d/722.bugfix deleted file mode 100644 index f50f0e08e..000000000 --- a/changelog.d/722.bugfix +++ /dev/null @@ -1 +0,0 @@ -Ensure messages you send in a DM from Slack will appear in Matrix, even if the ghost of your Slack account was not initially present in the Matrix DM room. diff --git a/package.json b/package.json index 699a009a1..7d80c270e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-slack", - "version": "2.0.1", + "version": "2.0.2-rc1", "description": "A Matrix <--> Slack bridge", "engines": { "node": ">=16 <=18"