File tree Expand file tree Collapse file tree 3 files changed +26
-2
lines changed
Expand file tree Collapse file tree 3 files changed +26
-2
lines changed Original file line number Diff line number Diff line change 22
33All 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
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ Compared to EncryptedSharedPreferences:
5353
5454``` kotlin
5555dependencies {
56- implementation(" io.github.harrytmthy:safebox:1.1.4 " )
56+ implementation(" io.github.harrytmthy:safebox:1.1.5 " )
5757}
5858```
5959
Original file line number Diff line number Diff line change 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
2541group = " io.github.harrytmthy"
26- version = " 1.1.4 "
42+ version = " 1.1.5 "
2743
2844android {
2945 namespace = " com.harrytmthy.safebox"
You can’t perform that action at this time.
0 commit comments