Skip to content

Commit

Permalink
chore: Update the changelog, bump our deps, and finally our own version
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed May 3, 2024
1 parent 2722fb9 commit 3b1ac68
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 9 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

All notable changes to this project will be documented in this file.

## [0.6.0] - 2024-05-03

### Security Fixes

- Re-enable zeroization in the Dalek crates ([#130](https://github.com/matrix-org/vodozemac/pull/130)) (Low, [CVE-2024-34063](https://www.cve.org/CVERecord?id=CVE-2024-34063), [GHSA-c3hm-hxwf-g5c6](https://github.com/matrix-org/vodozemac/security/advisories/GHSA-c3hm-hxwf-g5c6))


### Features

- Track the number of Diffie-Hellman ratchet advances in the Olm Session.
This number is useful only for debugging purposes and will be included in the
Debug output of the Olm `Session` ([#134](https://github.com/matrix-org/vodozemac/pull/134)).

### Testing

- Add mutation tests ([#136](https://github.com/matrix-org/vodozemac/pull/136)) ([#138](https://github.com/matrix-org/vodozemac/pull/138)) ([#140](https://github.com/matrix-org/vodozemac/pull/140)) ([#139](https://github.com/matrix-org/vodozemac/pull/139)) ([#144](https://github.com/matrix-org/vodozemac/pull/144)) ([#143](https://github.com/matrix-org/vodozemac/pull/143)),
special thanks to [Johannes Marbach](https://github.com/Johennes) for that.
- Enable mutation tests on CI ([#147](https://github.com/matrix-org/vodozemac/pull/147)).

## [0.5.1] - 2024-02-05

### Features
Expand Down
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ authors = [
name = "vodozemac"
description = "A Rust implementation of Olm and Megolm"
repository = "https://github.com/matrix-org/vodozemac"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
keywords = ["matrix", "chat", "messaging", "olm"]
keywords = ["matrix", "chat", "messaging", "olm", "end-to-end-encryption"]
license = "Apache-2.0"
rust-version = "1.65"

Expand All @@ -28,28 +28,28 @@ low-level-api = []
[dependencies]
aes = "0.8.4"
arrayvec = { version = "0.7.4", features = ["serde"] }
base64 = "0.22.0"
base64 = "0.22.1"
cbc = { version = "0.1.2", features = ["std"] }
curve25519-dalek = { version = "4.1.2", default-features = false, features = ["zeroize"] }
ed25519-dalek = { version = "2.1.1", default-features = false, features = ["rand_core", "std", "serde", "hazmat", "zeroize"] }
getrandom = "0.2.12"
getrandom = "0.2.14"
hkdf = "0.12.4"
hmac = "0.12.1"
matrix-pickle = { version = "0.2.0" }
pkcs7 = "0.4.1"
prost = "0.12.3"
prost = "0.12.4"
rand = "0.8.5"
serde = { version = "1.0.197", features = ["derive"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_bytes = "0.11.14"
serde_json = "1.0.114"
serde_json = "1.0.116"
sha2 = "0.10.8"
subtle = "2.5.0"
thiserror = "1.0.58"
thiserror = "1.0.59"
x25519-dalek = { version = "2.0.1", features = ["serde", "reusable_secrets", "static_secrets", "zeroize"] }
zeroize = "1.7.0"

[dev-dependencies]
anyhow = "1.0.81"
anyhow = "1.0.82"
assert_matches = "1.5.0"
olm-rs = "2.2.0"
proptest = "1.4.0"
Expand Down

0 comments on commit 3b1ac68

Please sign in to comment.