matrix-js-sdk 19.7.0 → 20.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/dist/browser-matrix.js +3 -2
- package/dist/browser-matrix.js.map +2 -2
- package/dist/browser-matrix.min.js +1 -1
- package/dist/browser-matrix.min.js.map +1 -1
- package/git-revision.txt +1 -1
- package/lib/crypto/store/indexeddb-crypto-store-backend.d.ts +1 -1
- package/lib/crypto/store/indexeddb-crypto-store-backend.d.ts.map +1 -1
- package/lib/crypto/store/indexeddb-crypto-store-backend.js +2 -1
- package/package.json +1 -1
- package/src/crypto/store/indexeddb-crypto-store-backend.ts +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
Changes in [20.0.1](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v20.0.1) (2022-09-28)
|
|
2
|
+
==================================================================================================
|
|
3
|
+
|
|
4
|
+
## 🐛 Bug Fixes
|
|
5
|
+
* Fix missing return when receiving an invitation without shared history ([\#2710](https://github.com/matrix-org/matrix-js-sdk/pull/2710)).
|
|
6
|
+
|
|
7
|
+
Changes in [20.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v20.0.0) (2022-09-28)
|
|
8
|
+
==================================================================================================
|
|
9
|
+
|
|
10
|
+
## 🚨 BREAKING CHANGES
|
|
11
|
+
* Bump IDB crypto store version ([\#2705](https://github.com/matrix-org/matrix-js-sdk/pull/2705)).
|
|
12
|
+
|
|
1
13
|
Changes in [19.7.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.7.0) (2022-09-28)
|
|
2
14
|
==================================================================================================
|
|
3
15
|
|
package/dist/browser-matrix.js
CHANGED
|
@@ -11960,7 +11960,7 @@ module.exports={
|
|
|
11960
11960
|
"𝝛": "Z",
|
|
11961
11961
|
"𝞕": "Z",
|
|
11962
11962
|
"Ꮓ": "Z",
|
|
11963
|
-
"
|
|
11963
|
+
"��": "Z",
|
|
11964
11964
|
"𑢩": "Z",
|
|
11965
11965
|
"ʐ": "z̨",
|
|
11966
11966
|
"ƶ": "z̵",
|
|
@@ -35859,7 +35859,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
35859
35859
|
exports.upgradeDatabase = exports.Backend = exports.VERSION = void 0;
|
|
35860
35860
|
const logger_1 = require("../../logger");
|
|
35861
35861
|
const utils = __importStar(require("../../utils"));
|
|
35862
|
-
exports.VERSION =
|
|
35862
|
+
exports.VERSION = 11;
|
|
35863
35863
|
const PROFILE_TRANSACTIONS = false;
|
|
35864
35864
|
/**
|
|
35865
35865
|
* Implementation of a CryptoStore which is backed by an existing
|
|
@@ -36602,6 +36602,7 @@ class Backend {
|
|
|
36602
36602
|
const cursor = cursorReq.result;
|
|
36603
36603
|
if (!cursor) {
|
|
36604
36604
|
resolve([]);
|
|
36605
|
+
return;
|
|
36605
36606
|
}
|
|
36606
36607
|
const data = cursor.value;
|
|
36607
36608
|
cursor.delete();
|