From 67dfa448c565174cd1ef7a51067b6db958d03344 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Wed, 27 Dec 2023 22:01:24 +0000 Subject: [PATCH] 5.0.0 --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- changelog.d/852.feature | 1 - changelog.d/855.doc | 1 - changelog.d/856.doc | 1 - changelog.d/857.doc | 1 - changelog.d/858.doc | 1 - changelog.d/859.doc | 1 - changelog.d/860.doc | 1 - changelog.d/862.removal | 1 - changelog.d/863.feature | 1 - changelog.d/865.bugfix | 1 - changelog.d/866.feature | 1 - package.json | 2 +- 15 files changed, 33 insertions(+), 14 deletions(-) delete mode 100644 changelog.d/852.feature delete mode 100644 changelog.d/855.doc delete mode 100644 changelog.d/856.doc delete mode 100644 changelog.d/857.doc delete mode 100644 changelog.d/858.doc delete mode 100644 changelog.d/859.doc delete mode 100644 changelog.d/860.doc delete mode 100644 changelog.d/862.removal delete mode 100644 changelog.d/863.feature delete mode 100644 changelog.d/865.bugfix delete mode 100644 changelog.d/866.feature diff --git a/CHANGELOG.md b/CHANGELOG.md index f302dca30..b48bb4467 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +5.0.0 (2023-12-27) +================== + +Features +-------- + +- Warn if the bot does not have permissions to talk in a room. ([\#852](https://github.com/matrix-org/matrix-hookshot/issues/852)) +- Support dark mode for the widget interface. ([\#863](https://github.com/matrix-org/matrix-hookshot/issues/863)) +- Add `webhook list` and `webhook remove` commands. ([\#866](https://github.com/matrix-org/matrix-hookshot/issues/866)) + + +Bugfixes +-------- + +- Fix notify on failure not being toggleable in the feeds widget interface. ([\#865](https://github.com/matrix-org/matrix-hookshot/issues/865)) + + +Improved Documentation +---------------------- + +- Documentation tidyups. ([\#855](https://github.com/matrix-org/matrix-hookshot/issues/855), [\#857](https://github.com/matrix-org/matrix-hookshot/issues/857), [\#858](https://github.com/matrix-org/matrix-hookshot/issues/858), [\#859](https://github.com/matrix-org/matrix-hookshot/issues/859), [\#860](https://github.com/matrix-org/matrix-hookshot/issues/860)) +- Generally tidy up and improve metrics documentation. ([\#856](https://github.com/matrix-org/matrix-hookshot/issues/856)) + + +Deprecations and Removals +------------------------- + +- Drop support for Node 18 and start supporting Node 21. ([\#862](https://github.com/matrix-org/matrix-hookshot/issues/862)) + + 4.7.0 (2023-12-06) ================== diff --git a/Cargo.lock b/Cargo.lock index e742fd0b7..f286dcd1c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -672,7 +672,7 @@ dependencies = [ [[package]] name = "matrix-hookshot" -version = "4.7.0" +version = "5.0.0" dependencies = [ "atom_syndication", "contrast", diff --git a/Cargo.toml b/Cargo.toml index e90054546..bb26f7309 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "4.7.0" +version = "5.0.0" edition = "2021" [lib] diff --git a/changelog.d/852.feature b/changelog.d/852.feature deleted file mode 100644 index 127adc6cb..000000000 --- a/changelog.d/852.feature +++ /dev/null @@ -1 +0,0 @@ -Warn if the bot does not have permissions to talk in a room. diff --git a/changelog.d/855.doc b/changelog.d/855.doc deleted file mode 100644 index 0623a4b6b..000000000 --- a/changelog.d/855.doc +++ /dev/null @@ -1 +0,0 @@ -Documentation tidyups. diff --git a/changelog.d/856.doc b/changelog.d/856.doc deleted file mode 100644 index b73fc1907..000000000 --- a/changelog.d/856.doc +++ /dev/null @@ -1 +0,0 @@ -Generally tidy up and improve metrics documentation. \ No newline at end of file diff --git a/changelog.d/857.doc b/changelog.d/857.doc deleted file mode 100644 index 0623a4b6b..000000000 --- a/changelog.d/857.doc +++ /dev/null @@ -1 +0,0 @@ -Documentation tidyups. diff --git a/changelog.d/858.doc b/changelog.d/858.doc deleted file mode 100644 index 0623a4b6b..000000000 --- a/changelog.d/858.doc +++ /dev/null @@ -1 +0,0 @@ -Documentation tidyups. diff --git a/changelog.d/859.doc b/changelog.d/859.doc deleted file mode 100644 index 0623a4b6b..000000000 --- a/changelog.d/859.doc +++ /dev/null @@ -1 +0,0 @@ -Documentation tidyups. diff --git a/changelog.d/860.doc b/changelog.d/860.doc deleted file mode 100644 index 0623a4b6b..000000000 --- a/changelog.d/860.doc +++ /dev/null @@ -1 +0,0 @@ -Documentation tidyups. diff --git a/changelog.d/862.removal b/changelog.d/862.removal deleted file mode 100644 index 5ee01585f..000000000 --- a/changelog.d/862.removal +++ /dev/null @@ -1 +0,0 @@ -Drop support for Node 18 and start supporting Node 21. diff --git a/changelog.d/863.feature b/changelog.d/863.feature deleted file mode 100644 index 86c28f1d9..000000000 --- a/changelog.d/863.feature +++ /dev/null @@ -1 +0,0 @@ -Support dark mode for the widget interface. diff --git a/changelog.d/865.bugfix b/changelog.d/865.bugfix deleted file mode 100644 index d7968362f..000000000 --- a/changelog.d/865.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix notify on failure not being toggleable in the feeds widget interface. diff --git a/changelog.d/866.feature b/changelog.d/866.feature deleted file mode 100644 index 7453f5621..000000000 --- a/changelog.d/866.feature +++ /dev/null @@ -1 +0,0 @@ -Add `webhook list` and `webhook remove` commands. diff --git a/package.json b/package.json index 43e6a588a..2033fc145 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "4.7.0", + "version": "5.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",