From 271ee2a2f58dccb079984c2c8a9a58dac0042d63 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Fri, 7 Jan 2022 16:54:41 +0000 Subject: [PATCH] 1.1.0 --- CHANGELOG.md | 36 ++++++++++++++++++++++++++++++++++++ Cargo.toml | 2 +- changelog.d/103.feature | 1 - changelog.d/104.feature | 1 - changelog.d/107.doc | 1 - changelog.d/110.doc | 1 - changelog.d/111.bugfix | 1 - changelog.d/111.misc | 1 - changelog.d/113.bugfix | 1 - changelog.d/115.doc | 1 - changelog.d/124.doc | 1 - changelog.d/125.feature | 1 - changelog.d/126.misc | 1 - changelog.d/130.feature | 1 - changelog.d/132.doc | 1 - package.json | 2 +- src/UserAgent.ts | 2 +- 17 files changed, 39 insertions(+), 16 deletions(-) delete mode 100644 changelog.d/103.feature delete mode 100644 changelog.d/104.feature delete mode 100644 changelog.d/107.doc delete mode 100644 changelog.d/110.doc delete mode 100644 changelog.d/111.bugfix delete mode 100644 changelog.d/111.misc delete mode 100644 changelog.d/113.bugfix delete mode 100644 changelog.d/115.doc delete mode 100644 changelog.d/124.doc delete mode 100644 changelog.d/125.feature delete mode 100644 changelog.d/126.misc delete mode 100644 changelog.d/130.feature delete mode 100644 changelog.d/132.doc diff --git a/CHANGELOG.md b/CHANGELOG.md index ae7e11c8..41d41532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,39 @@ +1.1.0 (2022-01-07) +================== + +Features +-------- + +- Add support for [Figma](https://www.figma.com) webhooks. ([\#103](https://github.com/half-shot/matrix-hookshot/issues/103)) +- Support GitLab wiki page change events for GitLabProject connections. ([\#104](https://github.com/half-shot/matrix-hookshot/issues/104)) +- Add new script `validate-config` which check your config file for simple errors. ([\#125](https://github.com/half-shot/matrix-hookshot/issues/125)) +- Add support for a `html` key on generic webhooks to set the HTML content of a Matrix message. ([\#130](https://github.com/half-shot/matrix-hookshot/issues/130)) + + +Bugfixes +-------- + +- Fix an issue introduced in #111 that would cause the build to fail in CI. ([\#111](https://github.com/half-shot/matrix-hookshot/issues/111)) +- Fix a bug where the bridge would not start if only generic webhooks are configured. ([\#113](https://github.com/half-shot/matrix-hookshot/issues/113)) + + +Improved Documentation +---------------------- + +- Fix a couple of typos in `docs/setup.md`. Thanks @HarHarLinks! ([\#107](https://github.com/half-shot/matrix-hookshot/issues/107)) +- Improve documentation sidepanel with emojis! ([\#110](https://github.com/half-shot/matrix-hookshot/issues/110)) +- Fix incorrect command for webhook setup ([\#115](https://github.com/half-shot/matrix-hookshot/issues/115)) +- Improve docs around listener and generic webhook configuration ([\#124](https://github.com/half-shot/matrix-hookshot/issues/124)) +- Improve documentation for OAuth listener setup ([\#132](https://github.com/half-shot/matrix-hookshot/issues/132)) + + +Internal Changes +---------------- + +- Update to npai-rs@2 ([\#111](https://github.com/half-shot/matrix-hookshot/issues/111)) +- Port GitHub formatting functions to Rust. ([\#126](https://github.com/half-shot/matrix-hookshot/issues/126)) + + 1.0.0 (2021-12-21) =================== diff --git a/Cargo.toml b/Cargo.toml index 8f8c6dcf..11b21e70 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "matrix-hookshot" -version = "1.0.0" +version = "1.1.0" edition = "2021" [lib] diff --git a/changelog.d/103.feature b/changelog.d/103.feature deleted file mode 100644 index c3827d90..00000000 --- a/changelog.d/103.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for [Figma](https://www.figma.com) webhooks. diff --git a/changelog.d/104.feature b/changelog.d/104.feature deleted file mode 100644 index 6268574e..00000000 --- a/changelog.d/104.feature +++ /dev/null @@ -1 +0,0 @@ -Support GitLab wiki page change events for GitLabProject connections. diff --git a/changelog.d/107.doc b/changelog.d/107.doc deleted file mode 100644 index 8baf7016..00000000 --- a/changelog.d/107.doc +++ /dev/null @@ -1 +0,0 @@ -Fix a couple of typos in `docs/setup.md`. Thanks @HarHarLinks! diff --git a/changelog.d/110.doc b/changelog.d/110.doc deleted file mode 100644 index b93341f1..00000000 --- a/changelog.d/110.doc +++ /dev/null @@ -1 +0,0 @@ -Improve documentation sidepanel with emojis! diff --git a/changelog.d/111.bugfix b/changelog.d/111.bugfix deleted file mode 100644 index ec420fa1..00000000 --- a/changelog.d/111.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix an issue introduced in #111 that would cause the build to fail in CI. \ No newline at end of file diff --git a/changelog.d/111.misc b/changelog.d/111.misc deleted file mode 100644 index 42ee437b..00000000 --- a/changelog.d/111.misc +++ /dev/null @@ -1 +0,0 @@ -Update to npai-rs@2 diff --git a/changelog.d/113.bugfix b/changelog.d/113.bugfix deleted file mode 100644 index 50481d33..00000000 --- a/changelog.d/113.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fix a bug where the bridge would not start if only generic webhooks are configured. \ No newline at end of file diff --git a/changelog.d/115.doc b/changelog.d/115.doc deleted file mode 100644 index d5e9e72d..00000000 --- a/changelog.d/115.doc +++ /dev/null @@ -1 +0,0 @@ -Fix incorrect command for webhook setup \ No newline at end of file diff --git a/changelog.d/124.doc b/changelog.d/124.doc deleted file mode 100644 index f9273120..00000000 --- a/changelog.d/124.doc +++ /dev/null @@ -1 +0,0 @@ -Improve docs around listener and generic webhook configuration \ No newline at end of file diff --git a/changelog.d/125.feature b/changelog.d/125.feature deleted file mode 100644 index 31e29147..00000000 --- a/changelog.d/125.feature +++ /dev/null @@ -1 +0,0 @@ -Add new script `validate-config` which check your config file for simple errors. \ No newline at end of file diff --git a/changelog.d/126.misc b/changelog.d/126.misc deleted file mode 100644 index 06bc1c93..00000000 --- a/changelog.d/126.misc +++ /dev/null @@ -1 +0,0 @@ -Port GitHub formatting functions to Rust. \ No newline at end of file diff --git a/changelog.d/130.feature b/changelog.d/130.feature deleted file mode 100644 index 0a6a498c..00000000 --- a/changelog.d/130.feature +++ /dev/null @@ -1 +0,0 @@ -Add support for a `html` key on generic webhooks to set the HTML content of a Matrix message. \ No newline at end of file diff --git a/changelog.d/132.doc b/changelog.d/132.doc deleted file mode 100644 index 99697406..00000000 --- a/changelog.d/132.doc +++ /dev/null @@ -1 +0,0 @@ -Improve documentation for OAuth listener setup diff --git a/package.json b/package.json index fd9b58f7..2f78539f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-hookshot", - "version": "1.0.0", + "version": "1.1.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/Half-Shot/matrix-hookshot", diff --git a/src/UserAgent.ts b/src/UserAgent.ts index c4b0f174..34c715f0 100644 --- a/src/UserAgent.ts +++ b/src/UserAgent.ts @@ -1,2 +1,2 @@ -const UserAgent = "matrix-hookshot/1.0.0 (+https://github.com/half-shot/matrix-hookshot)"; +const UserAgent = "matrix-hookshot/1.1.0 (+https://github.com/half-shot/matrix-hookshot)"; export default UserAgent;