This commit is contained in:
Half-Shot 2022-03-30 12:04:47 +01:00
parent 15a87bdbac
commit ab4cabbd67
18 changed files with 45 additions and 17 deletions

View File

@ -1,3 +1,45 @@
1.3.0 (2022-03-30)
==================
Features
--------
- Generic webhooks now listen for incoming hooks on `/webhook`. Existing setups using `/` will continue to work, but should be migrated where possible. See [the documentation](https://matrix-org.github.io/matrix-hookshot/setup/webhooks.html#configuration) for more information. ([\#227](https://github.com/matrix-org/matrix-hookshot/issues/227))
- Logging now supports `json` format outputs and colourized logs. Startup logging should now be less noisy on non-debug levels. ([\#229](https://github.com/matrix-org/matrix-hookshot/issues/229))
- Use stable key `m.thread` for Figma threads. ([\#236](https://github.com/matrix-org/matrix-hookshot/issues/236))
- Add support for close events on GitLab merge requests. ([\#253](https://github.com/matrix-org/matrix-hookshot/issues/253))
- Hosted documentation now features a version selector. ([\#259](https://github.com/matrix-org/matrix-hookshot/issues/259))
Bugfixes
--------
- Fixed an issue which caused GitHub issue edit notifications to be posted to a room twice. ([\#230](https://github.com/matrix-org/matrix-hookshot/issues/230))
- Fix generic webhooks always returning an HTTP error when `waitForComplete` is enabled. ([\#247](https://github.com/matrix-org/matrix-hookshot/issues/247))
- Fix a bug that would cause Hookshot to crash when a Matrix message could not be sent ([\#249](https://github.com/matrix-org/matrix-hookshot/issues/249))
- Stop Figma threads showing as replies in clients. ([\#251](https://github.com/matrix-org/matrix-hookshot/issues/251))
- Fix an issue where the bridge bot would rejoin a room after being removed. ([\#257](https://github.com/matrix-org/matrix-hookshot/issues/257))
- Connections are now properly cleaned up when the state event is redacted. ([\#258](https://github.com/matrix-org/matrix-hookshot/issues/258))
Improved Documentation
----------------------
- Clarify homeserver requirements and configuration on the setup page. ([\#243](https://github.com/matrix-org/matrix-hookshot/issues/243))
Deprecations and Removals
-------------------------
- Drop support for Node.JS 12. Administrators are advised to upgrade to at least Node.JS 14. ([\#228](https://github.com/matrix-org/matrix-hookshot/issues/228))
Internal Changes
----------------
- Uppercase values for `logging.level` are now allowed, although lowercase values are preferred. ([\#250](https://github.com/matrix-org/matrix-hookshot/issues/250))
1.2.0 (2022-03-04)
==================

2
Cargo.lock generated
View File

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

View File

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

View File

@ -1 +0,0 @@
Generic webhooks now listen for incoming hooks on `/webhook`. Existing setups using `/` will continue to work, but should be migrated where possible. See [the documentation](https://matrix-org.github.io/matrix-hookshot/setup/webhooks.html#configuration) for more information.

View File

@ -1 +0,0 @@
Drop support for Node.JS 12. Administrators are advised to upgrade to at least Node.JS 14.

View File

@ -1 +0,0 @@
Logging now supports `json` format outputs and colourized logs. Startup logging should now be less noisy on non-debug levels.

View File

@ -1 +0,0 @@
Fixed an issue which caused GitHub issue edit notifications to be posted to a room twice.

View File

@ -1 +0,0 @@
Use stable key `m.thread` for Figma threads.

View File

@ -1 +0,0 @@
Clarify homeserver requirements and configuration on the setup page.

View File

@ -1 +0,0 @@
Fix generic webhooks always returning an HTTP error when `waitForComplete` is enabled.

View File

@ -1 +0,0 @@
Fix a bug that would cause Hookshot to crash when a Matrix message could not be sent

View File

@ -1 +0,0 @@
Uppercase values for `logging.level` are now allowed, although lowercase values are preferred.

View File

@ -1 +0,0 @@
Stop Figma threads showing as replies in clients.

View File

@ -1 +0,0 @@
Add support for close events on GitLab merge requests.

View File

@ -1 +0,0 @@
Fix an issue where the bridge bot would rejoin a room after being removed.

View File

@ -1 +0,0 @@
Connections are now properly cleaned up when the state event is redacted.

View File

@ -1 +0,0 @@
Hosted documentation now features a version selector.

View File

@ -1,6 +1,6 @@
{
"name": "matrix-hookshot",
"version": "1.2.0",
"version": "1.3.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",