This commit is contained in:
Half-Shot 2022-01-07 16:54:41 +00:00
parent 675456dd72
commit 271ee2a2f5
17 changed files with 39 additions and 16 deletions

View File

@ -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) 1.0.0 (2021-12-21)
=================== ===================

View File

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

View File

@ -1 +0,0 @@
Add support for [Figma](https://www.figma.com) webhooks.

View File

@ -1 +0,0 @@
Support GitLab wiki page change events for GitLabProject connections.

View File

@ -1 +0,0 @@
Fix a couple of typos in `docs/setup.md`. Thanks @HarHarLinks!

View File

@ -1 +0,0 @@
Improve documentation sidepanel with emojis!

View File

@ -1 +0,0 @@
Fix an issue introduced in #111 that would cause the build to fail in CI.

View File

@ -1 +0,0 @@
Update to npai-rs@2

View File

@ -1 +0,0 @@
Fix a bug where the bridge would not start if only generic webhooks are configured.

View File

@ -1 +0,0 @@
Fix incorrect command for webhook setup

View File

@ -1 +0,0 @@
Improve docs around listener and generic webhook configuration

View File

@ -1 +0,0 @@
Add new script `validate-config` which check your config file for simple errors.

View File

@ -1 +0,0 @@
Port GitHub formatting functions to Rust.

View File

@ -1 +0,0 @@
Add support for a `html` key on generic webhooks to set the HTML content of a Matrix message.

View File

@ -1 +0,0 @@
Improve documentation for OAuth listener setup

View File

@ -1,6 +1,6 @@
{ {
"name": "matrix-hookshot", "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.", "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/Half-Shot/matrix-hookshot", "repository": "https://github.com/Half-Shot/matrix-hookshot",

View File

@ -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; export default UserAgent;