Skip to content

Commit

Permalink
7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Half-Shot committed Nov 24, 2022
1 parent f2f2917 commit 9cd1b5a
Show file tree
Hide file tree
Showing 10 changed files with 42 additions and 14 deletions.
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,37 @@
7.0.0 (2022-11-24)
==================

Features
--------

- Enable allow-listing of specific IP ranges for OpenAPI requests (when using the Provisioner API) without having to edit disallowedIpRanges. This is done via the new `allowedIpRanges` flag. ([\#443](https://github.com/matrix-org/matrix-appservice-bridge/issues/443))


Bugfixes
--------

- Cleanup any outstanding Timer handles after running `Bridge.close`, which may prevent the process from closing. ([\#439](https://github.com/matrix-org/matrix-appservice-bridge/issues/439))
- Add implementation of a PostgreSQL datastore for use by other bridges. ([\#442](https://github.com/matrix-org/matrix-appservice-bridge/issues/442))


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

- How-To guide: Remove advise to install matrix-appservice and other small improvements. ([\#432](https://github.com/matrix-org/matrix-appservice-bridge/issues/432))


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

- Fix typo'd function name `Bridge.initalise` -> `Bridge.initialise`. ([\#440](https://github.com/matrix-org/matrix-appservice-bridge/issues/440))


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

- Use MatrixError and enforce type-checking on error values. ([\#441](https://github.com/matrix-org/matrix-appservice-bridge/issues/441))


6.0.0 (2022-09-23)
==================

Expand Down
1 change: 0 additions & 1 deletion changelog.d/432.doc

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

This file was deleted.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "matrix-appservice-bridge",
"version": "6.0.0",
"version": "7.0.0",
"description": "Bridging infrastructure for Matrix Application Services",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand All @@ -21,7 +21,7 @@
"matrix-org"
],
"engines": {
"node": ">=16 <=18"
"node": ">=16"
},
"author": "Matrix.org",
"license": "Apache-2.0",
Expand Down Expand Up @@ -59,7 +59,7 @@
"@types/jasmine": "^4.0.3",
"@types/js-yaml": "^4.0.0",
"@types/nedb": "^1.8.11",
"@types/node": "^14",
"@types/node": "^16",
"@types/nopt": "^3.0.29",
"@types/uuid": "^8.3.1",
"@typescript-eslint/eslint-plugin": "^5.25.0",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": "@tsconfig/node14/tsconfig.json",
"extends": "@tsconfig/node16/tsconfig.json",
"compilerOptions": {
"incremental": true,
"allowJs": true,
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -444,10 +444,10 @@
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.0.4.tgz#48aedbf35efb3af1248e4cd4d792c730290cd5d6"
integrity sha512-M0+G6V0Y4YV8cqzHssZpaNCqvYwlCiulmm0PwpNLF55r/+cT8Ol42CHRU1SEaYFH2rTwiiE1aYg/2g2rrtGdPA==

"@types/node@^14":
version "14.18.22"
resolved "https://registry.yarnpkg.com/@types/node/-/node-14.18.22.tgz#fd2a15dca290fc9ad565b672fde746191cd0c6e6"
integrity sha512-qzaYbXVzin6EPjghf/hTdIbnVW1ErMx8rPzwRNJhlbyJhu2SyqlvjGOY/tbUt6VFyzg56lROcOeSQRInpt63Yw==
"@types/node@^16":
version "16.18.3"
resolved "https://registry.yarnpkg.com/@types/node/-/node-16.18.3.tgz#d7f7ba828ad9e540270f01ce00d391c54e6e0abc"
integrity sha512-jh6m0QUhIRcZpNv7Z/rpN+ZWXOicUUQbSoWks7Htkbb9IjFQj4kzcX/xFCkjstCj5flMsN8FiSvt+q+Tcs4Llg==

"@types/nopt@^3.0.29":
version "3.0.29"
Expand Down

0 comments on commit 9cd1b5a

Please sign in to comment.