Skip to content

Commit 25d4378

Browse files
authored
release: v1.3.0-alpha02 with segmented storage growth and recovery path (#145)
1 parent 0c6fa3b commit 25d4378

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

CHANGELOG.md

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

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

5+
## [1.3.0-alpha02] - 2025-10-04
6+
7+
### Added
8+
- **Segmented blob store growth:** Removes the 1 MiB ceiling by mapping multiple fixed-size pages and reusing freed space via compaction. ([#133](https://github.com/harrytmthy/safebox/issues/133))
9+
- **SafeBoxRecoveryBlobStore:** An append-only recovery file fallback used when a page cannot be allocated. Entries are replayed back into the main store with exponential backoff. ([#134](https://github.com/harrytmthy/safebox/issues/134))
10+
- **Kotlin BCV and API compatibility guard:** The binary validator is implemented at pipeline & pre-push check to prevent accidental public API breaks. ([#131](https://github.com/harrytmthy/safebox/issues/131))
11+
12+
### Deprecated
13+
- **SafeBoxState and SafeBoxStateListener:** Removal planned in v1.4. ([#125](https://github.com/harrytmthy/safebox/issues/125))
14+
515
## [1.3.0-alpha01] - 2025-09-08
616

717
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,10 +53,10 @@ Compared to EncryptedSharedPreferences:
5353

5454
```kotlin
5555
dependencies {
56-
implementation("io.github.harrytmthy:safebox:1.3.0-alpha01")
56+
implementation("io.github.harrytmthy:safebox:1.3.0-alpha02")
5757

5858
// Optional: standalone crypto helper
59-
implementation("io.github.harrytmthy:safebox-crypto:1.3.0-alpha01")
59+
implementation("io.github.harrytmthy:safebox-crypto:1.3.0-alpha02")
6060
}
6161
```
6262

build-logic/convention/src/main/java/PublishingConventionPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class PublishingConventionPlugin : Plugin<Project> {
2525
override fun apply(target: Project) {
2626
with(target) {
2727
group = "io.github.harrytmthy"
28-
version = "1.3.0-alpha01"
28+
version = "1.3.0-alpha02"
2929

3030
pluginManager.apply("org.jetbrains.dokka")
3131
pluginManager.apply("com.vanniktech.maven.publish")

0 commit comments

Comments
 (0)