This commit is contained in:
Will Hunt 2023-06-28 17:00:26 +01:00
parent 4351a37131
commit e41c9a8dd2
5 changed files with 17 additions and 8 deletions

View File

@ -1,3 +1,18 @@
4.4.0 (2023-06-28)
==================
Bugfixes
--------
- Refactor Hookshot to use Redis for caching of feed information, massively improving memory usage.
Please note that this is a behavioural change: Hookshots configured to use in-memory caching (not Redis),
will no longer bridge any RSS entries it may have missed during downtime, and will instead perform an initial
sync (not reporting any entries) instead. ([\#786](https://github.com/matrix-org/matrix-hookshot/issues/786))
- Feeds now tries to find an HTML-type link before falling back to the first link when parsing atom feeds ([\#784](https://github.com/matrix-org/matrix-hookshot/issues/784))
4.3.0 (2023-06-19)
==================

View File

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

View File

@ -1 +0,0 @@
Feeds now tries to find an HTML-type link before falling back to the first link when parsing atom feeds

View File

@ -1,5 +0,0 @@
Refactor Hookshot to use Redis for caching of feed information, massively improving memory usage.
Please note that this is a behavioural change: Hookshots configured to use in-memory caching (not Redis),
will no longer bridge any RSS entries it may have missed during downtime, and will instead perform an initial
sync (not reporting any entries) instead.

View File

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