Skip to content

Commit f9fc8c1

Browse files
committed
3.1.0
1 parent 3cb1520 commit f9fc8c1

File tree

7 files changed

+33
-20
lines changed

7 files changed

+33
-20
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
3.1.0 (2021-09-28)
2+
===================
3+
4+
Features
5+
--------
6+
7+
- Add optional UserActivityTracker for tracking & reporting monthly active users, and BridgeBlocker allowing for locking down the bridge communications (intended to be used together) ([\#350](https://github.com/matrix-org/matrix-appservice-bridge/issues/350))
8+
- Add tracking of last active Matrix users (previously maintained in https://github.com/Half-Shot/matrix-lastactive) ([\#594](https://github.com/matrix-org/matrix-appservice-bridge/issues/594))
9+
10+
11+
Bugfixes
12+
--------
13+
14+
- Fix a bug that prevented bridges from calling `getPrometheusMetrics` without first calling `listen` in `Bridge`. ([\#355](https://github.com/matrix-org/matrix-appservice-bridge/issues/355))
15+
16+
17+
Internal Changes
18+
----------------
19+
20+
- The `StateLookup` class now takes an `intent` rather than using a deprecated `MatrixClient` instance. ([\#357](https://github.com/matrix-org/matrix-appservice-bridge/issues/357))
21+
22+
123
3.0.0 (2021-09-09)
224
===================
325

changelog.d/350.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/355.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/357.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/594.feature

Lines changed: 0 additions & 1 deletion
This file was deleted.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-appservice-bridge",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"description": "Bridging infrastructure for Matrix Application Services",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

yarn.lock

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -312,11 +312,6 @@
312312
"@types/connect" "*"
313313
"@types/node" "*"
314314

315-
"@types/chai@^4.2.21":
316-
version "4.2.21"
317-
resolved "https://registry.yarnpkg.com/@types/chai/-/chai-4.2.21.tgz#9f35a5643129df132cf3b5c1ec64046ea1af0650"
318-
integrity sha512-yd+9qKmJxm496BOV9CMNaey8TWsikaZOwMRwPHQIjcOJM9oV+fi9ZMNw3JsVnbEEbo2gRTDnGEBv8pjyn67hNg==
319-
320315
"@types/connect@*":
321316
version "3.4.34"
322317
resolved "https://registry.yarnpkg.com/@types/connect/-/connect-3.4.34.tgz#170a40223a6d666006d93ca128af2beb1d9b1901"
@@ -605,11 +600,6 @@ archy@^1.0.0:
605600
resolved "https://registry.yarnpkg.com/archy/-/archy-1.0.0.tgz#f9c8c13757cc1dd7bc379ac77b2c62a5c2868c40"
606601
integrity sha1-+cjBN1fMHde8N5rHeyxipcKGjEA=
607602

608-
arg@^4.1.0:
609-
version "4.1.3"
610-
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
611-
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
612-
613603
are-we-there-yet@~1.1.2:
614604
version "1.1.7"
615605
resolved "https://registry.yarnpkg.com/are-we-there-yet/-/are-we-there-yet-1.1.7.tgz#b15474a932adab4ff8a50d9adfa7e4e926f21146"
@@ -618,6 +608,11 @@ are-we-there-yet@~1.1.2:
618608
delegates "^1.0.0"
619609
readable-stream "^2.0.6"
620610

611+
arg@^4.1.0:
612+
version "4.1.3"
613+
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089"
614+
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==
615+
621616
argparse@^1.0.7:
622617
version "1.0.10"
623618
resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911"
@@ -1119,16 +1114,16 @@ destroy@~1.0.4:
11191114
resolved "https://registry.yarnpkg.com/destroy/-/destroy-1.0.4.tgz#978857442c44749e4206613e37946205826abd80"
11201115
integrity sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=
11211116

1122-
diff@^4.0.1:
1123-
version "4.0.2"
1124-
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
1125-
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
1126-
11271117
detect-libc@^1.0.3:
11281118
version "1.0.3"
11291119
resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b"
11301120
integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups=
11311121

1122+
diff@^4.0.1:
1123+
version "4.0.2"
1124+
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d"
1125+
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==
1126+
11321127
dir-glob@^3.0.1:
11331128
version "3.0.1"
11341129
resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f"

0 commit comments

Comments
 (0)