You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Releases.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,17 @@
1
1
# Release notes for the Secret Toolkit
2
2
3
+
## v0.5.0
4
+
This release includes some minor fixed to the storage package which required some breaking changes.
5
+
We are releasing these breaking changes because we reached the conclusion that the current interfaces
6
+
are prone to bugs, or inefficient. Unless you are using these specific interfaces, you should be able to upgrade from 0.4 without issues.
7
+
8
+
### Breaking
9
+
- Removed the implementations of Clone for storage types which are not useful and may cause data corruption if used incorrectly.
10
+
- Changed `Keymap::insert` to take the item by reference rather than by value. This should reduce the cost of calling that function by avoiding cloning.
11
+
12
+
### Features
13
+
- Changed the implementation of the `add_prefix` methods in the storage package to use length prefixing, which should help avoid namespace collisions.
0 commit comments