From 773c28319acaa40940aad6a06c556decb4d38389 Mon Sep 17 00:00:00 2001 From: Half-Shot Date: Wed, 30 Nov 2022 10:51:16 +0000 Subject: [PATCH] 8.0.0 --- CHANGELOG.md | 17 +++++++++++++++++ changelog.d/448.feature | 1 - changelog.d/451.bugfix | 1 - package.json | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) delete mode 100644 changelog.d/448.feature delete mode 100644 changelog.d/451.bugfix diff --git a/CHANGELOG.md b/CHANGELOG.md index ea77c33c..1e5a4c01 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +8.0.0 (2022-11-30) +================== + +**Note**: The API for `UserActivityTracker` has changed. Please see [\#448](https://github.com/matrix-org/matrix-appservice-bridge/issues/448) for more details. + +Features +-------- + +- Add debouncing support to UserActivityTracker (defaults to 60 seconds). ([\#448](https://github.com/matrix-org/matrix-appservice-bridge/issues/448)) + + +Bugfixes +-------- + +- Fix postgres-store attempting to overwrite existing schema whenever `ensureSchema` is called. ([\#451](https://github.com/matrix-org/matrix-appservice-bridge/issues/451)) + + 7.0.0 (2022-11-24) ================== diff --git a/changelog.d/448.feature b/changelog.d/448.feature deleted file mode 100644 index 399a9035..00000000 --- a/changelog.d/448.feature +++ /dev/null @@ -1 +0,0 @@ -Add debouncing support to UserActivityTracker (defaults to 60 seconds). diff --git a/changelog.d/451.bugfix b/changelog.d/451.bugfix deleted file mode 100644 index 95d26563..00000000 --- a/changelog.d/451.bugfix +++ /dev/null @@ -1 +0,0 @@ -The postgres-store was attempting to overwrite existing schema everytime `ensureSchema` was called. diff --git a/package.json b/package.json index aee6a617..ba8f34d4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-appservice-bridge", - "version": "7.0.0", + "version": "8.0.0", "description": "Bridging infrastructure for Matrix Application Services", "main": "lib/index.js", "types": "lib/index.d.ts",