Skip to content

Commit a7a689d

Browse files
committed
chore(release): v0.33.0
The changelog was generated by Claude by examining the previous two commits.
1 parent cbb6404 commit a7a689d

3 files changed

Lines changed: 15 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
*When editing this file, please respect a line length of 100.*
99

10+
## [0.33.0] - 2025-08-12
11+
12+
### Fixed
13+
- Streaming decryption: resolved issue where `streaming_decrypt_from_storage` resulted in
14+
repeated content due to file append behavior.
15+
- Streaming decryption: corrected streaming behavior to properly process chunks in ordered
16+
batches for memory-efficient decryption.
17+
18+
### Changed
19+
- Parallel chunk retrieval function signature: `streaming_decrypt_from_storage` now expects
20+
chunk retrieval functions to accept and return index-hash tuples `(usize, XorName)` instead
21+
of just hashes, enabling proper ordering during batch processing [BREAKING].
22+
1023
## [0.32.0] - 2025-08-05
1124

1225
### Added

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "GPL-3.0-only"
1111
name = "self_encryption"
1212
readme = "README.md"
1313
repository = "https://github.com/maidsafe/self_encryption"
14-
version = "0.32.0"
14+
version = "0.33.0"
1515

1616
[features]
1717
default = []

nodejs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ crate-type = ["cdylib"]
1212
hex = "0.4.3"
1313
napi = { version = "2.12.2", default-features = false, features = ["napi4", "napi6", "tokio_rt", "serde-json"] }
1414
napi-derive = "2.12.2"
15-
self_encryption = { version = "0.32.0", path = ".." }
15+
self_encryption = { version = "0.33.0", path = ".." }
1616

1717
[build-dependencies]
1818
napi-build = "2.0.1"

0 commit comments

Comments
 (0)