Skip to content

Commit 50dd8cd

Browse files
authored
release: v1.2.0-rc01 with faster engine writes and updated benchmarks (#95)
1 parent a3afd84 commit 50dd8cd

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

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

5+
## [1.2.0-rc01] - 2025-08-31
6+
7+
### Fixed
8+
- **Prevent AEADBadTagException under concurrency:** ChaCha20-Poly1305 operations now use a **process-wide mutex** (instead of per-instance locking), eliminating MAC failures and dead entries during mixed read/write workloads. ([#90](https://github.com/harrytmthy/safebox/issues/90))
9+
10+
### Performance
11+
- **Faster write paths:** Shrinks critical update sections and reduces lock contention on bursty `apply()`/`commit()` sequences, improving end-to-end write latency. ([#92](https://github.com/harrytmthy/safebox/issues/92))
12+
13+
### Docs
14+
- **Benchmarks & KDoc refresh:** Updated v1.2.0 benchmark charts & tables in README, and updated KDocs. ([#89](https://github.com/harrytmthy/safebox/issues/89))
15+
516
## [1.2.0-beta01] - 2025-08-31
617

718
### Fixed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Compared to EncryptedSharedPreferences:
5353

5454
```kotlin
5555
dependencies {
56-
implementation("io.github.harrytmthy:safebox:1.2.0-beta01")
56+
implementation("io.github.harrytmthy:safebox:1.2.0-rc01")
5757
}
5858
```
5959

safebox/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ plugins {
2323
}
2424

2525
group = "io.github.harrytmthy"
26-
version = "1.2.0-beta01"
26+
version = "1.2.0-rc01"
2727

2828
android {
2929
namespace = "com.harrytmthy.safebox"

0 commit comments

Comments
 (0)