Skip to content

Commit

Permalink
5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Jul 26, 2022
1 parent 3dceff7 commit 610d09e
Show file tree
Hide file tree
Showing 11 changed files with 38 additions and 14 deletions.
36 changes: 36 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
5.0.0 (2022-07-26)
==================

This release depends on **Node.JS 16** or greater.

Bugfixes
--------

- Matrix users on a server that has an explicit port specifier in the server name will now be supported. ([\#414](https://github.com/matrix-org/matrix-appservice-bridge/issues/414))


Improved Documentation
----------------------

- Improve `CONTRIBUTING.md` guide to make it applicable for all of the matrix.org bridge repos. ([\#404](https://github.com/matrix-org/matrix-appservice-bridge/issues/404))


Deprecations and Removals
-------------------------

- **Breaking**: The `matrix-js-sdk` is no longer included in this SDK. This means:
- The `ClientFactory` component has been removed.
- The `ContentRepo` utility is now deprecated, and supports only `getHttpUriForMxc`
- You can no longer get a js-sdk MatrixClient instance from an Intent object. ([\#401](https://github.com/matrix-org/matrix-appservice-bridge/issues/401))
- The bridge now always authenticates requests made to `/_matrix/app/v1/thirdparty/...`. The `Bridge` options flag `authenticateThirdpartyEndpoints` has been removed. ([\#409](https://github.com/matrix-org/matrix-appservice-bridge/issues/409))
- Drop support for Node 14. Support Node 16+.
`Intent.uploadContent` no longer accepts a `ReadStream` `content` parameter. Convert your stream to a buffer before beginning an upload. ([\#415](https://github.com/matrix-org/matrix-appservice-bridge/issues/415))


Internal Changes
----------------

- Improve error messasge raised when `m.login.application_service` is not provided by the homeserver. ([\#399](https://github.com/matrix-org/matrix-appservice-bridge/issues/399))
- Update matrix-appservice to 1.0.0. ([\#423](https://github.com/matrix-org/matrix-appservice-bridge/issues/423))


4.0.2 (2022-07-15)
==================

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This library sits on top of the
and provides an API for setting up bridges quickly. Check out the
[HOW-TO](HOWTO.md) for a step-by-step tutorial on setting up a new bridge.

`matrix-appservice-bridge` requires Node JS 14.x or greater.
`matrix-appservice-bridge` requires Node JS 16.x or greater.

If you are looking to contribute to this library, please check out our [CONTRIBUTING](./CONTRIBUTING.md) guide.

Expand Down
1 change: 0 additions & 1 deletion changelog.d/399.misc

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/401.removal

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/409.removal

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/415.removal

This file was deleted.

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

This file was deleted.

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

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-appservice-bridge",
"version": "4.0.2",
"version": "5.0.0",
"description": "Bridging infrastructure for Matrix Application Services",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down

0 comments on commit 610d09e

Please sign in to comment.