Skip to content

Commit 99c72b2

Browse files
committed
release: v1.1.5 with dead entries handling & preventions
1 parent cc5d047 commit 99c72b2

File tree

3 files changed

+26
-2
lines changed

3 files changed

+26
-2
lines changed

CHANGELOG.md

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

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

5+
## [1.1.5] - 2025-08-29
6+
7+
### Fixed
8+
- **Handle & prevent dead entries:** Prevent unintentional KEK rotations. When `AEADBadTagException` occurs, SafeBox safely purges unreadable values. ([#72](https://github.com/harrytmthy/safebox/issues/72))
9+
10+
### Deprecated
11+
- **AAD-taking factory:** AAD is now ignored and planned for removal in **v1.3**. ([#72](https://github.com/harrytmthy/safebox/issues/72))
12+
513
## [1.1.4] - 2025-08-27
614

715
### 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.1.4")
56+
implementation("io.github.harrytmthy:safebox:1.1.5")
5757
}
5858
```
5959

safebox/build.gradle.kts

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
* Copyright 2025 Harry Timothy Tumalewa
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
117
/*
218
* Copyright 2025 Harry Timothy Tumalewa
319
*
@@ -23,7 +39,7 @@ plugins {
2339
}
2440

2541
group = "io.github.harrytmthy"
26-
version = "1.1.4"
42+
version = "1.1.5"
2743

2844
android {
2945
namespace = "com.harrytmthy.safebox"

0 commit comments

Comments
 (0)