This commit is contained in:
Half-Shot 2022-06-08 16:51:57 +01:00
parent 86b9a83b97
commit a665d3b949
10 changed files with 32 additions and 9 deletions

View File

@ -1,3 +1,32 @@
1.7.2 (2022-06-08)
==================
Features
--------
- Add support for GitHub enterprise. You can now specify the URL via `enterpriseUrl` in the config file. ([\#364](https://github.com/matrix-org/matrix-hookshot/issues/364))
- Add ability for bridge admins to remove GitHub connections using the admin room. ([\#367](https://github.com/matrix-org/matrix-hookshot/issues/367))
Bugfixes
--------
- Fix Github API URLs ([\#366](https://github.com/matrix-org/matrix-hookshot/issues/366))
Improved Documentation
----------------------
- Add CONTRIBUTING.md guide. ([\#134](https://github.com/matrix-org/matrix-hookshot/issues/134))
- Suggest using https for cloning hookshot, rather than git. ([\#355](https://github.com/matrix-org/matrix-hookshot/issues/355))
Internal Changes
----------------
- Widgets now request the RequireClient permission to verify the users identity. ([\#370](https://github.com/matrix-org/matrix-hookshot/issues/370))
1.7.1 (2022-05-23)
==================

2
Cargo.lock generated
View File

@ -147,7 +147,7 @@ checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
[[package]]
name = "matrix-hookshot"
version = "1.3.0"
version = "1.7.2"
dependencies = [
"contrast",
"hex",

View File

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

View File

@ -1 +0,0 @@
Add CONTRIBUTING.md guide.

View File

@ -1 +0,0 @@
Suggest using https for cloning hookshot, rather than git.

View File

@ -1 +0,0 @@
Add support for GitHub enterprise. You can now specify the URL via `enterpriseUrl` in the config file.

View File

@ -1 +0,0 @@
Fix Github API URLs

View File

@ -1 +0,0 @@
Add ability for bridge admins to remove GitHub connections using the admin room.

View File

@ -1 +0,0 @@
Widgets now request the RequireClient permission to verify the users identity.

View File

@ -1,6 +1,6 @@
{
"name": "matrix-hookshot",
"version": "1.7.1",
"version": "1.7.2",
"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",