This commit is contained in:
Andrew Ferrazzutti 2023-04-27 21:58:32 +09:00
parent c864dc6b42
commit 2110e88210
15 changed files with 37 additions and 14 deletions

View File

@ -1,3 +1,39 @@
4.0.0 (2023-04-27)
==================
Features
--------
- Add support for specifying custom templates for feeds. ([\#702](https://github.com/matrix-org/matrix-hookshot/issues/702))
- Use SQLite for file-based crypto stores by default, instead of Sled. ([\#714](https://github.com/matrix-org/matrix-hookshot/issues/714))
- Notifications for RSS feed failures can now be toggled on and off. The feature is now **off** by default. ([\#716](https://github.com/matrix-org/matrix-hookshot/issues/716))
Bugfixes
--------
- Fix mishandling of empty feed/item title tags. ([\#708](https://github.com/matrix-org/matrix-hookshot/issues/708))
- Add information about GitHub App Installs in 'update' state on the oauth status page. ([\#717](https://github.com/matrix-org/matrix-hookshot/issues/717))
- Fix cases of GitHub repos not being bridgable if the GitHub App had to be manually approved. ([\#718](https://github.com/matrix-org/matrix-hookshot/issues/718))
- Switch to using Rust for parsing RSS feeds. ([\#721](https://github.com/matrix-org/matrix-hookshot/issues/721))
Deprecations and Removals
-------------------------
- Add support for Node 20, and drop support for Node 16. ([\#724](https://github.com/matrix-org/matrix-hookshot/issues/724))
Internal Changes
----------------
- Ensure all Hookshot specific metrics have a `hookshot_` prefix. ([\#701](https://github.com/matrix-org/matrix-hookshot/issues/701))
- Update dependency used in Generic Webhook JS functions to fix a security flaw. ([\#705](https://github.com/matrix-org/matrix-hookshot/issues/705))
- Switch to using Rust for parsing RSS feeds. ([\#709](https://github.com/matrix-org/matrix-hookshot/issues/709))
- Update the README with a prettier set of features. ([\#726](https://github.com/matrix-org/matrix-hookshot/issues/726))
- Update `yaml` dependency to `2.2.2` ([\#728](https://github.com/matrix-org/matrix-hookshot/issues/728))
3.2.0 (2023-04-04)
==================

View File

@ -1 +0,0 @@
Ensure all Hookshot specific metrics have a `hookshot_` prefix.

View File

@ -1 +0,0 @@
Add support for specifying custom templates for feeds.

View File

@ -1 +0,0 @@
Update dependency used in Generic Webhook JS functions to fix a security flaw.

View File

@ -1 +0,0 @@
Fix mishandling of empty feed/item title tags.

View File

@ -1 +0,0 @@
Switch to using Rust for parsing RSS feeds.

View File

@ -1 +0,0 @@
Use SQLite for file-based crypto stores by default, instead of Sled.

View File

@ -1 +0,0 @@
Notifications for RSS feed failures can now be toggled on and off. The feature is now **off** by default.

View File

@ -1 +0,0 @@
Add information about GitHub App Installs in 'update' state on the oauth status page.

View File

@ -1 +0,0 @@
Fix cases of GitHub repos not being bridgable if the GitHub App had to be manually approved.

View File

@ -1 +0,0 @@
Switch to using Rust for parsing RSS feeds.

View File

@ -1 +0,0 @@
Add support for Node 20, and drop support for Node 16.

View File

@ -1 +0,0 @@
Update the README with a prettier set of features.

View File

@ -1 +0,0 @@
Update `yaml` dependency to `2.2.2`

View File

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