This commit is contained in:
Half-Shot 2023-03-28 11:26:19 +01:00
parent c861ce51fe
commit 64ffab4be8
14 changed files with 27 additions and 14 deletions

View File

@ -1,4 +1,29 @@
3.0.1 (2023-03-21) 3.1.0 (2023-03-28)
==================
Bugfixes
--------
- Ensure Hookshot shuts down faster when running feeds. ([\#671](https://github.com/matrix-org/matrix-hookshot/issues/671))
- Fix GitHub repo connections not always applying state updates. ([\#672](https://github.com/matrix-org/matrix-hookshot/issues/672))
- Don't hide Create Connection button in Migration component. ([\#675](https://github.com/matrix-org/matrix-hookshot/issues/675))
- Ensure the widget still works without needing to store local storage data. ([\#678](https://github.com/matrix-org/matrix-hookshot/issues/678))
- Fix a missing grant for a connection sometimes causing a crash. ([\#680](https://github.com/matrix-org/matrix-hookshot/issues/680))
- Don't check Content-Type of RSS feeds when adding a new connection, instead just check if the feed is valid. ([\#684](https://github.com/matrix-org/matrix-hookshot/issues/684))
- Make sure we're not treating garbage data in feed items as guids. ([\#687](https://github.com/matrix-org/matrix-hookshot/issues/687))
- Improve resiliency to invite/join races when Hookshot is added by an integration manager. ([\#691](https://github.com/matrix-org/matrix-hookshot/issues/691))
Internal Changes
----------------
- Add release.sh script and release.yml workflow to make the release process easier. ([\#667](https://github.com/matrix-org/matrix-hookshot/issues/667))
- Add a /ready and /live endpoint to each listener, so that it can be checked independently. ([\#676](https://github.com/matrix-org/matrix-hookshot/issues/676))
- Add `feed_failing` metric to track the number of feeds failing to be read or parsed. ([\#681](https://github.com/matrix-org/matrix-hookshot/issues/681))
- Stagger RSS feed polling over the interval period, rather than attempting to poll all feeds at once. Should reduce memory / CPU spikes. ([\#685](https://github.com/matrix-org/matrix-hookshot/issues/685))
3.0.1 (2023-03-21)
=================== ===================
Bugfixes Bugfixes

View File

@ -1 +0,0 @@
Add release.sh script and release.yml workflow to make the release process easier.

View File

@ -1 +0,0 @@
Ensure Hookshot shuts down faster when running feeds.

View File

@ -1 +0,0 @@
Fix GitHub repo connections not always applying state updates.

View File

@ -1 +0,0 @@
Don't hide Create Connection button in Migration component.

View File

@ -1 +0,0 @@
Add a /ready and /live endpoint to each listener, so that it can be checked independently.

View File

@ -1 +0,0 @@
Ensure the widget still works without needing to store local storage data.

View File

@ -1 +0,0 @@
Fix a missing grant for a connection sometimes causing a crash.

View File

@ -1 +0,0 @@
Add `feed_failing` metric to track the number of feeds failing to be read or parsed.

View File

@ -1 +0,0 @@
Don't check Content-Type of RSS feeds when adding a new connection, instead just check if the feed is valid.

View File

@ -1 +0,0 @@
Stagger RSS feed polling over the interval period, rather than attempting to poll all feeds at once. Should reduce memory / CPU spikes.

View File

@ -1 +0,0 @@
Make sure we're not treating garbage data in feed items as guids.

View File

@ -1 +0,0 @@
Improve resiliency to invite/join races when Hookshot is added by an integration manager.

View File

@ -1,6 +1,6 @@
{ {
"name": "matrix-hookshot", "name": "matrix-hookshot",
"version": "3.0.1", "version": "3.1.0",
"description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.", "description": "A bridge between Matrix and multiple project management services, such as GitHub, GitLab and JIRA.",
"main": "lib/app.js", "main": "lib/app.js",
"repository": "https://github.com/matrix-org/matrix-hookshot", "repository": "https://github.com/matrix-org/matrix-hookshot",