diff --git a/CHANGELOG.md b/CHANGELOG.md index 7192750a..7e53593d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +2.2.0 (2022-09-16) +================== + +Features +-------- + +- Ready/draft state changes for GitLab merge requests are now reported. ([\#480](https://github.com/matrix-org/matrix-hookshot/issues/480)) +- Merge GitLab MR approvals and comments into one message. ([\#484](https://github.com/matrix-org/matrix-hookshot/issues/484)) + + +Bugfixes +-------- + +- Log noisy "Got GitHub webhook event" log line at debug level. ([\#473](https://github.com/matrix-org/matrix-hookshot/issues/473)) +- Fix Figma service not being able to create new webhooks on startup, causing a crash. ([\#481](https://github.com/matrix-org/matrix-hookshot/issues/481)) + + +Internal Changes +---------------- + +- Fix a bug where the bridge can crash when JSON logging is enabled. ([\#478](https://github.com/matrix-org/matrix-hookshot/issues/478)) +- Update codemirror and remove unused font. ([\#489](https://github.com/matrix-org/matrix-hookshot/issues/489)) + + 2.1.2 (2022-09-03) ================== diff --git a/changelog.d/473.bugfix b/changelog.d/473.bugfix deleted file mode 100644 index 5cadb1d1..00000000 --- a/changelog.d/473.bugfix +++ /dev/null @@ -1 +0,0 @@ -Log noisy "Got GitHub webhook event" log line at debug level. diff --git a/changelog.d/478.misc b/changelog.d/478.misc deleted file mode 100644 index 5e546308..00000000 --- a/changelog.d/478.misc +++ /dev/null @@ -1 +0,0 @@ -Fix a bug where the bridge can crash when JSON logging is enabled. diff --git a/changelog.d/480.feature b/changelog.d/480.feature deleted file mode 100644 index 37e61f68..00000000 --- a/changelog.d/480.feature +++ /dev/null @@ -1 +0,0 @@ -Ready/draft state changes for GitLab merge requests are now reported. diff --git a/changelog.d/481.bugfix b/changelog.d/481.bugfix deleted file mode 100644 index 96f3c489..00000000 --- a/changelog.d/481.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix Figma service not being able to create new webhooks on startup, causing a crash. \ No newline at end of file diff --git a/changelog.d/484.feature b/changelog.d/484.feature deleted file mode 100644 index 94f0969f..00000000 --- a/changelog.d/484.feature +++ /dev/null @@ -1 +0,0 @@ -Merge GitLab MR approvals and comments into one message. diff --git a/changelog.d/489.misc b/changelog.d/489.misc deleted file mode 100644 index 6a0dbdaf..00000000 --- a/changelog.d/489.misc +++ /dev/null @@ -1 +0,0 @@ -Update codemirror and remove unused font. \ No newline at end of file diff --git a/package.json b/package.json index 9599b248..37e26451 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "2.1.2", + "version": "2.2.0", "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", "main": "lib/app.js", "repository": "https://github.com/matrix-org/matrix-hookshot",