This commit is contained in:
Half-Shot 2023-12-27 22:01:24 +00:00
parent 9cc402b066
commit 67dfa448c5
15 changed files with 33 additions and 14 deletions

View File

@ -1,3 +1,33 @@
5.0.0 (2023-12-27)
==================
Features
--------
- Warn if the bot does not have permissions to talk in a room. ([\#852](https://github.com/matrix-org/matrix-hookshot/issues/852))
- Support dark mode for the widget interface. ([\#863](https://github.com/matrix-org/matrix-hookshot/issues/863))
- Add `webhook list` and `webhook remove` commands. ([\#866](https://github.com/matrix-org/matrix-hookshot/issues/866))
Bugfixes
--------
- Fix notify on failure not being toggleable in the feeds widget interface. ([\#865](https://github.com/matrix-org/matrix-hookshot/issues/865))
Improved Documentation
----------------------
- Documentation tidyups. ([\#855](https://github.com/matrix-org/matrix-hookshot/issues/855), [\#857](https://github.com/matrix-org/matrix-hookshot/issues/857), [\#858](https://github.com/matrix-org/matrix-hookshot/issues/858), [\#859](https://github.com/matrix-org/matrix-hookshot/issues/859), [\#860](https://github.com/matrix-org/matrix-hookshot/issues/860))
- Generally tidy up and improve metrics documentation. ([\#856](https://github.com/matrix-org/matrix-hookshot/issues/856))
Deprecations and Removals
-------------------------
- Drop support for Node 18 and start supporting Node 21. ([\#862](https://github.com/matrix-org/matrix-hookshot/issues/862))
4.7.0 (2023-12-06)
==================

2
Cargo.lock generated
View File

@ -672,7 +672,7 @@ dependencies = [
[[package]]
name = "matrix-hookshot"
version = "4.7.0"
version = "5.0.0"
dependencies = [
"atom_syndication",
"contrast",

View File

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

View File

@ -1 +0,0 @@
Warn if the bot does not have permissions to talk in a room.

View File

@ -1 +0,0 @@
Documentation tidyups.

View File

@ -1 +0,0 @@
Generally tidy up and improve metrics documentation.

View File

@ -1 +0,0 @@
Documentation tidyups.

View File

@ -1 +0,0 @@
Documentation tidyups.

View File

@ -1 +0,0 @@
Documentation tidyups.

View File

@ -1 +0,0 @@
Documentation tidyups.

View File

@ -1 +0,0 @@
Drop support for Node 18 and start supporting Node 21.

View File

@ -1 +0,0 @@
Support dark mode for the widget interface.

View File

@ -1 +0,0 @@
Fix notify on failure not being toggleable in the feeds widget interface.

View File

@ -1 +0,0 @@
Add `webhook list` and `webhook remove` commands.

View File

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