This commit is contained in:
Andrew Ferrazzutti 2022-07-18 11:58:31 -04:00
parent e375a3965e
commit 66a5d8bb57
11 changed files with 33 additions and 10 deletions

View File

@ -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)
==================

2
Cargo.lock generated
View File

@ -147,7 +147,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "matrix-hookshot"
version = "1.8.0"
version = "1.8.1"
dependencies = [
"contrast",
"hex",

View File

@ -1,6 +1,6 @@
[package]
name = "matrix-hookshot"
version = "1.8.0"
version = "1.8.1"
edition = "2021"
[lib]

View File

@ -1 +0,0 @@
Add deeplink for registration.sample.yml to setup documentation

View File

@ -1 +0,0 @@
Added support for decoding XML payloads when handling generic webhooks.

View File

@ -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.

View File

@ -1 +0,0 @@
Disallow empty and invalid values for the `widgets.publicUrl` and `generic.urlPrefix` configuration settings.

View File

@ -1 +0,0 @@
Add package scripts for cleaning build files (which can be run with `yarn clean`).

View File

@ -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`).

View File

@ -1 +0,0 @@
Post a non-empty message in response to `github list-connections` when no connections are present.

View File

@ -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",