Skip to content

Commit c2f7795

Browse files
committed
Merge tag 'v20.0.0' into sc
* Bump IDB crypto store version ([\matrix-org#2705](matrix-org#2705)).
2 parents 35d290f + 9005267 commit c2f7795

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Changes in [20.0.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v20.0.0) (2022-09-28)
2+
==================================================================================================
3+
4+
## 🚨 BREAKING CHANGES
5+
* Bump IDB crypto store version ([\#2705](https://github.com/matrix-org/matrix-js-sdk/pull/2705)).
6+
17
Changes in [19.7.0](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v19.7.0) (2022-09-28)
28
==================================================================================================
39

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "matrix-js-sdk",
3-
"version": "19.7.0",
3+
"version": "20.0.0",
44
"description": "Matrix Client-Server SDK for Javascript",
55
"engines": {
66
"node": ">=12.9.0"

spec/unit/crypto/secrets.spec.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,6 @@ describe("Secrets", function() {
251251

252252
osborne2.client.crypto.deviceList.storeDevicesForUser("@alice:example.com", {
253253
"VAX": {
254-
verified: 0,
255254
known: false,
256255
algorithms: [olmlib.OLM_ALGORITHM, olmlib.MEGOLM_ALGORITHM],
257256
keys: {

spec/unit/crypto/verification/sas.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ describe("SAS verification", function() {
573573
null,
574574
null,
575575
{ "ed25519:Dynabook": "bob+base64+ed25519+key" },
576-
);
576+
);
577577
expect(bob.client.crypto.setDeviceVerification)
578578
.toHaveBeenCalledWith(
579579
alice.client.getUserId(),
@@ -582,7 +582,7 @@ describe("SAS verification", function() {
582582
null,
583583
null,
584584
{ "ed25519:Osborne2": "alice+base64+ed25519+key" },
585-
);
585+
);
586586
});
587587
});
588588
});

spec/unit/models/beacon.spec.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17+
import { REFERENCE_RELATION } from "matrix-events-sdk";
18+
1719
import { MatrixEvent } from "../../../src";
1820
import { M_BEACON_INFO } from "../../../src/@types/beacon";
1921
import {
@@ -22,7 +24,6 @@ import {
2224
BeaconEvent,
2325
} from "../../../src/models/beacon";
2426
import { makeBeaconEvent, makeBeaconInfoEvent } from "../../test-utils/beacon";
25-
import { REFERENCE_RELATION } from "matrix-events-sdk";
2627

2728
jest.useFakeTimers();
2829

src/crypto/store/indexeddb-crypto-store-backend.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ import { IRoomEncryption } from "../RoomList";
3434
import { InboundGroupSessionData } from "../OlmDevice";
3535
import { IEncryptedPayload } from "../aes";
3636

37-
export const VERSION = 10;
37+
export const VERSION = 11;
3838
const PROFILE_TRANSACTIONS = false;
3939

4040
/**

0 commit comments

Comments
 (0)