From 66a5d8bb571bdc71eb784ff1dbefe2f1ef13d564 Mon Sep 17 00:00:00 2001 From: Andrew Ferrazzutti Date: Mon, 18 Jul 2022 11:58:31 -0400 Subject: [PATCH] 1.8.1 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- changelog.d/374.doc | 1 - changelog.d/410.feature | 1 - changelog.d/411.bugfix | 1 - changelog.d/412.bugfix | 1 - changelog.d/414.misc | 1 - changelog.d/415.doc | 1 - changelog.d/416.bugfix | 1 - package.json | 2 +- 11 files changed, 33 insertions(+), 10 deletions(-) delete mode 100644 changelog.d/374.doc delete mode 100644 changelog.d/410.feature delete mode 100644 changelog.d/411.bugfix delete mode 100644 changelog.d/412.bugfix delete mode 100644 changelog.d/414.misc delete mode 100644 changelog.d/415.doc delete mode 100644 changelog.d/416.bugfix diff --git a/CHANGELOG.md b/CHANGELOG.md index 2c560991..58597b48 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +1.8.1 (2022-07-18) +================== + +Features +-------- + +- Added support for decoding XML payloads when handling generic webhooks. ([\#410](https://github.com/matrix-org/matrix-hookshot/issues/410)) + + +Bugfixes +-------- + +- If `widgets.addToAdminRooms` is set, add the admin widget to a DM room the bot is invited to, instead of the non-admin widget. ([\#411](https://github.com/matrix-org/matrix-hookshot/issues/411)) +- Disallow empty and invalid values for the `widgets.publicUrl` and `generic.urlPrefix` configuration settings. ([\#412](https://github.com/matrix-org/matrix-hookshot/issues/412)) +- Post a non-empty message in response to `github list-connections` when no connections are present. ([\#416](https://github.com/matrix-org/matrix-hookshot/issues/416)) + + +Improved Documentation +---------------------- + +- Add deeplink for registration.sample.yml to setup documentation ([\#374](https://github.com/matrix-org/matrix-hookshot/issues/374)) +- Update GitHub authentication documentation: list the steps for OAuth login (`github login`), and mention the correct command for checking GitHub authentication status (`github status`). ([\#415](https://github.com/matrix-org/matrix-hookshot/issues/415)) + + +Internal Changes +---------------- + +- Add package scripts for cleaning build files (which can be run with `yarn clean`). ([\#414](https://github.com/matrix-org/matrix-hookshot/issues/414)) + + 1.8.0 (2022-07-11) ================== diff --git a/Cargo.lock b/Cargo.lock index d181c0d1..ff46229a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -147,7 +147,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f" [[package]] name = "matrix-hookshot" -version = "1.8.0" +version = "1.8.1" dependencies = [ "contrast", "hex", diff --git a/Cargo.toml b/Cargo.toml index 4a12b96b..71e5ee51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "1.8.0" +version = "1.8.1" edition = "2021" [lib] diff --git a/changelog.d/374.doc b/changelog.d/374.doc deleted file mode 100644 index c80aa294..00000000 --- a/changelog.d/374.doc +++ /dev/null @@ -1 +0,0 @@ -Add deeplink for registration.sample.yml to setup documentation diff --git a/changelog.d/410.feature b/changelog.d/410.feature deleted file mode 100644 index 72b72191..00000000 --- a/changelog.d/410.feature +++ /dev/null @@ -1 +0,0 @@ -Added support for decoding XML payloads when handling generic webhooks. \ No newline at end of file diff --git a/changelog.d/411.bugfix b/changelog.d/411.bugfix deleted file mode 100644 index 0879624f..00000000 --- a/changelog.d/411.bugfix +++ /dev/null @@ -1 +0,0 @@ -If `widgets.addToAdminRooms` is set, add the admin widget to a DM room the bot is invited to, instead of the non-admin widget. diff --git a/changelog.d/412.bugfix b/changelog.d/412.bugfix deleted file mode 100644 index c34a4796..00000000 --- a/changelog.d/412.bugfix +++ /dev/null @@ -1 +0,0 @@ -Disallow empty and invalid values for the `widgets.publicUrl` and `generic.urlPrefix` configuration settings. diff --git a/changelog.d/414.misc b/changelog.d/414.misc deleted file mode 100644 index 35cc9ae4..00000000 --- a/changelog.d/414.misc +++ /dev/null @@ -1 +0,0 @@ -Add package scripts for cleaning build files (which can be run with `yarn clean`). diff --git a/changelog.d/415.doc b/changelog.d/415.doc deleted file mode 100644 index bbf0e263..00000000 --- a/changelog.d/415.doc +++ /dev/null @@ -1 +0,0 @@ -Update GitHub authentication documentation: list the steps for OAuth login (`github login`), and mention the correct command for checking GitHub authentication status (`github status`). diff --git a/changelog.d/416.bugfix b/changelog.d/416.bugfix deleted file mode 100644 index 126bcc49..00000000 --- a/changelog.d/416.bugfix +++ /dev/null @@ -1 +0,0 @@ -Post a non-empty message in response to `github list-connections` when no connections are present. diff --git a/package.json b/package.json index a043075c..f80b43da 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "1.8.0", + "version": "1.8.1", "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",