This commit is contained in:
Half-Shot 2023-09-26 11:05:21 +01:00
parent dc126afa6a
commit 257c93e0e0
11 changed files with 33 additions and 10 deletions

View File

@ -1,3 +1,34 @@
4.5.0 (2023-09-26)
==================
Features
--------
- Bridge Gitlab comment replies as Matrix threads. ([\#758](https://github.com/matrix-org/matrix-hookshot/issues/758))
- Add generic webhook transformation JS snippet for Prometheus Alertmanager. ([\#808](https://github.com/matrix-org/matrix-hookshot/issues/808))
Bugfixes
--------
- Fix a potential memory leak where Hookshot may hold onto certain requests forever in memory. ([\#814](https://github.com/matrix-org/matrix-hookshot/issues/814))
- Fix feed metrics treating request failures as parsing failures. ([\#816](https://github.com/matrix-org/matrix-hookshot/issues/816))
Deprecations and Removals
-------------------------
- Drop support for the Sled crypto store format. Users must disable/remove the configuration key of `experimentalEncryption.useLegacySledStore`, and the crypto store will always use the SQLite format. If an existing SQLite store does not exist on bridge startup, one will be created. ([\#798](https://github.com/matrix-org/matrix-hookshot/issues/798))
Internal Changes
----------------
- Update the version number of Hookshot's Rust package. ([\#803](https://github.com/matrix-org/matrix-hookshot/issues/803))
- Update eslint to a version that supports Typescript 5.1.3. ([\#815](https://github.com/matrix-org/matrix-hookshot/issues/815))
- Use quickjs instead of vm2 for evaluating JS transformation functions. ([\#817](https://github.com/matrix-org/matrix-hookshot/issues/817))
4.4.1 (2023-07-31)
==================

View File

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

View File

@ -1 +0,0 @@
Bridge Gitlab comment replies as Matrix threads.

View File

@ -1 +0,0 @@
Drop support for the Sled crypto store format. Users must disable/remove the configuration key of `experimentalEncryption.useLegacySledStore`, and the crypto store will always use the SQLite format. If an existing SQLite store does not exist on bridge startup, one will be created.

View File

@ -1 +0,0 @@
Update the version number of Hookshot's Rust package.

View File

@ -1 +0,0 @@
Add generic webhook transformation JS snippet for Prometheus Alertmanager.

View File

@ -1 +0,0 @@
Fix a potential memory leak where Hookshot may hold onto certain requests forever in memory.

View File

@ -1 +0,0 @@
Update eslint to a version that supports Typescript 5.1.3.

View File

@ -1 +0,0 @@
Fix feed metrics treating request failures as parsing failures.

View File

@ -1 +0,0 @@
Use quickjs instead of vm2 for evaluating JS transformation functions.

View File

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