Skip to content

Commit

Permalink
1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jan 7, 2022
1 parent 675456d commit 271ee2a
Show file tree
Hide file tree
Showing 17 changed files with 39 additions and 16 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
===================

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "matrix-hookshot"
version = "1.0.0"
version = "1.1.0"
edition = "2021"

[lib]
Expand Down
1 change: 0 additions & 1 deletion changelog.d/103.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/104.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/107.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/110.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/111.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/111.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/113.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/115.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/124.doc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/125.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/126.misc

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/130.feature

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/132.doc

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/UserAgent.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 271ee2a

Please sign in to comment.