omemo_dart/CHANGELOG.md

67 lines
2.4 KiB
Markdown
Raw Normal View History

2022-08-09 14:02:20 +00:00
## 0.1.0
2022-06-30 12:00:18 +00:00
2022-08-09 14:02:20 +00:00
- Initial version
- Implement the Double Ratchet, X3DH and OMEMO specific bits
- Add a Blind-Trust-Before-Verification TrustManager
- Supported OMEMO version: 0.8.3
2022-08-11 10:06:02 +00:00
## 0.1.3
- Fix bug with the Double Ratchet causing only the initial message to be decryptable
- Expose `getDeviceMap` as a developer usable function
2022-08-18 13:33:49 +00:00
## 0.2.0
- Add convenience functions `getDeviceId` and `getDeviceBundle`
- Creating a new ratchet with an id for which we already have a ratchet will now overwrite the old ratchet
- Ratchet now carry an "acknowledged" attribute
2022-08-19 15:00:44 +00:00
## 0.2.1
- Add `isRatchetAcknowledged`
- Ratchets that are created due to accepting a kex are now unacknowledged
2022-09-15 11:51:18 +00:00
## 0.3.0
- Implement enabling and disabling ratchets via the TrustManager interface
- Fix deserialization of the various objects
- Remove the BTBV TrustManager's loadState method. Just use the constructor
- Allow removing all ratchets for a given Jid
- If an error occurs while decrypting the message, the ratchet will now be reset to its prior state
- Fix a bug within the Varint encoding function. This should fix some occasional UnknownSignedPrekeyExceptions
- Remove OmemoSessionManager's toJson and fromJson. Use toJsonWithoutSessions and fromJsonWithoutSessions. Restoring sessions is not out-of-scope for that function
2022-09-29 13:20:25 +00:00
## 0.3.1
- Fix a bug that caused the device's id to change when replacing a OPK
- Every decryption failure now causes the ratchet to be restored to a pre-decryption state
- Add method to get the device's fingerprint
2022-12-25 21:20:53 +00:00
2022-12-26 12:27:54 +00:00
## 0.4.0
2022-12-25 21:20:53 +00:00
2022-12-26 12:27:54 +00:00
- Deprecate `OmemoSessionManager`. Use `OmemoManager` instead.
- Implement queued access to the ratchets inside the `OmemoManager`.
- Implement heartbeat messages.
2023-01-01 15:55:15 +00:00
- [BREAKING] Rename `Device` to `OmemoDevice`.
2023-01-02 12:57:15 +00:00
## 0.4.1
- Fix fetching the current device and building a ratchet session with it when encrypting for our own JID
2023-01-07 21:16:15 +00:00
## 0.4.2
- Fix removeAllRatchets not removing, well, all ratchets. In fact, it did not remove any ratchet.
2023-01-22 18:13:56 +00:00
## 0.4.3
- Fix bug that causes ratchets to be unable to decrypt anything after receiving a heartbeat with a completely new session
## 0.5.0
This version is a complete rework of omemo_dart!
- Removed events from `OmemoManager`
- Removed `OmemoSessionManager`
- Removed serialization/deserialization code
- Replace exceptions with errors inside a result type
- Ratchets and trust data is now loaded and cached on demand
- Accessing the trust manager must happen via `withTrustManager`