mirror of
https://github.com/matrix-org/matrix-hookshot.git
synced 2025-03-10 21:19:13 +00:00
1.1.0
This commit is contained in:
parent
675456dd72
commit
271ee2a2f5
36
CHANGELOG.md
36
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)
|
1.0.0 (2021-12-21)
|
||||||
===================
|
===================
|
||||||
|
|
||||||
|
@ -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]
|
||||||
|
@ -1 +0,0 @@
|
|||||||
Add support for [Figma](https://www.figma.com) webhooks.
|
|
@ -1 +0,0 @@
|
|||||||
Support GitLab wiki page change events for GitLabProject connections.
|
|
@ -1 +0,0 @@
|
|||||||
Fix a couple of typos in `docs/setup.md`. Thanks @HarHarLinks!
|
|
@ -1 +0,0 @@
|
|||||||
Improve documentation sidepanel with emojis!
|
|
@ -1 +0,0 @@
|
|||||||
Fix an issue introduced in #111 that would cause the build to fail in CI.
|
|
@ -1 +0,0 @@
|
|||||||
Update to npai-rs@2
|
|
@ -1 +0,0 @@
|
|||||||
Fix a bug where the bridge would not start if only generic webhooks are configured.
|
|
@ -1 +0,0 @@
|
|||||||
Fix incorrect command for webhook setup
|
|
@ -1 +0,0 @@
|
|||||||
Improve docs around listener and generic webhook configuration
|
|
@ -1 +0,0 @@
|
|||||||
Add new script `validate-config` which check your config file for simple errors.
|
|
@ -1 +0,0 @@
|
|||||||
Port GitHub formatting functions to Rust.
|
|
@ -1 +0,0 @@
|
|||||||
Add support for a `html` key on generic webhooks to set the HTML content of a Matrix message.
|
|
@ -1 +0,0 @@
|
|||||||
Improve documentation for OAuth listener setup
|
|
@ -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",
|
||||||
|
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user