diff --git a/CHANGELOG.md b/CHANGELOG.md index 4afc35da8..cc0ab61ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +Changes in [2.4.5](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v2.4.5) (2019-11-27) +================================================================================================ +[Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v2.4.4...v2.4.5) + +* Relax identity server discovery checks to FAIL_PROMPT +* Expand E2EE debug logging to diagnose "unable to decrypt" errors + Changes in [2.4.4](https://github.com/matrix-org/matrix-js-sdk/releases/tag/v2.4.4) (2019-11-25) ================================================================================================ [Full Changelog](https://github.com/matrix-org/matrix-js-sdk/compare/v2.4.4-rc.1...v2.4.4) diff --git a/package.json b/package.json index 09b45595d..a3959f3d7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "matrix-js-sdk", - "version": "2.4.4", + "version": "2.4.5", "description": "Matrix Client-Server SDK for Javascript", "main": "index.js", "scripts": { diff --git a/src/crypto/index.js b/src/crypto/index.js index 5eeeb6145..d749d1d3f 100644 --- a/src/crypto/index.js +++ b/src/crypto/index.js @@ -2294,7 +2294,8 @@ Crypto.prototype._getTrackedE2eRooms = function() { Crypto.prototype._onToDeviceEvent = function(event) { try { - logger.log(`received to_device ${event.getType()} from: ${event.getSender()}`); + logger.log(`received to_device ${event.getType()} from: ` + + `${event.getSender()} id: ${event.getId()}`); if (event.getType() == "m.room_key" || event.getType() == "m.forwarded_room_key") {