All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
- Added
init_raw
constructor for types generated by thestore!
macro. - Added
FilesystemClient::entry_metadata
syscall. - Added
FilesystemClient::rename
syscall. - Added
Syscall
implementation forService
. - Added
Syscall::try_into_new_client
service. - Added serializable flag to
StorageAttributes
for key agreement. - Added virtual platform in
virt
module. - Added methods for creating the client stores to
ServiceResources
. - Implemented
unsafe_inject_key
for Aes256Cbc, Ed255, X255, P256. - Added support for custom backends in
backend
module. - Added optional support for API extensions in
serde_extensions
module behind theserde-extensions
feature. - Added
types::Path
re-export oflittlefs2::path::Path
. - Reduced stack usage of
Service::process
.
- Set
config::MAX_SERVICE_CLIENTS
based on the clients-? feature. - Made
StorageAttributes
non-exhaustive. - Changed
KeyStore<P: Platform>
toKeyStore<S: Store>
. - Replaced the client ID with a
ClientContext
struct. - Always trigger syscall in
PollClient::request
and removePollClient::syscall
. - Upgrade the
interchange
dependency to version 0.3.0 (#99)- As a consequence the type
pipe::TrussedInterchange
becomes a constpipe::TRUSSED_INTERCHANGE
- As a consequence the type
- Updated
littlefs2
to 0.4.0. - Made
Request
,Reply
,Error
,Context
,CoreContext
,Mechanism
,ui::Status
non-exhaustive. - Made
postcard_deserialize
,postcard_serialize
andpostcard_serialize_bytes
private. - Changed
&PathBuf
to&Path
where possible. - Put
CounterClient
andCryptoClient::attest
behind feature flags (enabled by default). - Change store implementations to use littlefs2’s
DynFilesystem
trait instead of being generic over the storage implementation. - Add
nonce
argument towrap_key
andunwrap_key
syscalls. - Use nonce as IV for Aes256Cbc mechanism.
- Fixed off-by-one error in
RandomBytes
request. - Fixed a race condition when iterating over the filesystem in more than one client (#64).
- Fixed missing path validation in
Filestore
that allowed clients to escape their namespace (#65). - wrap_key: Don't replace associated data with an empty array
0.1.0 - 2022-01-26
Initial release.