Releases: mirage/mirage-kv
Releases · mirage/mirage-kv
6.1.1
CHANGES:
- Leave it up to implementations how to interpret
last_modifiedfor
dictionaries, or even not implement it (then returningError (`Value_expected _). The previous definition was not well founded when the
dictionary doesn't contain any values directly, and some implementations
implementslast_modifieddifferently from the description on dictionaries.
(reported in #41, fixed in #42 by @reynir) - Leave it up to implemetations how to interpret
digestfor dictionaries,
or even not implement it (returningError (`Value_expected _).
(reported mirage/ocaml-tar#111, fixed in #43 by @reynir)
6.1.0
6.0.1
6.0.0
CHANGES:
- Use ptime directly for RO.last_modified, instead of the int * int64 pair
(#34) - Add RW.allocate to allocate a key and fill it with zero bytes (#34)
- RO.list: return Key.t instead of string (#37, fixes #33)
- Introduce a custom error for RW.rename with a source which is a prefix of
destination (#37, fixes #31) - Use Optint.Int63.t for RO.size, RO.get_partial, RO.set_partial (#37, fixes #32)
- Remove RW.batch (#37, fixes #29 #36, discussed at the MirageOS meeting in
November, and on the mirageos-devel mailing list in January 2022) - Key.pp: escape the entire string, not individual fragments (#35)
5.0.0
4.0.1
4.0.0
v3.0.1
CHANGES:
v3.0.0 (2019-10-22)
- remove mirage-kv-lwt (#19 @hannesm)
- specialise mirage-kv on Lwt.t and value being string (#19 @hannesm)
- raise lower OCaml bound to 4.06.0 (#19 @hannesm)
v2.0.0 (2019-02-24)
- Major revision of the
ROsignature:
- values are of type
string - keys are segments instead of a string
readis now namedget, and does no longer take an offset and length- the new function
listis provided - the new functions
last_modifiedanddigestare provided
- A module
Keyis provided with convenience functions to build keys - An
RWsignature is provided, extendingROwith
- a function
setto replace a value - a function
removeto remove a key batchto batch operations
v1.1.1 (2017-06-29)
- Remove
open Resultstatements (and drop support to 4.02)
v1.1.0 (2017-05-26)
- Port to Jbuilder.
v1.0.0 (2016-12-27)
- First release, import
V1.KV_ROandV1_LWT.KV_ROfrom mirage-types.
v3.0.0
v2.0.0
CHANGES:
- Major revision of the
ROsignature:
- values are of type
string - keys are segments instead of a string
readis now namedget, and does no longer take an offset and length- the new function
listis provided - the new functions
last_modifiedanddigestare provided
- A module
Keyis provided with convenience functions to build keys - An
RWsignature is provided, extendingROwith
- a function
setto replace a value - a function
removeto remove a key batchto batch operations