This commit is contained in:
Half-Shot 2023-12-29 12:18:53 +00:00
parent cef5121d3d
commit 445be6e78c
8 changed files with 25 additions and 7 deletions

View File

@ -1,3 +1,25 @@
5.1.0 (2023-12-29)
==================
Bugfixes
--------
- Fix feed widget not showing the true values for template / notify on failure. ([\#866](https://github.com/matrix-org/matrix-hookshot/issues/866))
- Fix widgets failing with "Request timed out". ([\#870](https://github.com/matrix-org/matrix-hookshot/issues/870))
Deprecations and Removals
-------------------------
- The GoNEB migrator is being removed in this release. Users wishing to migrate from GoNEB deployments should use <=5.0.0 and then upgrade. ([\#867](https://github.com/matrix-org/matrix-hookshot/issues/867))
Internal Changes
----------------
- Integrate end to end testing. ([\#869](https://github.com/matrix-org/matrix-hookshot/issues/869))
5.0.0 (2023-12-27)
==================

2
Cargo.lock generated
View File

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

View File

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

View File

@ -1 +0,0 @@
Fix feed widget not showing the true values for template / notify on failure.

View File

@ -1 +0,0 @@
The GoNEB migrator is being removed in this release. Users wishing to migrate from GoNEB deployments should use <=5.0.0 and then upgrade.

View File

@ -1 +0,0 @@
Integrate end to end testing.

View File

@ -1 +0,0 @@
Fix widgets failing with "Request timed out".

View File

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